I hereby claim:
- I am rorcde on github.
- I am rodrigorivera (https://keybase.io/rodrigorivera) on keybase.
- I have a public key ASAknirxG5Uu2eTghkyQjMHSscE7FNE7AjBQFxDE5W1zigo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| git clone https://github.com/DhavalThkkar/DeepLearningDocker.git | |
| # Comment out everything but last line in bash nvidia_docker.sh | |
| bash nvidia_docker.sh | |
| nano Dockerfile.gpu | |
| # Edit the version of the cuda image | |
| # 9.1-cudnn7-devel-ubuntu16.04 | |
| # Add latest versions | |
| # https://repo.anaconda.com/archive/Anaconda3-5.2.0-Linux-x86_64.sh | |
| # https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.8.0-cp36-cp36m-linux_x86_64.whl | |
| docker build -t riverar_docker_tfgpu_conda -f Dockerfile.gpu . |
| jupyter nbconvert --ClearOutputPreprocessor.enabled=True --inplace TSFresh_per_Cluster1-Copy3.ipynb |
| *.csv | |
| output/ | |
| # Byte-compiled / optimized / DLL files | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| # C extensions | |
| *.so |
A series of links to work with tmux
| from pathlib import Path | |
| import os | |
| p = Path('03_Books/') | |
| for ix, path in enumerate(sorted(os.listdir(p))): | |
| if '.DS_Store' not in path: | |
| full_path = os.path.join(p, path) | |
| if os.path.isdir(full_path): | |
| if ix < 10: |