File tree Expand file tree Collapse file tree 4 files changed +0
-56
lines changed Expand file tree Collapse file tree 4 files changed +0
-56
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,6 @@ dependencies:
3535 - scikit-video
3636 - scikit-image
3737 - tensorflow-gpu
38- - copulae
3938 - pip :
4039 - psychrolib
4140 - pyvinecopulib
Original file line number Diff line number Diff line change 11from .copulas .gaussian import GaussianCopula
22from .copulas .vine import VineCopula
3- from .copulas .copulae import CopulaeCopula
43from .generators .copula import CopulaDataGenerator
54from .generators .fpca import FPCADataGenerator
65from .generators .mixed_fpca import MixedFPCADataGenerator
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11import time
22import numpy as np
3- import copulae
43import pyvinecopulib as pv
54
65import synthia as syn
@@ -24,10 +23,5 @@ def main():
2423 generator .generate (n_synthetic_samples )
2524 print (f'pyvinecopulib: { time .time () - t0 } s' )
2625
27- t0 = time .time ()
28- generator .fit (input_data , syn .CopulaeCopula (copulae .GaussianCopula ))
29- generator .generate (n_synthetic_samples )
30- print (f'copulae: { time .time () - t0 } s' )
31-
3226if __name__ == '__main__' :
3327 main ()
You can’t perform that action at this time.
0 commit comments