Datasets:
黒い心臓
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -51,25 +51,21 @@ Each entry in the dataset is represented by a dictionary with the following fiel
|
|
51 |
## Usage
|
52 |
|
53 |
```python
|
54 |
-
import
|
55 |
-
import random
|
56 |
|
57 |
# Load the dataset
|
58 |
-
|
59 |
-
anime_quotes = pickle.load(file)
|
60 |
|
61 |
-
|
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 |
-
|
71 |
-
|
72 |
-
|
|
|
|
|
|
|
73 |
```
|
74 |
|
75 |
## Contributions
|
@@ -83,6 +79,6 @@ A special thanks to [Anime Motivation](https://ja.animemotivation.com) for the i
|
|
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! 🌌✨🚀
|
|
|
51 |
## Usage
|
52 |
|
53 |
```python
|
54 |
+
import datasets
|
|
|
55 |
|
56 |
# Load the dataset
|
57 |
+
dataset = datasets.load_dataset('v3xlrm1nOwo1/AnimeQuotes')
|
|
|
58 |
|
59 |
+
print(dataset)
|
|
|
|
|
|
|
|
|
|
|
60 |
```
|
61 |
|
62 |
```zsh
|
63 |
+
DatasetDict({
|
64 |
+
train: Dataset({
|
65 |
+
features: ['Quote', 'Character', 'URL'],
|
66 |
+
num_rows: 10388
|
67 |
+
})
|
68 |
+
})
|
69 |
```
|
70 |
|
71 |
## Contributions
|
|
|
79 |
|
80 |
## License
|
81 |
This dataset is provided under the [Apache License 2.0](LICENSE). Feel free to use, modify, and share it.
|
82 |
+
<p>Dive into the Anime Quotes Dataset and let the enchanting magic of anime wisdom unfold! 🌌✨🚀</p>
|
83 |
|
84 |
+
> **_NOTE:_** To contribute to the project, please contribute directly. I am happy to do so, and if you have any comments, advice, job opportunities, or want me to contribute to a project, please contact me I am happy to do so<a href='mailto:[email protected]' target='blank'>[email protected]</a>
|
|