-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpxt.json
41 lines (41 loc) · 1.09 KB
/
pxt.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "pxt-neural-network-json",
"description": "This extensions add blocks for neurol network computations.",
"dependencies": {
"core": "*",
"radio": "*"
},
"files": [
"nntest.ts",
"nntest.cpp",
"platform/Utils.h",
"platform/Utils.cpp",
"common/logUtils.h",
"common/logUtils.cpp",
"json/DebugJsonParser.cpp",
"json/DebugJsonParser.h",
"json/JsonParserIF.h",
"json/NNJsonParser.cpp",
"json/NNJsonParser.h",
"json/Parser.cpp",
"json/Parser.h",
"json/Token.cpp",
"json/Token.h",
"json/VectJsonParser.cpp",
"json/VectJsonParser.h",
"neuralnets/Mat.cpp",
"neuralnets/Mat.h",
"neuralnets/NN.cpp",
"neuralnets/NN.h",
"neuralnets/NNLayer.cpp",
"neuralnets/NNLayer.h",
"neuralnets/NNUtils.cpp",
"neuralnets/NNUtils.h",
"neuralnets/Vect.cpp",
"neuralnets/Vect.h",
"shims.d.ts",
"enums.d.ts",
"README.md"
],
"preferredEditor": "blocksprj"
}