FilmPredictor: Fixed prediction error
This commit is contained in:
parent
304aa66358
commit
c9e7826416
1 changed files with 1 additions and 2 deletions
|
@ -131,7 +131,7 @@ class FilmPredictor {
|
|||
);
|
||||
return image.reshape([1, ...image.shape ]);
|
||||
})
|
||||
let result_array = await this.model.predict(imagetensor).array();
|
||||
let result_array = (await this.model.predict(imagetensor).array())[0];
|
||||
return this.array2genres(result_array);
|
||||
}
|
||||
|
||||
|
@ -140,7 +140,6 @@ class FilmPredictor {
|
|||
for(let i = 0; i < arr.length; i++) {
|
||||
if(arr[i] < 0.5)
|
||||
continue;
|
||||
|
||||
result.push(genres[i]);
|
||||
}
|
||||
return result;
|
||||
|
|
Loading…
Reference in a new issue