File size: 3,013 Bytes
16a4d6c
 
ac4143f
 
 
 
 
 
 
 
 
 
 
 
 
 
16a4d6c
ac4143f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
77
78
79
80
81
82
83
84
85
86
87
88
---
license: apache-2.0
task_categories:
- text-generation
- text2text-generation
- text-classification
language:
- ja
tags:
- Quotes
- Anime
- AnimeQuotes
- NLP
size_categories:
- 1K<n<10K
pretty_name: Anime Quotes Dataset  アニメの名言データセット 🌸
---


# Anime Quotes Dataset – アニメの名言データセット 🌸

> Welcome to Anime Quotes Dataset

<div align="center">
    <picture>
        <source 
        srcset="https://cdn-uploads.huggingface.co/production/uploads/64af7c627ab7586520ed8688/p5OxsdeQQmJ5ayHMen0X0.jpeg"
        media="(prefers-color-scheme: dark)"
        />
        <source
        srcset="https://cdn-uploads.huggingface.co/production/uploads/64af7c627ab7586520ed8688/p5OxsdeQQmJ5ayHMen0X0.jpeg"
        media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
        />
        <img src="https://cdn-uploads.huggingface.co/production/uploads/64af7c627ab7586520ed8688/p5OxsdeQQmJ5ayHMen0X0.jpeg" width="100%" height="350px" />
    </picture>
</div>

## Overview
This dataset contains a curated collection of inspiring and memorable quotes from various anime series, sourced from the [Anime Motivation](https://ja.animemotivation.com) website. The quotes are stored as a list of dictionaries and can be easily accessed for analysis, research, or personal enjoyment.


## Data Format

Each entry in the dataset is represented by a dictionary with the following fields:

- `Quote`: The text of the quote.
- `Character`: The name of the character who said the quote.
- `URL`: The source URL of the quote.


## Usage

```python
import pickle
import random

# Load the dataset
with open('data/AnimeQuotes.pkl', 'rb') as file:
    anime_quotes = pickle.load(file)

# Access a random quote
random_quote = random.choice(anime_quotes)

print(f'Quote: {random_quote["Quote"]}')
print(f'Character: {random_quote["Character"]}')
print(f'URL: {random_quote["URL"]}')
```

```zsh
Quote: 「今、人生のささいな出来事に対処する方法を学べば、後で役に立ちます。」 – 要潤子
Character: 要潤子
URL: https://ja.animemotivation.com/%E3%82%84%E3%82%8B%E6%B0%97%E3%82%92%E8%B5%B7%E3%81%93%E3%81%95%E3%81%9B%E3%82%8B%E3%82%A2%E3%83%8B%E3%83%A1%E3%81%AE%E5%BC%95%E7%94%A8/
```

## Contributions
We welcome contributions and feedback to make the Anime Quotes Dataset even more fantastic! Whether you're adding new quotes, enhancing existing ones, or providing valuable feedback, your input is highly appreciated.
<p>You find code of this dataset in my Gihub account <a href="https://github.com/v3xlrm1nOwo1/AnimeQuotes">v3xlrm1nOwo1</a>.</p>


## Acknowledgments
A special thanks to [Anime Motivation](https://ja.animemotivation.com) for the inspiration and quotes that make this dataset truly special.


## License
This dataset is provided under the [Apache License 2.0](LICENSE). Feel free to use, modify, and share it.


> Dive into the Anime Quotes Dataset and let the enchanting magic of anime wisdom unfold! 🌌✨🚀