From 4bb33be0ff86dd50c4d9ccfee318cb71d071c192 Mon Sep 17 00:00:00 2001 From: sbosse Date: Tue, 27 Aug 2024 00:15:00 +0200 Subject: [PATCH] Tue 27 Aug 00:14:56 CEST 2024 --- test/test-dti2.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/test-dti2.js diff --git a/test/test-dti2.js b/test/test-dti2.js new file mode 100644 index 0000000..6291878 --- /dev/null +++ b/test/test-dti2.js @@ -0,0 +1,18 @@ +var x = [[0, 0, 0], [0, 1, 1], [1, 1, 0], [2, 2, 2], [1, 2, 2], [2, 1, 2]]; +var y = ['A', 'A', 'B', 'B', 'C', 'C']; + +var model = ml.learn({ + algorithm:ml.ML.DTI, + x:x, + y:y, + eps:0.2 +}); +print(toJSON(model).length+' Bytes') +print(toJSON(model)) +var test_data =[[0, 1.2, 0], + [2.1, 2, 3], + [2.1,1.1,2.0]]; + +print(ml.print(model)) +print(ml.classify(model,test_data)) +print(ml.classify(model,[1,2,3]))