This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import gzip | |
from pathlib import Path | |
import pandas as pd | |
import polars as pl | |
destination = Path("./generated.jsonl.gz") | |
if not destination.exists(): |