Skip to content

Commit

Permalink
feat(timegan): Defining the training process.
Browse files Browse the repository at this point in the history
  • Loading branch information
fabclmnt committed Jan 23, 2021
1 parent 53a2ab3 commit 84f903c
Show file tree
Hide file tree
Showing 2 changed files with 391 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/ydata_synthetic/synthesizers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@
from ydata_synthetic.synthesizers.regular.wgan.model import WGAN
from ydata_synthetic.synthesizers.regular.vanillagan.model import VanilllaGAN
from ydata_synthetic.synthesizers.regular.wgangp.model import WGAN_GP
from ydata_synthetic.synthesizers.time_series.timegan.model import TimeGAN

__all__ = [
"VanilllaGAN",
"CGAN",
"WGAN",
"WGAN_GP"
]
"WGAN_GP",
"TimeGAN"
]
Loading

0 comments on commit 84f903c

Please sign in to comment.