ethereon / netscope

Neural network visualizer
http://ethereon.github.io/netscope
944 stars 322 forks source link

Could I use it in a PC without Internet? #16

Open BrettLL opened 7 years ago

BrettLL commented 7 years ago

Could I use it in a PC without Internet?

rlnx commented 7 years ago

Hi @BrettLL, yes. First of all you have to checkout repo sources and start some lightweight http server from the repo root. For that purpose you may use node.js http-server:

npm install http-server -g
cd netscope
http-server
BrettLL commented 7 years ago

@RuslanIsrafilov Thanks for your advice~