Search
If you are new to CTU, see the checklist for visiting students.
Important Links: Schedule | Forum | BRUTE
There is a discussion forum administered for this course that can be used to solicit help for the assignments. It is monitored by the lab assistants and it is the preferred form of communication for getting assistance for the assignments since all students can see the question and answer threads. If you find an error in the assignment or it is unclear/ambiguous, please write on the forum.
We also ask you to write remarks about lectures (typos, questions) to a separate thread
You will implement the labs in python. The assignment templates are prepared in python 3.7. The first lab will need python with standard packages (numpy, matplotlib).
For the case you are not too sure about your Python/NumPy skills, have a look here: http://cs231n.github.io/python-numpy-tutorial/.
We recommend using an IDE for python development. There is a professional PyCharm license available to the university https://download.cvut.cz. However, it could be somewhat slow (running on java and has many features).
We recommend Visual Studio Code. It is very easy to setup and convenient to work with. Follow these basic instructions and Wizards from within VS:
Here's some lines of code useful in Jupyter notebooks.
""" Resize the notbook to full width, to fit more code and images """ from IPython.core.display import display, HTML display(HTML("<style>.container { width:100% !important; }</style>")) """ some basic packages and settings to show images inline """ import numpy as np import importlib %matplotlib inline import matplotlib.pyplot as plt """ automatically reload included modules (need to run import command to trigger reloading) """ %load_ext autoreload %autoreload 2 """ Controls for figure sizes to change """ plt.rcParams['figure.dpi'] = 200 plt.rcParams['figure.figsize'] = [16, 8] plt.rcParams.update({'errorbar.capsize': 1})
If you need to debug an exception in Jupyter notebook, there is a %debug command that opens a console to see local variables and navigate call stack.
%debug
An easy way to try something with deep learning is Google Colab. Take a look at intro colab space. It has tensorflow and pytorch installed and you also get GPU acceleration. But it is harder to work with a bigger project with classes, debug, etc.
See student GPU servers at the department.
ml spider torch
ml torchvision/0.11.1-foss-2021a-CUDA-11.3.1
nvidia-smi
export CUDA_VISIBLE_DEVICES=3; python train.py --lr 0.001
http://cantor.felk.cvut.cz:8888
Selecting a free GPU on servers is possible from within python / jupyter notebook:
# Scripts provided by lecturers of VIR subject (see # https://cw.fel.cvut.cz/b191/courses/b3b33vir/start import os import numpy as np def get_free_gpu(): os.system('nvidia-smi -q -d Memory |grep -A4 GPU|grep Free >tmp') memory_available = [int(x.split()[2]) for x in open('tmp', 'r').readlines()] print(memory_available) index = np.argmax(memory_available[:-1]) # Skip the 7th card --- it is reserved for evaluation of CTU FEE subjects! return index # Returns index of the gpu with the most memory available if torch.cuda.is_available(): dev = torch.device(get_free_gpu()) else: dev = torch.device('cpu') print(dev)
To not have to type your password each time you login, you can configure authentication on the server used pre-shared keys. You can do so using ssh-keygen and ssh-add. This instruction for linux seems ok.
ssh-keygen
ssh-add
If you want to copy some data there and back to the server, it is convenient to mount your working directory on the server to your filesystem using sshfs. This tool works at first, but may be failing in certain cases, when you change network access point, sleep / wake computer, etc. I use the following settings:
sshfs
sshfs -o defer_permissions,reconnect,ServerAliveInterval=120,ServerAliveCountMax=3,follow_symlinks,compression=yes -o kernel_cache,entry_timeout=5,sync_read shekhovt@cantor.felk.cvut.cz:/~ ~/cantor
You can configure the system environment you get when login to the server (see Controlling Modules During Login ). For this, create on the server ~/.bash_profile standardly containing
~/.bash_profile
# .bash_profile if [ -f ~/.bashrc ]; then source ~/.bashrc fi
module restore
The command module restore there loads in the modules configuration previously saved with module save. This configuration should (theoretically) work even for non-interactive shell, such as when you configure Pycharm to run your code there.
module save
Pycharm Professional has a well-integrated support for remote development. You edit the code that is stored locally. When you need to run it, it is synchronized to a directory on the server (called deployment). You can run and even debug you code on the server from Pycharm.
See pycharm Configure an interpreter using SSH, See pycharm remote deployment, remote interpreter using SSH, remote debugging. Some other variants of configuring a remote interpreter are supported (e.g. remote Conda environment).
Everything may work and then you do not need to do anything. However, sometimes there happen to be path problems when you are trying to use virtual environment, load modules and at the same time do the remote development. Maybe this “trick” will help you…
module load torchvision/0.10.0-fosscuda-2020b-PyTorch-1.9.0
/mnt/appl/software/Python/3.8.6-GCCcore-10.2.0/bin/python3.8
virtualenv -p /mnt/appl/software/Python/3.8.6-GCCcore-10.2.0/bin/python3.8 my_virt_env_name
emacs my_virt_env_name/bin/python_ml
#!/bin/bash -l module load torchvision/0.10.0-fosscuda-2020b-PyTorch-1.9.0 /absolute_path/my_virt_env_name/bin/python "$@"