fix typo
Browse files
app.py
CHANGED
@@ -35,9 +35,9 @@ estimated_expression_meta = estimated_expression_meta["estimated_expression_meta
|
|
35 |
|
36 |
estimated_expression = datasets.load_dataset(
|
37 |
path = "maomlab/CryptoCEN",
|
38 |
-
data_files = {"
|
39 |
print(f"dir(estimated_expression): {dir(estimated_expression)}")
|
40 |
-
|
41 |
|
42 |
#DEBUG
|
43 |
print(f"estimated_expression shape: {estimated_expression.shape}")
|
|
|
35 |
|
36 |
estimated_expression = datasets.load_dataset(
|
37 |
path = "maomlab/CryptoCEN",
|
38 |
+
data_files = {"estimated_expression": "estimated_expression_matrix.parquet"})
|
39 |
print(f"dir(estimated_expression): {dir(estimated_expression)}")
|
40 |
+
estimated_expression = estimated_expression["estimated_expression"].to_pandas()
|
41 |
|
42 |
#DEBUG
|
43 |
print(f"estimated_expression shape: {estimated_expression.shape}")
|