trying to figure out what loading a .parque file looks like
Browse files
app.py
CHANGED
@@ -36,7 +36,8 @@ estimated_expression_meta = estimated_expression_meta["estimated_expression_meta
|
|
36 |
estimated_expression = datasets.load_dataset(
|
37 |
path = "maomlab/CryptoCEN",
|
38 |
data_files = {"estimated_expression_matrix": "estimated_expression_matrix.parquet"})
|
39 |
-
estimated_expression
|
|
|
40 |
|
41 |
#DEBUG
|
42 |
print(f"estimated_expression shape: {estimated_expression.shape}")
|
|
|
36 |
estimated_expression = datasets.load_dataset(
|
37 |
path = "maomlab/CryptoCEN",
|
38 |
data_files = {"estimated_expression_matrix": "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}")
|