We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ccd98d commit 0e24e2cCopy full SHA for 0e24e2c
fslite/tests/generate_big_tests.py
@@ -36,10 +36,11 @@ def generate_large_test_dataset():
36
chunk_labels = labels[chunk_start:chunk_end]
37
38
# Generate chunk of features
39
- chunk_features = {
40
- f"feature{i}": np.random.rand(chunk_end - chunk_start)
+ # Generate chunk of features
+ chunk_features = (
41
+ (f"feature{i}", np.random.rand(chunk_end - chunk_start))
42
for i in range(1, n_features + 1)
- }
43
+ )
44
45
# Create DataFrame chunk
46
chunk_data = {"sample_id": chunk_sample_ids, "label": chunk_labels}
0 commit comments