fms-ml / README.md
FMS Machine Learning
FMS Machine Learning
This repository will contain all FMS machine learning features and code.
Cloning
- Make sure you have created your GitHub SSH Key.
- In your Git Bash Shell, run
git clone <repo_url>.
Installing Packages
- Make sure you have
Poetryinstalled in your Anaconda Environment (runpip install PoetryinsideAnaconda Prompt). - Once installed, you can now install FMS ML dependencies by running
poetry install. - Once your dependencies are installed, access the project's virtual environment by running
poetry shell. - Run
jupyter notebook. - A new tab is going to open, allowing you to create new notebooks. Create a notebook with the
Python3kernel.
Adding Packages
- If you need to add a package that doesnt exist in your virtual environment, open a new
Anaconda Prompt. - Traverse to your project's directory.
- Run
poetry add <package_name>. Your.tomland.lockfiles will be modified as a result.