diff --git a/Model/test.txt b/Model/test.txt deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/README.md b/README.md index 4683ba620955161a996aea40c18cd706c6386aac..526d563932539f526f48021bbbd6b42ad1c23ff3 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,46 @@ -## Getting started +## Environment +This uses the Miniconda environment. To prepare a personalized environment you will need to install the following: +``` +conda create --name "env name" python=3.9 -y +``` +``` +conda activate "env name" +``` +``` +conda install -c conda-forge cudatoolkit=11.2 cudnn=8.1.0 -y +``` +``` +pip install "tensorflow<2.11" +pip install jupyter notebook +pip install "keras" +conda install pillow +conda install scipy +``` +> Note the flag *-y* is optional to use + +<br> -To make it easy for you to get started with GitLab, here's a list of recommended next steps. +``` +jupyter notebook --notebook-dir='your working directory' +``` +> again --notebook-dir='your working directory' is optional if you have configured it beforehand. + +### Reopening the environment +After opening the anaconda prompt, you can follow these commands to navigate back to your environment. +#### List all created environments +``` +conda info --envs +``` + +#### Opening commands +``` +conda activate "env name" +jupyter notebook --notebook-dir='your working directory' +``` -Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)! ## Add your files