Dataset scripts are no longer supported

#2
by RobotSail - opened

Seems like dataset scripts are no longer being supported:

----> 5 ds_iter = load_dataset("c3po-ai/edgar-corpus", split="train", streaming=True)
      7 max_bytes = 1 * 1024**3  # 5 GB
      8 bytes_read = 0

File ~/osilkin/mini_trainer/.peft-cl-venv/lib/python3.12/site-packages/datasets/load.py:1392, in load_dataset(path, name, data_dir, data_files, split, cache_dir, features, download_config, download_mode, verification_mode, keep_in_memory, save_infos, revision, token, streaming, num_proc, storage_options, **config_kwargs)
   1387 verification_mode = VerificationMode(
   1388     (verification_mode or VerificationMode.BASIC_CHECKS) if not save_infos else VerificationMode.ALL_CHECKS
   1389 )
   1391 # Create a dataset builder
-> 1392 builder_instance = load_dataset_builder(
   1393     path=path,
   1394     name=name,
   1395     data_dir=data_dir,
   1396     data_files=data_files,
   1397     cache_dir=cache_dir,
   1398     features=features,
   1399     download_config=download_config,
   1400     download_mode=download_mode,
   1401     revision=revision,
   1402     token=token,
...
    990 except EntryNotFoundError:
    991     # Use the infos from the parquet export except in some cases:
    992     if data_dir or data_files or (revision and revision != "main"):

RuntimeError: Dataset scripts are no longer supported, but found edgar-corpus.py

Sign up or log in to comment