... | ... | @@ -83,61 +83,8 @@ pre-installed environments are already available ! |
|
|
**NOTE:** To avoid infos and warning messages from tensorflow, you can set an additional environment variable `TF_CPP_MIN_LOG_LEVEL` whose possible values are 0, 1, 2 or 3.\
|
|
|
(0: all msg, 1:hide infos, 2:hide infos+warnings, 3:hide info, warnings and errors)
|
|
|
|
|
|
## 4 - Start Jupyter lab :
|
|
|
|
|
|
Very simply, as follows.
|
|
|
|
|
|
1. Do not forget to [set the FIDLE_DATASET_DIR variable](#2-get-datasets)
|
|
|
2. **Activate** your fidle environment :\
|
|
|
Note : for Windows, use a Anaconda Prompt terminal to type these commands.
|
|
|
3. **Start** Jupyter lab
|
|
|
|
|
|
```plaintext
|
|
|
cd <PATH_TO_CLONED_FIDLE_REPO>
|
|
|
conda activate fidle
|
|
|
jupyter lab
|
|
|
```
|
|
|
|
|
|
## Annexe 1 - Manual installation
|
|
|
|
|
|
This solution can be adapted if the procedure described above does not work.\
|
|
|
This can be the case, for example under MacOS.
|
|
|
|
|
|
Required packages are :
|
|
|
|
|
|
* [Python](https://www.python.org) >= 3.8
|
|
|
* [Numpy](https://numpy.org) = 1.19
|
|
|
* [Tensorflow](https://www.tensorflow.org) >=2.4
|
|
|
* [Scikit-image](https://scikit-image.org)
|
|
|
* [Scikit-learn](https://scikit-learn.org)
|
|
|
* [Matplotlib](https://matplotlib.org)
|
|
|
* [Pandas](https://pandas.pydata.org/)
|
|
|
* [Jupyter lab](https://jupyter.org/)
|
|
|
|
|
|
With conda you can use :
|
|
|
|
|
|
#### I just have a CPU :
|
|
|
|
|
|
* If no NVIDIA card is available on your computer or [NVIDIA card is not compliant with driver cuda 10.x](https://docs.nvidia.com/deploy/cuda-compatibility/index.html)
|
|
|
|
|
|
```plaintext
|
|
|
conda create --name fidle
|
|
|
conda activate fidle
|
|
|
conda install tensorflow>=2.4 numpy=1.19 keras scikit-learn scikit-image
|
|
|
conda install matplotlib plotly pandas pandoc jupyterlab
|
|
|
```
|
|
|
|
|
|
### I have a nice GPU :
|
|
|
|
|
|
```shell
|
|
|
conda create --name fidle
|
|
|
conda activate fidle
|
|
|
conda install tensorflow-gpu>=2.4 numpy=1.19 keras scikit-learn scikit-image
|
|
|
conda install matplotlib plotly pandas pandoc jupyterlab
|
|
|
=> with miniconda 3.8 installed and using a Anaconda prompt terminal
|
|
|
```
|
|
|
|
|
|
**Note :** This manual procedure is indicative because it can vary according to the evolution of the versions of this or that package...
|
|
|
|
|
|
## Annexe 2 - Test installations
|
|
|
|
... | ... | |