Skip to content

Added concept of Linear Unit, Layers, Stacking Dense Layers, an… #222

Added concept of Linear Unit, Layers, Stacking Dense Layers, an…

Added concept of Linear Unit, Layers, Stacking Dense Layers, an… #222

Workflow file for this run

name: Pytest
on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements.txt
- name: Run pytest
run: python3 -m pytest . -vvv