Mohaaxa commited on
Commit
9fbb352
·
verified ·
1 Parent(s): c050e69

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -0
README.md CHANGED
@@ -19,3 +19,32 @@ configs:
19
  - split: train
20
  path: data/train-*
21
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  - split: train
20
  path: data/train-*
21
  ---
22
+ # Rick and Morty Transcripts - ShareGPT-3
23
+
24
+ ## Overview
25
+ The **Mohaaxa/rick-and-morty-transcripts-sharegpt-3** dataset is designed for fine-tuning language models to emulate the character Morty from *Rick and Morty*. It is derived from the [Prarabdha/Rick_and_Morty_Transcript](https://huggingface.co/datasets/Prarabdha/Rick_and_Morty_Transcript), which itself was inspired by the Rick & Morty Scripts by Andrada Olteanu.
26
+
27
+ This dataset expands on previous versions by including updated content and improved structure, making it a valuable resource for fine-tuning conversational models.
28
+
29
+ ## Inspiration
30
+ The dataset was inspired by the original Rick & Morty scripts by Andrada Olteanu but aims to provide a larger and more up-to-date collection of transcripts. It covers nearly all episodes up to **Season 5**.
31
+
32
+ ## Dataset Details
33
+ - **Rows:** 1.15k
34
+ - **Columns:**
35
+ - `index`: Row index
36
+ - `speaker`: Character's name (e.g., Rick, Morty)
37
+ - `dialogue`: The spoken dialogue for that entry
38
+
39
+ ## Usage
40
+ This dataset is ideal for:
41
+ - Fine-tuning LLMs to emulate *Morty*
42
+ - Generating character-specific dialogues
43
+ - Exploring natural language understanding in scripted conversations
44
+
45
+ ### Example Usage (Hugging Face Datasets Library)
46
+ ```python
47
+ from datasets import load_dataset
48
+
49
+ dataset = load_dataset("Mohaaxa/rick-and-morty-transcripts-sharegpt-3")
50
+ print(dataset["train"][0])