summaryrefslogtreecommitdiff
path: root/app/relay/modules/index.js
blob: 57b144e1ba8869924b41f2281601623b7ed8055f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import biggan from './biggan'
import morph from './morph'
import pix2pix from './pix2pix'
import pix2pixhd from './pix2pixhd'
import samplernn from './samplernn'
import test from './test'
// style transfer
// audio style transfer
// cyclegan
export default {
  biggan,
  morph,
	pix2pix,
  pix2wav: pix2pix,
	pix2pixhd,
	samplernn,
	test,
}