├── LICENSE ├── README.md ├── __pycache__ └── server.cpython-36.pyc ├── backend ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── api.cpython-36.pyc │ └── class_register.cpython-36.pyc ├── api.py └── class_register.py ├── client ├── dist │ ├── 05ca9c06114e79436ea9b5c8d4a7869c.ttf │ ├── 4171e41154ba857f85c536f167d581ba.ttf │ ├── 7eeb10384e8e1ef96c87f7074cf2ef59.ttf │ ├── a849e7649e2005ab4aecfa50d96120e1.ttf │ ├── demo │ │ ├── NYTimes.json │ │ ├── gpt-2-small_examples.json │ │ ├── gpt2_small_top5_uncond.json │ │ ├── gpt_2_small_top40_t0.7.json │ │ ├── mit_ibm_heart_black.png │ │ ├── paper_gan.json │ │ ├── unicorn.json │ │ └── woodchuck.json │ ├── fun.html │ ├── index.html │ ├── payments.html │ ├── signup.html │ ├── start.css │ ├── start.js │ └── vendor.js └── src │ ├── css │ ├── start.scss │ └── violin.scss │ ├── demo │ ├── NYTimes.json │ ├── gpt-2-small_examples.json │ ├── gpt2_small_top5_uncond.json │ ├── gpt_2_small_top40_t0.7.json │ ├── mit_ibm_heart_black.png │ ├── paper_gan.json │ ├── unicorn.json │ └── woodchuck.json │ ├── fonts │ ├── IBM_Plex_Sans │ │ ├── IBMPlexSans-Bold.ttf │ │ ├── IBMPlexSans-BoldItalic.ttf │ │ ├── IBMPlexSans-ExtraLight.ttf │ │ ├── IBMPlexSans-ExtraLightItalic.ttf │ │ ├── IBMPlexSans-Italic.ttf │ │ ├── IBMPlexSans-Light.ttf │ │ ├── IBMPlexSans-LightItalic.ttf │ │ ├── IBMPlexSans-Medium.ttf │ │ ├── IBMPlexSans-MediumItalic.ttf │ │ ├── IBMPlexSans-Regular.ttf │ │ ├── IBMPlexSans-SemiBold.ttf │ │ ├── IBMPlexSans-SemiBoldItalic.ttf │ │ ├── IBMPlexSans-Thin.ttf │ │ ├── IBMPlexSans-ThinItalic.ttf │ │ └── OFL.txt │ └── plex_sans.css │ ├── fun.html │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── ts │ ├── api │ │ └── GLTR_API.ts │ ├── etc │ │ ├── GlobalVars.ts │ │ ├── SVGplus.ts │ │ ├── SimpleEventHandler.ts │ │ ├── URLHandler.ts │ │ └── Util.ts │ ├── start.ts │ └── vis │ │ ├── BarChart.ts │ │ ├── GLTR_Text_Box.ts │ │ ├── Histogram.ts │ │ ├── ToolTip.ts │ │ └── VisComponent.ts │ ├── tsconfig.json │ └── webpack.config.js ├── figs └── overview.png ├── requirements.txt ├── server.py └── server.yaml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/server.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/__pycache__/server.cpython-36.pyc -------------------------------------------------------------------------------- /backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/backend/__init__.py -------------------------------------------------------------------------------- /backend/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/backend/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /backend/__pycache__/api.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/backend/__pycache__/api.cpython-36.pyc -------------------------------------------------------------------------------- /backend/__pycache__/class_register.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/backend/__pycache__/class_register.cpython-36.pyc -------------------------------------------------------------------------------- /backend/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/backend/api.py -------------------------------------------------------------------------------- /backend/class_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/backend/class_register.py -------------------------------------------------------------------------------- /client/dist/05ca9c06114e79436ea9b5c8d4a7869c.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/dist/05ca9c06114e79436ea9b5c8d4a7869c.ttf -------------------------------------------------------------------------------- /client/dist/4171e41154ba857f85c536f167d581ba.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/dist/4171e41154ba857f85c536f167d581ba.ttf -------------------------------------------------------------------------------- /client/dist/7eeb10384e8e1ef96c87f7074cf2ef59.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/dist/7eeb10384e8e1ef96c87f7074cf2ef59.ttf -------------------------------------------------------------------------------- /client/dist/a849e7649e2005ab4aecfa50d96120e1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/dist/a849e7649e2005ab4aecfa50d96120e1.ttf -------------------------------------------------------------------------------- /client/dist/demo/NYTimes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/dist/demo/NYTimes.json -------------------------------------------------------------------------------- /client/dist/demo/gpt-2-small_examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/dist/demo/gpt-2-small_examples.json -------------------------------------------------------------------------------- /client/dist/demo/gpt2_small_top5_uncond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/dist/demo/gpt2_small_top5_uncond.json -------------------------------------------------------------------------------- /client/dist/demo/gpt_2_small_top40_t0.7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/dist/demo/gpt_2_small_top40_t0.7.json -------------------------------------------------------------------------------- /client/dist/demo/mit_ibm_heart_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/dist/demo/mit_ibm_heart_black.png -------------------------------------------------------------------------------- /client/dist/demo/paper_gan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/dist/demo/paper_gan.json -------------------------------------------------------------------------------- /client/dist/demo/unicorn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/dist/demo/unicorn.json -------------------------------------------------------------------------------- /client/dist/demo/woodchuck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/dist/demo/woodchuck.json -------------------------------------------------------------------------------- /client/dist/fun.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/dist/fun.html -------------------------------------------------------------------------------- /client/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/dist/index.html -------------------------------------------------------------------------------- /client/dist/payments.html: -------------------------------------------------------------------------------- 1 | payments -------------------------------------------------------------------------------- /client/dist/signup.html: -------------------------------------------------------------------------------- 1 | sfsf -------------------------------------------------------------------------------- /client/dist/start.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/dist/start.css -------------------------------------------------------------------------------- /client/dist/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/dist/start.js -------------------------------------------------------------------------------- /client/dist/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/dist/vendor.js -------------------------------------------------------------------------------- /client/src/css/start.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/css/start.scss -------------------------------------------------------------------------------- /client/src/css/violin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/css/violin.scss -------------------------------------------------------------------------------- /client/src/demo/NYTimes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/demo/NYTimes.json -------------------------------------------------------------------------------- /client/src/demo/gpt-2-small_examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/demo/gpt-2-small_examples.json -------------------------------------------------------------------------------- /client/src/demo/gpt2_small_top5_uncond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/demo/gpt2_small_top5_uncond.json -------------------------------------------------------------------------------- /client/src/demo/gpt_2_small_top40_t0.7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/demo/gpt_2_small_top40_t0.7.json -------------------------------------------------------------------------------- /client/src/demo/mit_ibm_heart_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/demo/mit_ibm_heart_black.png -------------------------------------------------------------------------------- /client/src/demo/paper_gan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/demo/paper_gan.json -------------------------------------------------------------------------------- /client/src/demo/unicorn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/demo/unicorn.json -------------------------------------------------------------------------------- /client/src/demo/woodchuck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/demo/woodchuck.json -------------------------------------------------------------------------------- /client/src/fonts/IBM_Plex_Sans/IBMPlexSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/fonts/IBM_Plex_Sans/IBMPlexSans-Bold.ttf -------------------------------------------------------------------------------- /client/src/fonts/IBM_Plex_Sans/IBMPlexSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/fonts/IBM_Plex_Sans/IBMPlexSans-BoldItalic.ttf -------------------------------------------------------------------------------- /client/src/fonts/IBM_Plex_Sans/IBMPlexSans-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/fonts/IBM_Plex_Sans/IBMPlexSans-ExtraLight.ttf -------------------------------------------------------------------------------- /client/src/fonts/IBM_Plex_Sans/IBMPlexSans-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/fonts/IBM_Plex_Sans/IBMPlexSans-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /client/src/fonts/IBM_Plex_Sans/IBMPlexSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/fonts/IBM_Plex_Sans/IBMPlexSans-Italic.ttf -------------------------------------------------------------------------------- /client/src/fonts/IBM_Plex_Sans/IBMPlexSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/fonts/IBM_Plex_Sans/IBMPlexSans-Light.ttf -------------------------------------------------------------------------------- /client/src/fonts/IBM_Plex_Sans/IBMPlexSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/fonts/IBM_Plex_Sans/IBMPlexSans-LightItalic.ttf -------------------------------------------------------------------------------- /client/src/fonts/IBM_Plex_Sans/IBMPlexSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/fonts/IBM_Plex_Sans/IBMPlexSans-Medium.ttf -------------------------------------------------------------------------------- /client/src/fonts/IBM_Plex_Sans/IBMPlexSans-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/fonts/IBM_Plex_Sans/IBMPlexSans-MediumItalic.ttf -------------------------------------------------------------------------------- /client/src/fonts/IBM_Plex_Sans/IBMPlexSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/fonts/IBM_Plex_Sans/IBMPlexSans-Regular.ttf -------------------------------------------------------------------------------- /client/src/fonts/IBM_Plex_Sans/IBMPlexSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/fonts/IBM_Plex_Sans/IBMPlexSans-SemiBold.ttf -------------------------------------------------------------------------------- /client/src/fonts/IBM_Plex_Sans/IBMPlexSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/fonts/IBM_Plex_Sans/IBMPlexSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /client/src/fonts/IBM_Plex_Sans/IBMPlexSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/fonts/IBM_Plex_Sans/IBMPlexSans-Thin.ttf -------------------------------------------------------------------------------- /client/src/fonts/IBM_Plex_Sans/IBMPlexSans-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/fonts/IBM_Plex_Sans/IBMPlexSans-ThinItalic.ttf -------------------------------------------------------------------------------- /client/src/fonts/IBM_Plex_Sans/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/fonts/IBM_Plex_Sans/OFL.txt -------------------------------------------------------------------------------- /client/src/fonts/plex_sans.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/fonts/plex_sans.css -------------------------------------------------------------------------------- /client/src/fun.html: -------------------------------------------------------------------------------- 1 | hello! -------------------------------------------------------------------------------- /client/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/index.html -------------------------------------------------------------------------------- /client/src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/package-lock.json -------------------------------------------------------------------------------- /client/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/package.json -------------------------------------------------------------------------------- /client/src/ts/api/GLTR_API.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/ts/api/GLTR_API.ts -------------------------------------------------------------------------------- /client/src/ts/etc/GlobalVars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/ts/etc/GlobalVars.ts -------------------------------------------------------------------------------- /client/src/ts/etc/SVGplus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/ts/etc/SVGplus.ts -------------------------------------------------------------------------------- /client/src/ts/etc/SimpleEventHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/ts/etc/SimpleEventHandler.ts -------------------------------------------------------------------------------- /client/src/ts/etc/URLHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/ts/etc/URLHandler.ts -------------------------------------------------------------------------------- /client/src/ts/etc/Util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/ts/etc/Util.ts -------------------------------------------------------------------------------- /client/src/ts/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/ts/start.ts -------------------------------------------------------------------------------- /client/src/ts/vis/BarChart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/ts/vis/BarChart.ts -------------------------------------------------------------------------------- /client/src/ts/vis/GLTR_Text_Box.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/ts/vis/GLTR_Text_Box.ts -------------------------------------------------------------------------------- /client/src/ts/vis/Histogram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/ts/vis/Histogram.ts -------------------------------------------------------------------------------- /client/src/ts/vis/ToolTip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/ts/vis/ToolTip.ts -------------------------------------------------------------------------------- /client/src/ts/vis/VisComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/ts/vis/VisComponent.ts -------------------------------------------------------------------------------- /client/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/tsconfig.json -------------------------------------------------------------------------------- /client/src/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/client/src/webpack.config.js -------------------------------------------------------------------------------- /figs/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/figs/overview.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/requirements.txt -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/server.py -------------------------------------------------------------------------------- /server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Watch-Me-Build-an-Education-Startup/HEAD/server.yaml --------------------------------------------------------------------------------