jam/test/test-dti1.js

17 lines
345 B
JavaScript
Raw Normal View History

2024-08-27 00:14:58 +02:00
var x = [[0, 0, 0], [0, 1, 1], [1, 1, 0], [2, 2, 2], [1, 2, 2], [2, 1, 2]];
var y = [0, 0.2, 0.4, 1, 1.2, 1.4];
var model = ml.learn({
algorithm:ml.ML.DTI,
x:x,
y:y,
eps:0.2
});
print(toJSON(model).length+' Bytes')
var test_data =[[0, 1.2, 0],
[2.1, 2, 3]];
print(ml.print(model))
print(ml.classify(model,test_data))