Skip to content

Commit

Permalink
housekeeping
Browse files Browse the repository at this point in the history
  • Loading branch information
Akatuoro committed Jul 10, 2019
1 parent 5f75069 commit 145de37
Show file tree
Hide file tree
Showing 3 changed files with 188 additions and 142 deletions.
54 changes: 50 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,59 @@ convertlist.txt



# Created by https://www.gitignore.io/api/node,jupyternotebook
# Created by https://www.gitignore.io/api/node,macos,jupyternotebooks
# Edit at https://www.gitignore.io/?templates=node,macos,jupyternotebooks

### JupyterNotebooks ###
# gitignore template for Jupyter Notebooks
# website: http://jupyter.org/

### JupyterNotebook ###
.ipynb_checkpoints
*/.ipynb_checkpoints/*

# Remove previous ipynb_checkpoints
# git rm -r .ipynb_checkpoints/
#

### macOS ###
# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

### Node ###
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
Expand All @@ -43,6 +79,7 @@ lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output
Expand All @@ -66,6 +103,9 @@ jspm_packages/
# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

Expand All @@ -83,6 +123,7 @@ typings/

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache
Expand All @@ -97,7 +138,12 @@ typings/
.vuepress/dist

# Serverless directories
.serverless
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# End of https://www.gitignore.io/api/node,jupyternotebook
# End of https://www.gitignore.io/api/node,macos,jupyternotebooks
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ https://drive.google.com/open?id=1FFKdxTGTTUdLZQOeoWkqFb9AegGm3dSF

### Commands for the Tensorflow Docker Container

Command for jupyter docker container with connected drive `~/icon-gan`:
Command for jupyter docker container with current directory as connected drive:
```
docker run -v ~/icon-gan:/notebooks/icon-gan -it -p 8888:8888 tensorflow/tensorflow:latest-py3
docker run -v $(pwd):/tf/icon-gan -it --rm -p 8888:8888 tensorflow/tensorflow:latest-py3-jupyter
```

Command with Nvidia GPU enabled, recommended for training:
```
docker run --runtime=nvidia -v ~/icon-gan:/notebooks/icon-gan -it -p 8888:8888 tensorflow/tensorflow:latest-gpu-py3
docker run --runtime=nvidia -v $(pwd):/tf/icon-gan -it --rm -p 8888:8888 tensorflow/tensorflow:latest-gpu-py3-jupyter
```
Loading

0 comments on commit 145de37

Please sign in to comment.