Skip to content
/ SFU_ML Public
forked from RamyE/SFU_ML

SFU MSE ML Course Labs and Tools

License

Notifications You must be signed in to change notification settings

sibulus/SFU_ML

 
 

Repository files navigation

SFU MSE ML Course Labs and Tools

Labs

Raspberry Pi Communication GUI and Raspberry Pi Script

Notes

  • Pickle files that contain serialized scikit-learn (sklearn) models are not guaranteed to be compatible on different architectures, according to this. As the RPi used here has a 32-bit architecture, it is important that the sklearn models are trained and dumped to pickle files using a 32-bit python even if a 64-bit windows machine is used. To do that you can create a new conda environment for that using conda create -n ml_course_32 then activate it conda activate ml_course_32 then set the environment to accept 32 bit packages only using conda config --env --set subdir win-32 and then install python using conda install python=3.7 and then install the required packages for each lab as needed including conda install scikit-learn

About

SFU MSE ML Course Labs and Tools

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 99.1%
  • Python 0.9%