Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: openrail
|
3 |
+
language:
|
4 |
+
- fr
|
5 |
+
tags:
|
6 |
+
- french
|
7 |
+
- philosophy
|
8 |
+
- quebec
|
9 |
+
size_categories:
|
10 |
+
- 100K<n<1M
|
11 |
+
---
|
12 |
+
# Dataset Card for Dataset Name
|
13 |
+
|
14 |
+
## Dataset Description
|
15 |
+
|
16 |
+
### Dataset Summary
|
17 |
+
|
18 |
+
This dataset contains all french philosophy that has been published on erudit.org. It has been generated using a Bs4 web parser that you can find in this repo: https://github.com/MFGiguere/french-philosophy-generator.
|
19 |
+
|
20 |
+
### Supported Tasks and Leaderboards
|
21 |
+
|
22 |
+
This dataset could be useful for this (non-exhaustive) set of tasks: detect if a text is philosophical or not, generate philosophical sentences, generate an abstract from an article, ...
|
23 |
+
|
24 |
+
### Languages
|
25 |
+
|
26 |
+
The database includes includes all journals where the main language is french but might include non-french sentences from quotes or special editions.
|
27 |
+
|
28 |
+
## Dataset Structure
|
29 |
+
|
30 |
+
### Data Instances
|
31 |
+
|
32 |
+
Each row of the databse is a sentence and each column is a text's metadata.
|
33 |
+
|
34 |
+
### Data Fields
|
35 |
+
|
36 |
+
The data is structured as follow, which makes it possible to combine sentences into paragraphs, sections or whole texts.
|
37 |
+
features = {
|
38 |
+
"Journal": str, #The name of the journal where the text was published
|
39 |
+
"Author": str, #Required to be able to generate texts by author.
|
40 |
+
"Year": str, #Will help form a sense of direction on a large scale.
|
41 |
+
"Title": str, #Can be useful for smaller dataset, but can be inferred with enough files.
|
42 |
+
"section_rank": int, #Abstract will be 0 and sections will start as 1.
|
43 |
+
"par_rank": int, #Abstract will be 0 and paragraphs will start as 1.
|
44 |
+
"sent_rank": int, #no of sentence in the paragraph
|
45 |
+
"text": str #Will be single sentence at a time.
|
46 |
+
}
|
47 |
+
|
48 |
+
## Additional Information
|
49 |
+
|
50 |
+
### Contributions
|
51 |
+
|
52 |
+
This dataset exists because of the Deepmay 2023 bootcamp instructors who gave us a solid instruction to language models and a friend at the Bootcamp that suggested me to host this dataset publicly on here!
|