Skip to content

Commit e4e8242

Browse files
committed
add training set
1 parent c4d4b28 commit e4e8242

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed

training-data.json

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
{
2+
"XOR": [
3+
{
4+
"input": [
5+
0,
6+
0
7+
],
8+
"output": 0
9+
},
10+
{
11+
"input": [
12+
0,
13+
1
14+
],
15+
"output": 1
16+
},
17+
{
18+
"input": [
19+
1,
20+
0
21+
],
22+
"output": 1
23+
},
24+
{
25+
"input": [
26+
1,
27+
1
28+
],
29+
"output": 0
30+
}
31+
],
32+
"AND": [
33+
{
34+
"input": [
35+
0,
36+
0
37+
],
38+
"output": 0
39+
},
40+
{
41+
"input": [
42+
0,
43+
1
44+
],
45+
"output": 0
46+
},
47+
{
48+
"input": [
49+
1,
50+
0
51+
],
52+
"output": 0
53+
},
54+
{
55+
"input": [
56+
1,
57+
1
58+
],
59+
"output": 1
60+
}
61+
]
62+
}

0 commit comments

Comments
 (0)