--- size_categories: n<1K dataset_info: features: - name: _id dtype: string - name: url dtype: string - name: title dtype: string - name: text dtype: string - name: score dtype: float64 - name: views dtype: float64 - name: model_name dtype: string - name: query dtype: string splits: - name: train num_bytes: 875459 num_examples: 1500 download_size: 564632 dataset_size: 875459 configs: - config_name: default data_files: - split: train path: data/train-* tags: - synthetic - distilabel - rlaif ---

Built with Distilabel

# Dataset Card for cohere-wikipedia-2023-11-fi-queries This dataset has been created with [distilabel](https://distilabel.argilla.io/). ## Dataset Summary This dataset contains a `pipeline.yaml` which can be used to reproduce the pipeline that generated it in distilabel using the `distilabel` CLI: ```console distilabel pipeline run --config "https://huggingface.co/datasets/rasdani/cohere-wikipedia-2023-11-fi-queries/raw/main/pipeline.yaml" ``` or explore the configuration: ```console distilabel pipeline info --config "https://huggingface.co/datasets/rasdani/cohere-wikipedia-2023-11-fi-queries/raw/main/pipeline.yaml" ``` ## Dataset structure The examples have the following structure per configuration:
Configuration: default
```json { "_id": "20231101.fi_37360_11", "model_name": "gpt-4o", "query": "Miten ohutsuolen imeytymispinta-ala muodostuu?", "score": 1.0, "text": "Rengaspoimut laajentavat suolen imeytymispinnan noin kolminkertaiseksi, villukset t\u00e4st\u00e4 viel\u00e4 kymmenkertaiseksi ja mikrovillukset edelleen 20-30-kertaiseksi, niin ett\u00e4 ohutsuolen koko imeytymispinta-alaksi tulee 200-300 m\u00b2.", "title": "Ohutsuoli", "url": "https://fi.wikipedia.org/wiki/Ohutsuoli", "views": 4091.894996237859 } ``` This subset can be loaded as: ```python from datasets import load_dataset ds = load_dataset("rasdani/cohere-wikipedia-2023-11-fi-queries", "default") ``` Or simply as it follows, since there's only one configuration and is named `default`: ```python from datasets import load_dataset ds = load_dataset("rasdani/cohere-wikipedia-2023-11-fi-queries") ```