- Learn Git: Link
- Git cheat sheet: from Prof.Francisco Martín Rico
- Download only the subdirectory of interest
(Source):
Open VSCode in browser by pressing
., then download the subdirectory from navigation panel.
- Connect to remote server: Link
- Open VSCODE in browser from GitHub: Press
. - Master VS Code's keyboard shortcuts in 13 minutes: Video
- Open Tensorboard:
- Run
tensorboard --bind_all --reload_multifile True --samples_per_plugin images=300 --logdir=. --port <your_port> - Then go to tab
Portsin VSCode, and add<your_port> - Open web browser and go to
http://localhost:<your_port>
- Run
Useful commands:
C-b dDetach from tmux session.C-b %Split pane vertically.C-b "Split pane horizontally.C-b arrow_keyMove around panes.C-b zToggle between pane and full screen.C-b cCreate a new pane.C-b xorC-b &Close the current pane.C-b ESpreads panes out evenly.C-b spaceone-time spread panes out evenly.C-b [0-9]Switch to pane0-9.C-b sShow all panes.qto quit.C-b qShow pane number.
When you're inside the pdb prompt ((Pdb)), you can type commands like:
| Command | Description |
|---|---|
h |
Help (list all commands) |
n |
Next line (step over) |
s |
Step into function |
c |
Continue execution |
q |
Quit the debugger |
p x |
Print the value of variable x |
l |
List source code near the line |
Use PyTorch Landscape to find the best tools for your project (Pytorch Blog).
Note that some tools are set as archived in the landscape but are still active and useful.
- Tutorial: Link