Skip to content

Latest commit

 

History

History
28 lines (28 loc) · 696 Bytes

README.md

File metadata and controls

28 lines (28 loc) · 696 Bytes

char-rnn Dockerfile

| Dockerfile & script to build & run char-rnn neural network

usage

  • build from Dockerfile
docker build -t myname/char-rnn /path/to/this/repo
  • run in detached mode
docker run -di --rm --name char-rnn myname/char-rnn
  • view training process output
docker exec -it char_rnn tail -f /rnn.log
  • sample from char-rnn checkpoint file
docker exec -it char-rnn bin/sh /sample.sh
  • access VM terminal
docker exec -it char-rnn bin/bash
  • kill the container
docker kill char-rnn

Bango1999/char-rnn forked from karpathy/char-rnn