Skip to content

Commit

Permalink
fix minor documentation error, add readme for visualization (#466)
Browse files Browse the repository at this point in the history
  • Loading branch information
jiayiliu authored and kitstar committed Oct 24, 2018
1 parent 2b725ca commit 13003d8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions mmdnn/visualization/README.md
@@ -0,0 +1,9 @@
# Visualize Neural Networks

## Prepare

npm install

## Run

node app.js
2 changes: 1 addition & 1 deletion mmdnn/visualization/app.js
Expand Up @@ -3,4 +3,4 @@ const app = express()
app.use(express.static('public'))
app.get('/', (req, res) => res.sendFile('index.html', {"root": __dirname}))

app.listen(8080, () => console.log('vis is listening on port 8000!'))
app.listen(8080, () => console.log('vis is running at http://localhost:8080'))

0 comments on commit 13003d8

Please sign in to comment.