1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-15 16:56:54 +08:00

Reformat with black.

This commit is contained in:
Charles Young
2021-03-08 19:32:13 +08:00
parent 6a305c73ae
commit 8b9065c166
46 changed files with 123 additions and 546 deletions

View File

@@ -33,7 +33,7 @@ class TestStructuredCovEstimator(unittest.TestCase):
NUM_OBSERVATION = 200
EPS = 1e-6
estimator = StructuredCovEstimator(scale_return=False, assume_centered=True, nan_option='fill')
estimator = StructuredCovEstimator(scale_return=False, assume_centered=True, nan_option="fill")
X = np.random.rand(NUM_OBSERVATION, NUM_VARIABLE)
@@ -50,7 +50,7 @@ class TestStructuredCovEstimator(unittest.TestCase):
NUM_VARIABLE = 10
NUM_OBSERVATION = 200
estimator = StructuredCovEstimator(scale_return=False, assume_centered=True, nan_option='fill')
estimator = StructuredCovEstimator(scale_return=False, assume_centered=True, nan_option="fill")
X = np.random.rand(NUM_OBSERVATION, NUM_VARIABLE)