You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this dataset content.

  • Великий тлумачний словник сучасної української мови data/large_explanatory_dictionary.zip
  • Великий орфографічний словник сучасної української мови data/large_spelling_dictionary.zip
  • Словника української мови у 20-ти томах
    • том - 1 data/sum20_tom1.zip
    • том - 2 data/sum20_tom2.zip
    • том - 3 data/sum20_tom3.zip
    • том - 4 data/sum20_tom4.zip
    • том - 5 data/sum20_tom5.zip
    • том - 6 data/sum20_tom6.zip
    • том - 7 data/sum20_tom7.zip
    • том - 8 data/sum20_tom8.zip
    • том - 9 data/sum20_tom9.zip
    • том - 10 data/sum20_tom10.zip
    • том - 11 data/sum20_tom11.zip
  • Орфоепічний словник української мови
    • том - 1 data/orthoepic_dictionary_tom1_a_n.zip
    • том - 2 data/orthoepic_dictionary_tom2_o_ya.zip

Змінити місце збереження:

import os
from datasets import load_dataset

os.environ["HF_DATASETS_CACHE"] = "/place/you/want/to/save"

ds = load_dataset(
  path="u107/uk_books",
  data_files="data/orthoepic_dictionary_tom1_a_n.zip",
  split='train',
  cache_dir='./.tmp_huggingface',
  use_auth_token='hf_...')

for img in ds.data['image']:
  print(img['path'])
Downloads last month
12