gitextract_z6es8xhk/ ├── .gitignore ├── README.md ├── assets/ │ ├── css/ │ │ ├── codemirror.css │ │ ├── doc.css │ │ ├── netscope.css │ │ ├── tablesorter.css │ │ └── tooltip.css │ └── js/ │ └── netscope.js ├── index.html ├── presets/ │ ├── SSD300.prototxt │ ├── YOLO.prototxt │ ├── alexnet.prototxt │ ├── caffenet.prototxt │ ├── fasterRCNN_AlexNet.prototxt │ ├── fasterRCNN_ResNet.prototxt │ ├── fasterRCNN_VGG.prototxt │ ├── fasterRCNN_ZynqNet.prototxt │ ├── fcn-16s.prototxt │ ├── fcn-8s-pascal.prototxt │ ├── googlenet.prototxt │ ├── inceptionv3.prototxt │ ├── inceptionv3_orig.prototxt │ ├── inceptionv4.prototxt │ ├── inceptionv4_resnet.prototxt │ ├── nin.prototxt │ ├── resnet-152.prototxt │ ├── resnet-50.prototxt │ ├── sq11b2a_e3.prototxt │ ├── squeezenet.prototxt │ ├── squeezenet_v11.prototxt │ ├── vgg-16.prototxt │ └── zynqnet.prototxt ├── quickstart.html ├── required_nodejs_modules.txt ├── scripts/ │ └── watch.sh └── src/ ├── analyzer.coffee ├── app.coffee ├── caffe/ │ ├── caffe.coffee │ ├── grammar/ │ │ └── proto.pegjs │ └── parser.js ├── editor.coffee ├── loader.coffee ├── netscope.coffee ├── network.coffee └── renderer.coffee