Skip to content
Snippets Groups Projects
README.md 1010 B
Newer Older
Jean-Luc Parouty's avatar
Jean-Luc Parouty committed
FIDLE - Formation Introduction au Deep Learning
===============================================
Jean-Luc Parouty's avatar
Jean-Luc Parouty committed
S. Arias, E. Maldonado, JL. Parouty - CNRS/SARI/DEVLOG - 2020  
EXT Soraya Arias's avatar
EXT Soraya Arias committed
## 0/ SSH et accès aux machines de calcul Gricad
Fichier config à créer sous $HOME/.ssh
```
ForwardAgent yes

Host *.ciment
User votre_login
ProxyCommand ssh -q votre_login@access-rr-ciment.imag.fr "nc -w 60 `basename %h .cime
nt` %p"
LocalForward 8888 f-dahu:numerodeport_particulier
```
Jean-Luc Parouty's avatar
Jean-Luc Parouty committed
To run this examples, you need an environment with the following packages :
 - Python 3.6
 - numpy
 - Tensorflow 2.0
 - scikit-image
 - scikit-learn
 - Matplotlib
 - seaborn
 - pyplot

You can install such a predefined environment :
```
conda env create -f environment.yml
```

Jean-Luc Parouty's avatar
Jean-Luc Parouty committed
To manage conda environment see [there](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#)  



## 4/ Misc
To update an existing environment :  
```
conda env update --name=deeplearning2 --file=environment.yml