Datasets:

Modalities:
Text
Formats:
csv
Languages:
German
Libraries:
Datasets
pandas
License:
costrau commited on
Commit
28606b5
1 Parent(s): 2510105

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -1
README.md CHANGED
@@ -1,5 +1,22 @@
1
  ---
2
  license: cc-by-sa-4.0
 
 
3
  ---
 
 
 
 
 
 
 
4
 
5
- Attribution: Raw data was retrieved from https://dumps.wikimedia.org/dewikiquote/ on November 27th.
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-sa-4.0
3
+ language:
4
+ - de
5
  ---
6
+ # Dataset Card for Wikiquotes German
7
+ This dataset contains german quotes from [wikiquote](https://de.wikiquote.org/wiki/Hauptseite). It consists of two columns named 'author' and 'quote'.
8
+ For regenerating the dataset we provided the source code in this repo. You can use it as follows:
9
+ ```sh
10
+ pip install bs4 pandas
11
+ python CrawlingQuotes.py
12
+ ```
13
 
14
+ For usag in python just include
15
+ ```python
16
+ from datasets import load_dataset
17
+ training_data = load_dataset("caretech-owl/wikiquote-de-quotes", split="train")
18
+ ```
19
+ after installing 🤗 datasets (```pip install datasets```).
20
+
21
+ * **Attribution**: Raw data was retrieved from https://dumps.wikimedia.org/dewikiquote/ on November 27th.
22
+ * **License**: [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/deed.en)