Skip to content

cloudui/pilotML

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pilot ML Projects

In the process of becoming more familiar with implementation of Deep Learning and Machine Learning projects. Things I'm trying:

  • TensorFlow
  • Keras
  • PyTorch
  • Scikit-Learn

Exporting Conda Environment

# Preferred
conda env export | grep -v "^prefix: " > environment.yml
# Alternative
conda list -e > req.txt

Setting up Conda Environment

Preferred method:

conda env create -f environment.yml
# Set custom path if you want
conda env create -f environment.yml -p $(path)

Alternative:

conda create -n <environment-name> --file requirements.txt

About

Testing out Deep Learning projects and frameworks

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published