我正在尝试使用ML5 sentiment
api 评估一本书的情绪:
const sentiment = ml5.sentiment('movieReviews', modelReady)
// When the model is loaded
function modelReady() {
// model is ready
console.log("Model Loaded!");
}
// make the prediction
fetch('../../data/brothers.txt')
.then(response => response.text())
.then(text => {
const prediction = sentiment.predict(text)
console.log(prediction)
createDiv('predicted sentiment - ' + prediction)
})
function setup() {
}
text
加载正常,我可以将其打印到控制台。使用该predict
方法时会发生以下错误:
如果我text
用一个单词替换,错误保持不变。那么我在这里做错了什么,如何使事情正常进行?