MidhunKanadan commited on
Commit
9d5982d
·
verified ·
1 Parent(s): d5a70a6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -4
README.md CHANGED
@@ -58,18 +58,22 @@ This dataset can be used for:
58
  - Studying **populist rhetoric** and comparative discourse analysis
59
  - Building educational tools for **teaching argumentation theory**
60
 
61
- ## How to Use 🧪
 
62
 
63
- You can load the dataset directly using the 🤗 `datasets` library:
 
 
64
 
65
  ```python
66
  from datasets import load_dataset
67
 
68
- # Load the dataset
69
  dataset = load_dataset("MidhunKanadan/populist-argument-schemes")
70
 
71
- # View a sample
72
  print(dataset["train"][0])
 
73
 
74
  ### 🖨️ Expected Output
75
 
 
58
  - Studying **populist rhetoric** and comparative discourse analysis
59
  - Building educational tools for **teaching argumentation theory**
60
 
61
+ ```markdown
62
+ ## How to Use 🧠
63
 
64
+ You can easily load this dataset using the 🤗 `datasets` library, which allows seamless integration with Hugging Face Transformers, evaluation tools, and fine-tuning pipelines.
65
+
66
+ ### 📥 Load the Dataset
67
 
68
  ```python
69
  from datasets import load_dataset
70
 
71
+ # Load the dataset from the Hugging Face Hub
72
  dataset = load_dataset("MidhunKanadan/populist-argument-schemes")
73
 
74
+ # View a sample entry
75
  print(dataset["train"][0])
76
+ ```
77
 
78
  ### 🖨️ Expected Output
79