Travaux dirigés de deep learning
Initiation à la syntaxe et aux bases de PyTorch.
Code pour Tensorflow disponible mais non corrigé en TD.
Apprentissage de chiffres manuscrits sur MNIST avec un MLP, un CNN et un (bi)LSTM
conda create --name cs_td2 python=3.8
conda activate cs_td2
conda install pytorch torchvision cudatoolkit=10.2 -c pytorch
conda install -c conda-forge matplotlib
ou
conda create --name cs_td python=3.9
conda activate cs_td
conda install pytorch torchvision cudatoolkit=11.3 -c pytorch
conda install -c conda-forge matplotlib
Transfert d'apprentissage entre ImageNet et un petit problème cible. Étude du réglage fin du réseau.
conda activate cs_td2
conda install -c anaconda scikit-learn
Modèle génératif (GAN) sur exemples jouet
conda activate cs_td2
conda install -c anaconda absl-py
conda activate cs_td2
# python -m pip install -U torch - tb - profiler
pip install -U torch -tb-profiler
conda install -c conda-forge --name cs_td2 tensorboard
conda update -c conda-forge --name cs_td2 tensorboard