Hi Im receiving the error 'Running model failed: Not found: FetchOutputs node output: not found'. Not sure what I could be doing wrong I followed the doc and everything installed uneventfully.
`
export default class Album {
async _predict(){
const tfImageRecognition = new TfImageRecognition({
model: require('../../assets/retrained_graph.pb'),
labels: require('../../assets/retrained_labels.txt')
})
const results = await tfImageRecognition.recognize({
image: require('../../assets/1.jpg'),
})
.then(r => console.log(r))
.catch(err => console.log(err))
}
}
`
Hi Im receiving the error 'Running model failed: Not found: FetchOutputs node output: not found'. Not sure what I could be doing wrong I followed the doc and everything installed uneventfully.
`
export default class Album {
async _predict(){
const tfImageRecognition = new TfImageRecognition({
model: require('../../assets/retrained_graph.pb'),
labels: require('../../assets/retrained_labels.txt')
})
}
}
`