This website works better with JavaScript.
Home
Explore
Help
Sign In
Demos
/
film-poster-genres
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Add comments from live presentation
master
Starbeamrainbowlabs
5 months ago
parent
271d623a78
commit
d11aba0d9b
Signed by:
sbrl
GPG Key ID:
1BE5172E637709C2
2 changed files
with
6 additions
and
4 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-0
src/lib/FilmPredictor.mjs
+4
-4
src/lib/Genres.mjs
+ 2
- 0
src/lib/FilmPredictor.mjs
View File
@ -4,6 +4,8 @@ import path from 'path';
import fs from 'fs';
import tf from '@tensorflow/tfjs-node';
// import tf from '@tensorflow/tfjs-node-gpu';
// import tf from '@tensorflow/tfjs';
import genres from './Genres.mjs';
+ 4
- 4
src/lib/Genres.mjs
View File
@ -1,9 +1,9 @@
"use strict";
export default [
"Action",
"Adventure",
"Animation",
"Action",
// 0
"Adventure",
// 1
"Animation",
// 2
"Biography",
"Comedy",
"Crime",
@ -23,5 +23,5 @@ export default [
"Sport",
"Thriller",
"War",
"Western"
"Western"
// 22
];
Write
Preview
Loading…
Cancel
Save