File size: 222 Bytes
4c31c97 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import polars as pl
from utils.paths import DATA
def main() -> None:
for name in ["train", "eval"]:
df = pl.read_parquet(DATA / (name + ".parquet"))
print(df)
if __name__ == "__main__":
main()
|