dataset-tests / app.py
Omnibus's picture
Create app.py
04c6827
raw
history blame
No virus
291 Bytes
#import pandas as pd
#import pyarrow
#import fastparquet
from datasets import load_dataset_builder
from datasets import load_dataset
dataset = load_dataset("competitions/aiornot")
def read_par(file):
parquet_file = "data.parquet"
df = pd.read_parquet(parquet_file, engine='pyarrow')