Skip to content

qhreul/neural-network-course

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Training Neural Network in Python

Description

This codebase relates to the LinkedIn course on creatting Neural Networks in Python.

Development

How to prepare the environment

  • Create a new Python virtual environment
    python -m venv venv
    
  • Activete the Python virtual environment
    source venv/bin/activate
    
  • Install pip-tools library to generate dependencies
    pip install --upgrade pip-tools
    
  • Generate dependencies
    pip-compile --no-emit-index-url requirements/dev.in
    
  • Install dependencies
    pip install -r requirements/dev.txt