online-ml / chantilly

🍦 Deployment tool for online machine learning models
BSD 3-Clause "New" or "Revised" License
97 stars 17 forks source link

invalid javascript syntax in example #17

Closed hholst80 closed 3 years ago

hholst80 commented 3 years ago

= e => {} is not valid javascript. remove first = token

es.addEventListener('learn', = e => {
    var data = JSON.parse(e.data);
    console.log(data.model, data.features, data.prediction, data.ground_truth)
};