Bladeren bron

Created new subfolder in library for generator classes.

Kristian Schultz 4 jaren geleden
bovenliggende
commit
e1b7ac112e

+ 1 - 4
library/analysis.py

@@ -1,10 +1,7 @@
 from library.exercise import Exercise
 from library.dataset import DataSet, TrainTestData
 from library.GanExamples import StupidToyListGan
-from library.SimpleGan import SimpleGan
-from library.Repeater import Repeater
-from library.SpheredNoise import SpheredNoise
-from library.convGAN import ConvGAN
+from library.generators import SimpleGan, Repeater, SpheredNoise, ConvGAN
 
 import pickle
 import numpy as np

+ 0 - 0
library/GanExamples.py → library/generators/GanExamples.py


+ 0 - 0
library/LoRAS_ProWRAS.py → library/generators/LoRAS_ProWRAS.py


+ 0 - 0
library/Repeater.py → library/generators/Repeater.py


+ 0 - 0
library/SimpleGan.py → library/generators/SimpleGan.py


+ 0 - 0
library/SpheredNoise.py → library/generators/SpheredNoise.py


+ 6 - 0
library/generators/__init__.py

@@ -0,0 +1,6 @@
+from library.generators.autoencoder import Autoencoder
+from library.generators.SimpleGan import SimpleGan
+from library.generators.convGAN import ConvGAN
+from library.generators.LoRAS_ProWRAS import ProWRAS
+from library.generators.Repeater import Repeater
+from library.generators.SpheredNoise import SpheredNoise

+ 0 - 0
library/convGAN.py → library/generators/convGAN.py


+ 0 - 0
library/convGAN_experimental.py → library/generators/convGAN_experimental.py