Update README.md
Browse files# Gutenberg French Dataset
This dataset contains french novel from the Gutenberg Project's database with their related categories. It’s designed for training AI models, research, or any other purpose related to natural language processing.
# Data Format
The dataset includes the following fields:
- `author`: author of the book
- `title`: title
- `content`: book content in utf-8 encoding
- `category`: Gutenberg's category of the book. Note: string or list if multiple categories.
# Data Source
The books in this dataset are sourced from Project Gutenberg, a digital library offering a vast collection of free eBooks. Project Gutenberg focuses on works that are in the public domain, which means they are no longer under copyright protection. As a result, you can freely use, distribute, and analyze these texts without any legal restrictions.
@@ -1,23 +1,29 @@
|
|
1 |
-
---
|
2 |
-
dataset_info:
|
3 |
-
features:
|
4 |
-
- name: author
|
5 |
-
dtype: string
|
6 |
-
- name: title
|
7 |
-
dtype: string
|
8 |
-
- name: content
|
9 |
-
dtype: string
|
10 |
-
- name: category
|
11 |
-
dtype: string
|
12 |
-
splits:
|
13 |
-
- name: train
|
14 |
-
num_bytes: 263516030
|
15 |
-
num_examples: 654
|
16 |
-
download_size: 116927261
|
17 |
-
dataset_size: 263516030
|
18 |
-
configs:
|
19 |
-
- config_name: default
|
20 |
-
data_files:
|
21 |
-
- split: train
|
22 |
-
path: data/train-*
|
23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
dataset_info:
|
3 |
+
features:
|
4 |
+
- name: author
|
5 |
+
dtype: string
|
6 |
+
- name: title
|
7 |
+
dtype: string
|
8 |
+
- name: content
|
9 |
+
dtype: string
|
10 |
+
- name: category
|
11 |
+
dtype: string
|
12 |
+
splits:
|
13 |
+
- name: train
|
14 |
+
num_bytes: 263516030
|
15 |
+
num_examples: 654
|
16 |
+
download_size: 116927261
|
17 |
+
dataset_size: 263516030
|
18 |
+
configs:
|
19 |
+
- config_name: default
|
20 |
+
data_files:
|
21 |
+
- split: train
|
22 |
+
path: data/train-*
|
23 |
+
license: apache-2.0
|
24 |
+
task_categories:
|
25 |
+
- text-generation
|
26 |
+
- text-classification
|
27 |
+
language:
|
28 |
+
- fr
|
29 |
+
---
|