gitextract_wp7vokyw/ ├── .babelrc ├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── GOAL.md ├── LICENSE ├── README.md ├── TODO.md ├── latest/ │ ├── 1.51c25ac0adacae5e02ff.worker.js │ ├── 4.js │ ├── 5.js │ ├── 51c25ac0adacae5e02ff.worker.js │ ├── 6.js │ ├── app.js │ ├── b339297726b01d858501.worker.js │ ├── editor.worker.js │ ├── hotReload.js │ ├── icons-24a6ef8280df161e3d389800fa2107ae/ │ │ ├── .cache │ │ ├── manifest.json │ │ └── manifest.webapp │ ├── index.html │ └── json.worker.js ├── package.json ├── src/ │ ├── __tests__/ │ │ └── 0-tensor_literals/ │ │ └── index.js │ ├── components/ │ │ ├── Board/ │ │ │ ├── Code/ │ │ │ │ ├── index.js │ │ │ │ └── style.sass │ │ │ ├── Error/ │ │ │ │ ├── index.js │ │ │ │ └── style.sass │ │ │ ├── Function/ │ │ │ │ ├── index.js │ │ │ │ └── style.sass │ │ │ ├── Markdown/ │ │ │ │ ├── index.js │ │ │ │ └── style.sass │ │ │ ├── Object/ │ │ │ │ ├── index.js │ │ │ │ └── style.sass │ │ │ ├── ObjectProperty/ │ │ │ │ └── index.js │ │ │ ├── Observable/ │ │ │ │ ├── index.js │ │ │ │ └── style.sass │ │ │ ├── Promise/ │ │ │ │ ├── index.js │ │ │ │ └── style.sass │ │ │ ├── PropertyWrapper/ │ │ │ │ ├── index.js │ │ │ │ └── style.sass │ │ │ ├── Scalar/ │ │ │ │ ├── index.js │ │ │ │ └── style.sass │ │ │ ├── Tensor/ │ │ │ │ ├── CanvasTensor/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.sass │ │ │ │ ├── Stats/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.sass │ │ │ │ ├── SvgTensor/ │ │ │ │ │ ├── index.js │ │ │ │ │ └── style.sass │ │ │ │ ├── index.js │ │ │ │ └── style.sass │ │ │ ├── Unknown/ │ │ │ │ ├── index.js │ │ │ │ └── style.sass │ │ │ ├── index.js │ │ │ └── style.sass │ │ ├── Dataset/ │ │ │ └── index.js │ │ ├── Editor/ │ │ │ ├── index.js │ │ │ └── style.sass │ │ ├── Evaluator/ │ │ │ └── index.js │ │ ├── Interpreter/ │ │ │ ├── index.js │ │ │ ├── modules/ │ │ │ │ ├── ActivationFunctions/ │ │ │ │ │ └── index.js │ │ │ │ ├── Arithmetics/ │ │ │ │ │ ├── Clip/ │ │ │ │ │ │ ├── doc.md │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── Documentation/ │ │ │ │ │ ├── doc.md │ │ │ │ │ └── index.js │ │ │ │ ├── Generators/ │ │ │ │ │ ├── Eye/ │ │ │ │ │ │ ├── doc.md │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── LinearSpace/ │ │ │ │ │ │ ├── doc.md │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Ones/ │ │ │ │ │ │ ├── doc.md │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Zeros/ │ │ │ │ │ │ ├── doc.md │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── Meta/ │ │ │ │ │ ├── Expand/ │ │ │ │ │ │ ├── doc.md │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Rank/ │ │ │ │ │ │ ├── doc.md │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Reshape/ │ │ │ │ │ │ ├── doc.md │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Reverse/ │ │ │ │ │ │ ├── doc.md │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Shape/ │ │ │ │ │ │ ├── doc.md │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Size/ │ │ │ │ │ │ ├── doc.md │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Transpose/ │ │ │ │ │ │ ├── doc.md │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── Mouse.js │ │ │ │ ├── Random/ │ │ │ │ │ ├── Normal/ │ │ │ │ │ │ ├── doc.md │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Uniform/ │ │ │ │ │ │ ├── doc.md │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── Reducers/ │ │ │ │ │ ├── Max/ │ │ │ │ │ │ ├── doc.md │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Mean/ │ │ │ │ │ │ ├── doc.md │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Min/ │ │ │ │ │ │ ├── doc.md │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Product/ │ │ │ │ │ │ ├── doc.md │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── Sum/ │ │ │ │ │ │ ├── doc.md │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── TensorOperators/ │ │ │ │ │ └── index.js │ │ │ │ └── Trigonometry/ │ │ │ │ └── index.js │ │ │ ├── rootEnvironment.js │ │ │ └── symbols.js │ │ ├── Interpreter_OLD/ │ │ │ ├── index.js │ │ │ ├── operators.js │ │ │ ├── runtimeEnvironment.js │ │ │ ├── symbols.js │ │ │ └── utils.js │ │ ├── MonacoEditor/ │ │ │ └── index.js │ │ ├── Panel/ │ │ │ ├── index.js │ │ │ └── style.sass │ │ ├── Parser/ │ │ │ ├── grammar.ohm │ │ │ ├── index.js │ │ │ └── semantics.js │ │ ├── Spinner/ │ │ │ ├── index.js │ │ │ └── style.sass │ │ └── Studio/ │ │ ├── hello-world.l1 │ │ ├── index.js │ │ ├── style.sass │ │ └── test.worker.js │ ├── gallery/ │ │ ├── README.md │ │ ├── future/ │ │ │ ├── functional_object.l1 │ │ │ └── interactive_tensors.l1 │ │ └── old/ │ │ ├── 0_helloWorld.l1 │ │ ├── 10_simple_model.js │ │ ├── 13_edge_detection_pipeline.l1 │ │ ├── 14_edge_detection_compressed.l1 │ │ ├── 18_average_digit.l1 │ │ ├── 19_nth_order_gradient.l1 │ │ ├── 20_maxPool_translation.l1 │ │ ├── 22_polynomial_regression.l1 │ │ ├── 23_regress_tensor.l1 │ │ ├── 23_sine_exp.l1 │ │ ├── 24_RankDown.l1 │ │ ├── 24_cascade.l1 │ │ ├── 27_coffee.l1 │ │ ├── 5_tile_design.l1 │ │ ├── 6_random_test.l1 │ │ ├── 7_edge_detection.l1 │ │ └── 9_higher-order_fns.l1 │ ├── index.html │ ├── index.js │ └── test.js └── webpack.config.js