Skip to content

Commit

Permalink
fix qrng argument use due to fix in pyvinecopulib 0.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
dmey committed Oct 24, 2020
1 parent ac7efd7 commit d2e9223
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synthia/copulas/vine.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def generate(self, n_samples: int, qrng=False, num_threads=1) -> np.ndarray:
Returns:
2D array of shape (n_samples, feature) with Vine copula entries.
"""
u_sim = self.model.simulate(n_samples, qrn=qrng, num_threads=num_threads)
u_sim = self.model.simulate(n_samples, qrng=qrng, num_threads=num_threads)
return u_sim

# Pickling support
Expand Down

0 comments on commit d2e9223

Please sign in to comment.