黒い心臓 commited on
Commit
ac4143f
1 Parent(s): 16a4d6c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +85 -0
README.md CHANGED
@@ -1,3 +1,88 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ task_categories:
4
+ - text-generation
5
+ - text2text-generation
6
+ - text-classification
7
+ language:
8
+ - ja
9
+ tags:
10
+ - Quotes
11
+ - Anime
12
+ - AnimeQuotes
13
+ - NLP
14
+ size_categories:
15
+ - 1K<n<10K
16
+ pretty_name: Anime Quotes Dataset – アニメの名言データセット 🌸
17
  ---
18
+
19
+
20
+ # Anime Quotes Dataset – アニメの名言データセット 🌸
21
+
22
+ > Welcome to Anime Quotes Dataset
23
+
24
+ <div align="center">
25
+ <picture>
26
+ <source
27
+ srcset="https://cdn-uploads.huggingface.co/production/uploads/64af7c627ab7586520ed8688/p5OxsdeQQmJ5ayHMen0X0.jpeg"
28
+ media="(prefers-color-scheme: dark)"
29
+ />
30
+ <source
31
+ srcset="https://cdn-uploads.huggingface.co/production/uploads/64af7c627ab7586520ed8688/p5OxsdeQQmJ5ayHMen0X0.jpeg"
32
+ media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
33
+ />
34
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/64af7c627ab7586520ed8688/p5OxsdeQQmJ5ayHMen0X0.jpeg" width="100%" height="350px" />
35
+ </picture>
36
+ </div>
37
+
38
+ ## Overview
39
+ 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.
40
+
41
+
42
+ ## Data Format
43
+
44
+ Each entry in the dataset is represented by a dictionary with the following fields:
45
+
46
+ - `Quote`: The text of the quote.
47
+ - `Character`: The name of the character who said the quote.
48
+ - `URL`: The source URL of the quote.
49
+
50
+
51
+ ## Usage
52
+
53
+ ```python
54
+ import pickle
55
+ import random
56
+
57
+ # Load the dataset
58
+ with open('data/AnimeQuotes.pkl', 'rb') as file:
59
+ anime_quotes = pickle.load(file)
60
+
61
+ # Access a random quote
62
+ random_quote = random.choice(anime_quotes)
63
+
64
+ print(f'Quote: {random_quote["Quote"]}')
65
+ print(f'Character: {random_quote["Character"]}')
66
+ print(f'URL: {random_quote["URL"]}')
67
+ ```
68
+
69
+ ```zsh
70
+ Quote: 「今、人生のささいな出来事に対処する方法を学べば、後で役に立ちます。」 – 要潤子
71
+ Character: 要潤子
72
+ 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/
73
+ ```
74
+
75
+ ## Contributions
76
+ 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.
77
+ <p>You find code of this dataset in my Gihub account <a href="https://github.com/v3xlrm1nOwo1/AnimeQuotes">v3xlrm1nOwo1</a>.</p>
78
+
79
+
80
+ ## Acknowledgments
81
+ A special thanks to [Anime Motivation](https://ja.animemotivation.com) for the inspiration and quotes that make this dataset truly special.
82
+
83
+
84
+ ## License
85
+ This dataset is provided under the [Apache License 2.0](LICENSE). Feel free to use, modify, and share it.
86
+
87
+
88
+ > Dive into the Anime Quotes Dataset and let the enchanting magic of anime wisdom unfold! 🌌✨🚀