Skip to content

Commit fb4274b

Browse files
committed
remove backend to copulae
1 parent 5ef53b8 commit fb4274b

File tree

4 files changed

+0
-56
lines changed

4 files changed

+0
-56
lines changed

environment.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ dependencies:
3535
- scikit-video
3636
- scikit-image
3737
- tensorflow-gpu
38-
- copulae
3938
- pip:
4039
- psychrolib
4140
- pyvinecopulib

synthia/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from .copulas.gaussian import GaussianCopula
22
from .copulas.vine import VineCopula
3-
from .copulas.copulae import CopulaeCopula
43
from .generators.copula import CopulaDataGenerator
54
from .generators.fpca import FPCADataGenerator
65
from .generators.mixed_fpca import MixedFPCADataGenerator

synthia/copulas/copulae.py

Lines changed: 0 additions & 48 deletions
This file was deleted.

tests/benchmark.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import time
22
import numpy as np
3-
import copulae
43
import pyvinecopulib as pv
54

65
import 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-
3226
if __name__ == '__main__':
3327
main()

0 commit comments

Comments
 (0)