LoRaWAN-Signal-Mapping/client_src/js/Worker/AIWrapper.mjs

88 lines
1.9 KiB
JavaScript
Raw Normal View History

"use strict";
import path from 'path';
import {
loadLayersModel as tf_loadLayersModel,
tensor as tf_tensor,
setBackend as tf_setBackend
} from '@tensorflow/tfjs';
import { normalise } from '../../../common/Math.mjs';
class AIWrapper {
constructor() {
this.setup_complete = false;
this.map_bounds = null;
this.index = null;
this.Config = null;
this.gateways = new Map();
}
async setup({ bounds, index, Config }) {
this.map_bounds = bounds;
this.index = index;
this.Config = Config;
console.log("Loading models");
// WebGL isn't available inside WebWorkers yet :-(
tf_setBackend("cpu");
for(let gateway of this.index.index) {
this.gateways.set(
gateway.id,
await tf_loadLayersModel(`${path.dirname(self.location.href)}/${path.dirname(this.Config.ai_index_file)}/${gateway.id}/model.json`)
);
}
console.log("Model setup complete.");
this.setup_complete = true;
}
predict_row(lat) {
if(!this.setup_complete)
throw new Error("Error: Can't do predictions until the setup is complete.");
let result = [],
stats = {
rssi_min: Infinity,
rssi_max: -Infinity
};
for(let lng = this.map_bounds.west; lng < this.map_bounds.east; lng += this.Config.step.lng) {
let max_predicted_rssi = -Infinity;
for(let [, ai] of this.gateways) {
let next_prediction = ai.predict(
tf_tensor([ lat, lng ], [1, 2])
).arraySync()[0][0];
max_predicted_rssi = Math.max(
max_predicted_rssi,
next_prediction
);
}
max_predicted_rssi = normalise(max_predicted_rssi,
{ min: 0, max: 1 },
{
min: this.index.properties.rssi_min,
max: this.index.properties.rssi_max
}
);
if(max_predicted_rssi > stats.rssi_max)
stats.rssi_max = max_predicted_rssi;
if(max_predicted_rssi < stats.rssi_min)
stats.rssi_min = max_predicted_rssi;
result.push(max_predicted_rssi);
}
return { result, stats };
}
}
export default AIWrapper;