xxxxxxxxxx
38
// Predict (c) 2021 kouichi.matsuda@gmail.com
let clf; // 分類器
let img; // 画像
function preload(){
img = loadImage("m100.png");
}
function setup() {
image(img, 0, 0); // 画像を表示する
img.resize(64, 64); // 訓練データのサイズに合わせる
let options = {
task: "imageClassification", // 画像分類
};
clf = ml5.neuralNetwork(options); // NNの作成
let model = {
model: "model.json",
metadata: "model_meta.json",
weights: "model.weights.bin",
};
clf.load(model, modelLoaded); // モデルを読み込む
}
function modelLoaded() {
clf.classify({ image: img, }, gotResults); // 画像を分類させる
}
function gotResults(err, r) { // 結果の表示
if (err) {
print(err);
return;
}
print("推論結果:", r[0].label); // ラベル
print("確信度:", r[0].confidence); // 確信度
}