File size: 2,668 Bytes
035b2b1 e0cb0c2 3813ec4 fbf23f4 00dc9ed 6318ea4 035b2b1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
---
license: cc0-1.0
task_categories:
- text-generation
language:
- fr
- en
- it
- es
tags:
- movies
pretty_name: replique-a
size_categories:
- n<1K
viewer: true
configs:
- config_name: default
data_files:
- split: train
path : "train/replique-a.jsonl"
---
# Description
The JSONL file generated by the script below contains detailed information about a corpus of public domain films, including their subtitles in multiple languages. Here is a detailed description of its structure:
## JSONL file structure
1. **IMDB**: Unique identifier for the movie in the IMDb database.
2. **primary_title**: Primary title of the movie.
3. **original_title**: Original title of the movie.
4. **french**:
- **filepath**: Relative path to the French subtitles file.
- **subtitles**: List of texts corresponding to the french subtitles, cleaned and formatted.
5. **english** (optionnel):
- **filepath**: Relative path to the English subtitles file.
- **subtitles**: List of texts corresponding to the english subtitles, cleaned and formatted.
6. **spanish** (optionnel):
- **filepath** (optionnel): Relative path to the Spanish subtitles file.
- **subtitles**: List of texts corresponding to the spanish subtitles, cleaned and formatted.
7. **italian** (optionnel):
- **filepath**: Relative path to the italian subtitles file.
- **subtitles**: List of texts corresponding to the italian subtitles, cleaned and formatted.
8. **german** (optionnel):
- **filepath**: Relative path to the German subtitles file.
- **subtitles**: List of texts corresponding to the german subtitles, cleaned and formatted.
## JSON Content Examples
Each row of the JSONL file represents a movie and its subtitles in different languages, if available. Here is an example of what a row might look like:
```json
{
"IMDB": "tt1234567",
"primary_title": "Example Movie",
"original_title": "Example Movie Original",
"french": {
"filepath": "/tt1234567/french/example_movie.srt",
"subtitles": ['Sous-titre', 'en français', 'nettoyé.']
},
"english": {
"filepath": "/tt1234567/english/example_movie.srt",
"subtitles": ['Cleaned', 'English', 'subtitle.']
},
"spanish": {
"filepath": "/tt1234567/spanish/example_movie.srt",
"subtitles": ['Subtítulo', 'en español', 'limpiado.']
},
"italian": {
"filepath": "/tt1234567/italian/example_movie.srt",
"subtitles": ['Sottotitolo', 'in italiano', 'pulito.']
},
"german": {
"filepath": "/tt1234567/german/example_movie.srt",
"subtitles": ['Bereinigte', 'deutsche', 'Untertitel']
}
} |