--- license: mit language: - de pretty_name: Text to IPA Phoneme tags: - IPA - Phonme size_categories: - 100K Die 500000 Datensätze um Deutsch in IPA umzuwandeln. ## Dataset Details Spalten: - klartext: Enthält deutschen Klartext - phon: Enthält IPA Phoneme Daten: Die vollständigen Daten befinden sich in `data/all_data.parquet`. ### Dataset Description Das Parquet-File hat die Spalten `klartext` und `phon`. ## Daten laden Zum schnellen Laden des Parquet-Files mit Python `pandas` (empfohlen: `pyarrow` als Engine): ```python # Falls noch nicht installiert: # pip install pandas pyarrow import pandas as pd # Pfad zur Datei path = 'data/all_data.parquet' # Parquet laden df = pd.read_parquet(path) print(df.shape) print(df.columns) print(df.head(3)) # Beispiel: erstes Paar ausgeben print(df.iloc[0]['klartext'], '->', df.iloc[0]['phon']) ``` Hinweis: Alternativ kann als Engine auch `fastparquet` verwendet werden (`pip install fastparquet`). Beispiel: Ein konkretes Skript für die `datasets`-Library befindet sich unter [examples/load_with_datasets.py](examples/load_with_datasets.py). 50000 Datensätze um Deutsch in IPA - Phoneme zu übersetzen. - **Curated by:** [More Information Needed] - **Funded by [optional]:** [More Information Needed] - **Shared by [optional]:** [More Information Needed] - **Language(s) (NLP):** [More Information Needed] - **License:** [More Information Needed] ### Dataset Sources [optional] - **Repository:** [More Information Needed] - **Paper [optional]:** [More Information Needed] - **Demo [optional]:** [More Information Needed] ## Uses ### Direct Use [More Information Needed] ### Out-of-Scope Use [More Information Needed] ## Dataset Structure [More Information Needed] ## Dataset Creation ### Curation Rationale [More Information Needed] ### Source Data #### Data Collection and Processing [More Information Needed] #### Who are the source data producers? [More Information Needed] ### Annotations [optional] #### Annotation process [More Information Needed] #### Who are the annotators? [More Information Needed] #### Personal and Sensitive Information [More Information Needed] ## Bias, Risks, and Limitations [More Information Needed] ### Recommendations Users should be made aware of the risks, biases and limitations of the dataset. More information needed for further recommendations. ## Citation [optional] **BibTeX:** [More Information Needed] **APA:** [More Information Needed] ## Glossary [optional] [More Information Needed] ## More Information [optional] [More Information Needed] ## Dataset Card Authors [optional] [More Information Needed] ## Dataset Card Contact [More Information Needed]