File tree Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 5
5
6
6
/*
7
7
Crepe Pitch Detection model
8
- https://github.com/marl/crepe/tree/gh-pages
9
- https://marl.github.io/crepe/crepe.js
8
+ Based on https://github.com/marl/crepe/tree/gh-pages
9
+ Original model and code: https://marl.github.io/crepe/crepe.js
10
10
*/
11
11
12
12
import * as tf from '@tensorflow/tfjs' ;
Original file line number Diff line number Diff line change 6
6
/* eslint max-len: "off" */
7
7
/*
8
8
Pix2pix
9
+ The original pix2pix TensorFlow implementation was made by affinelayer: github.com/affinelayer/pix2pix-tensorflow
10
+ This version is heavily based on Christopher Hesse TensorFlow.js implementation: https://github.com/affinelayer/pix2pix-tensorflow/tree/master/server
9
11
*/
10
12
11
13
import * as tf from '@tensorflow/tfjs' ;
Original file line number Diff line number Diff line change 5
5
6
6
/*
7
7
PoseNet
8
+ The original PoseNet model was ported to TensorFlow.js by Dan Oved.
8
9
*/
9
10
10
11
import EventEmitter from 'events' ;
Original file line number Diff line number Diff line change 4
4
// https://opensource.org/licenses/MIT
5
5
6
6
/* eslint max-len: "off" */
7
+ /* eslint no-trailing-spaces: "off" */
7
8
/*
8
9
Fast Style Transfer
10
+ This implementation is heavily based on github.com/reiinakano/fast-style-transfer-deeplearnjs by Reiichiro Nakano.
11
+ The original TensorFlow implementation was developed by Logan Engstrom: github.com/lengstrom/fast-style-transfer
9
12
*/
10
13
11
14
import * as tf from '@tensorflow/tfjs' ;
You can’t perform that action at this time.
0 commit comments