2019-07-25 15:44:26 +00:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
2019-07-29 17:06:50 +00:00
|
|
|
import brain from 'brain.js';
|
|
|
|
import haversine from 'haversine-distance';
|
2019-07-25 15:44:26 +00:00
|
|
|
|
2019-07-30 14:55:15 +00:00
|
|
|
import {
|
2019-07-30 15:40:12 +00:00
|
|
|
normalise_lat, normalise_lng,
|
2019-07-30 14:55:15 +00:00
|
|
|
|
|
|
|
normalise_gateway_distance,
|
|
|
|
|
|
|
|
unnormalise_rssi
|
|
|
|
} from '../../../common/Normalisers.mjs';
|
|
|
|
|
2019-07-25 15:44:26 +00:00
|
|
|
|
|
|
|
class AIWrapper {
|
|
|
|
constructor() {
|
|
|
|
this.setup_complete = false;
|
|
|
|
|
|
|
|
this.map_bounds = null;
|
|
|
|
this.index = null;
|
2019-07-25 17:56:59 +00:00
|
|
|
this.Config = null;
|
2019-07-25 15:44:26 +00:00
|
|
|
|
|
|
|
this.gateways = new Map();
|
|
|
|
}
|
|
|
|
|
2019-07-25 17:56:59 +00:00
|
|
|
async setup({ bounds, index, Config }) {
|
2019-07-25 15:44:26 +00:00
|
|
|
this.map_bounds = bounds;
|
|
|
|
this.index = index;
|
2019-07-25 17:56:59 +00:00
|
|
|
this.Config = Config;
|
|
|
|
|
|
|
|
console.log("Loading models");
|
|
|
|
|
|
|
|
// WebGL isn't available inside WebWorkers yet :-(
|
2019-07-25 15:44:26 +00:00
|
|
|
|
|
|
|
for(let gateway of this.index.index) {
|
2019-07-30 17:38:44 +00:00
|
|
|
let net = new brain.NeuralNetwork(/*gateway.net_settings*/);
|
2019-07-29 17:06:50 +00:00
|
|
|
net.fromJSON(
|
2019-07-30 17:38:44 +00:00
|
|
|
gateway.frozen_net
|
2019-07-29 17:06:50 +00:00
|
|
|
);
|
|
|
|
|
2019-07-25 15:44:26 +00:00
|
|
|
this.gateways.set(
|
|
|
|
gateway.id,
|
2019-07-30 17:38:44 +00:00
|
|
|
{ ai: net, latitude: gateway.latitude, longitude: gateway.longitude }
|
2019-07-25 15:44:26 +00:00
|
|
|
);
|
|
|
|
}
|
2019-07-25 17:56:59 +00:00
|
|
|
console.log("Model setup complete.");
|
2019-07-25 15:44:26 +00:00
|
|
|
this.setup_complete = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
predict_row(lat) {
|
2019-07-25 17:56:59 +00:00
|
|
|
if(!this.setup_complete)
|
2019-07-25 15:44:26 +00:00
|
|
|
throw new Error("Error: Can't do predictions until the setup is complete.");
|
|
|
|
|
2019-07-25 17:56:59 +00:00
|
|
|
let result = [],
|
2019-07-25 15:44:26 +00:00
|
|
|
stats = {
|
|
|
|
rssi_min: Infinity,
|
|
|
|
rssi_max: -Infinity
|
|
|
|
};
|
|
|
|
|
2019-07-25 17:56:59 +00:00
|
|
|
for(let lng = this.map_bounds.west; lng < this.map_bounds.east; lng += this.Config.step.lng) {
|
2019-07-25 15:44:26 +00:00
|
|
|
let max_predicted_rssi = -Infinity;
|
|
|
|
|
2019-07-30 17:38:44 +00:00
|
|
|
for(let [gateway_id, gateway] of this.gateways) {
|
2019-07-29 17:06:50 +00:00
|
|
|
let distance_from_gateway = haversine(
|
|
|
|
{ latitude: lat, longitude: lng },
|
2019-07-30 17:38:44 +00:00
|
|
|
gateway
|
2019-07-29 17:06:50 +00:00
|
|
|
);
|
2019-07-30 17:38:44 +00:00
|
|
|
let next_value = gateway.ai.run({
|
|
|
|
latitude: normalise_lat(lat),
|
|
|
|
longitude: normalise_lng(lng),
|
|
|
|
distance: normalise_gateway_distance(
|
|
|
|
distance_from_gateway
|
|
|
|
),
|
|
|
|
});
|
|
|
|
if(isNaN(next_value[0])) {
|
|
|
|
console.log(next_value);
|
|
|
|
throw new Error("Error: Neural Network returned NaN");
|
|
|
|
}
|
2019-07-30 14:55:15 +00:00
|
|
|
|
2019-07-30 17:38:44 +00:00
|
|
|
// console.log(next_value);
|
2019-07-25 15:44:26 +00:00
|
|
|
max_predicted_rssi = Math.max(
|
|
|
|
max_predicted_rssi,
|
2019-07-30 17:38:44 +00:00
|
|
|
next_value[0]
|
2019-07-25 15:44:26 +00:00
|
|
|
);
|
|
|
|
}
|
2019-07-30 17:46:07 +00:00
|
|
|
let chance = Math.random() < 0.01;
|
|
|
|
if(chance) console.log(max_predicted_rssi);
|
2019-07-30 14:55:15 +00:00
|
|
|
max_predicted_rssi = unnormalise_rssi(max_predicted_rssi);
|
2019-07-30 17:46:07 +00:00
|
|
|
if(chance) console.log(max_predicted_rssi);
|
2019-07-25 15:44:26 +00:00
|
|
|
|
|
|
|
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;
|