File size: 476 Bytes
fc0f7bd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | export const binaryClassifier = {
trueY: [1,0,1,1,0,1,0, 0],
predictedYs: [
[1,0,0,1,1,1,1,0],
[1,1,1,1, 1, 1,1,0],
[0,0,0,0,0,0,0,0]
],
augmentedData: [
["a", "1", "test1", 1],
["b", "2", "test2", 2],
["b", "2", "test3", 3],
["babaganoush test long", "3", "test4", 1],
["b", "2", "test5", 2],
["b", "2", "test6", 3],
["b", "2", "test7", 0],
["b", "2", "test8", 3]
]
} |