The dataset viewer is not available for this subset.
Exception: SplitsNotFoundError
Message: The split names could not be parsed from the dataset config.
Traceback: Traceback (most recent call last):
File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
for split_generator in builder._split_generators(
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/webdataset/webdataset.py", line 82, in _split_generators
raise ValueError(
ValueError: The TAR archives of the dataset should be in WebDataset format, but the files in the archive don't share the same prefix or the same types.
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/config/split_names.py", line 66, in compute_split_names_from_streaming_response
for split in get_dataset_split_names(
^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
info = get_dataset_config_info(
^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 291, in get_dataset_config_info
raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
Processed Wikipedia SQLite Databases for Wikilite
This dataset provides pre-processed SQLite databases of Wikipedia articles for use with the Wikilite tool. These databases allow you to quickly and efficiently search and access Wikipedia content offline using Wikilite's lexical and semantic search capabilities.
Supported Languages
Currently, the dataset includes databases for the following languages:
- Sardinian (sc)
- Italian (it)
- Spanish (es)
- English (en)
- German (de)
- Chinese (zh)
- Arabic (ar)
More languages may be added in the future.
Dataset Structure
Each language is stored as a separate compressed file (.db.gz). There are two types of databases available:
- Lexical Only: Located in the
lexical/directory. These support standard FTS5 full-text search (exact word matching) and are lighter in size. - Semantic & Lexical: Located in the root or specific model directories. These databases contain embedded GGUF models directly within the file structure, enabling both keyword search and vector-based conceptual search without external dependencies.
How to Use This Dataset
1. Command Line & Web Interface (Linux, macOS, Windows, Termux)
Wikilite runs primarily as a command-line tool that can also serve a local web interface.
Install Wikilite
Download the precompiled binary for your operating system from the Wikilite Releases page and extract it.Download a Database
You can download the.db.gzfiles manually from this repository and extract them, or use Wikilite's built-in tools to handle it for you:- Interactive Wizard: Run
./wikilitewithout arguments to launch a wizard that guides you through selecting and downloading a database. - Setup Command: Run
./wikilite --setupto view and download available databases automatically.
- Interactive Wizard: Run
Run Wikilite
Once you have a database file (e.g.,wikilite.db), you can use it in three ways:Interactive Mode:
./wikilite(Follow the on-screen prompts)
Command Line Search:
./wikilite --cli --db <file.db>Web Interface:
./wikilite --web --db <file.db>Access the interface at
http://localhost:35248in your browser.
2. Android Application
A native Android application is available that uses these exact databases.
- Download the Android App APK.
- External Storage: If you manually download a
wikilite.dbfile from this repository and place it on your external SD card, the app will detect and use it automatically. - In-App Download: If no database is found on launch, the app provides an option to download these pre-built databases directly.
About Wikilite
Wikilite is a self-contained tool for creating and browsing local SQLite databases of Wikipedia articles.
Features
- Lexical Search: Uses FTS5 for efficient, exact keyword matching.
- Semantic Search: Uses embedded GGUF models (via llama.cpp integration) contained within the database files to find content based on meaning, synonyms, and conceptual similarity.
- Offline Operation: Complete functionality without internet connectivity.
- Cross-Platform: Available for Linux, macOS, Windows, Termux, and Android.
Semantic Search Capabilities
The semantic search functionality employs text embeddings to handle:
- Query misspellings and typographical errors.
- Conceptual similarity despite different terminology.
- Synonym and related term matching.
- Morphological variations (plurals, verb tenses).
Note: The semantic databases in this repository are fully self-contained. No external model files or API keys are required.
Contributing
If you would like to contribute databases for additional languages, please feel free to submit a pull request.
Acknowledgments
- Downloads last month
- 110