|
|
* [New release instructions](https://gitlab.meridian.cs.dal.ca/public_projects/ketos/wikis/New-release-instructions)
|
|
|
|
|
|
* [Instructions for cleaning git history (to reduce repository size)](https://rtyley.github.io/bfg-repo-cleaner/)
|
|
|
|
|
|
* To view all files under git version control (including old files that have been deleted),
|
|
|
```
|
|
|
git log --pretty=format: --name-only --diff-filter=A | sort -u
|
|
|
```
|
|
|
|
|
|
* [Tensorflow and CUDA/cuDNN version compatibility table](https://www.tensorflow.org/install/source#gpu)
|
|
|
|
|
|
* [Guide to installing CUDA and cuDNN libraries on Ubuntu](https://towardsdatascience.com/installing-multiple-cuda-cudnn-versions-in-ubuntu-fcb6aa5194e2)
|
|
|
|
|
|
If apt is broken because of CUDA, try:
|
|
|
```
|
|
|
sudo rm /etc/apt/sources.list.d/cuda*
|
|
|
sudo apt --fix-broken install
|
|
|
```
|
|
|
Read more [here](https://askubuntu.com/questions/1331390/apt-broke-after-trying-to-install-cuda) and [here](https://askubuntu.com/questions/1077061/how-do-i-install-nvidia-and-cuda-drivers-into-ubuntu/1077063#1077063)
|
|
|
|
|
|
* [Guide to setting up NVIDIA container toolkit](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/install-guide.html#setting-up-nvidia-container-toolkit)
|
|
|
|
|
|
* Install Python 3.6 on Ubuntu 20.04:
|
|
|
```
|
|
|
sudo add-apt-repository ppa:deadsnakes/ppa
|
|
|
sudo apt-get update
|
|
|
sudo apt-get install python3.6
|
|
|
```
|
|
|
|
|
|
* [Install Docker Engine on Ubuntu](https://docs.docker.com/engine/install/ubuntu/)
|
|
|
|
|
|
* [Sphinx Documentation guides](https://gitlab.meridian.cs.dal.ca/public_projects/ketos/-/wikis/Sphinx-Documentation-guides)
|
|
|
|
|
|
* How to profile import speeds:
|
|
|
```
|
|
|
python -X importtime -c "import ketos.audio.spectrogram" 2> import.log
|
|
|
tuna import.log
|
|
|
``` |
|
|
\ No newline at end of file |