Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# sentiment140 for Mimicking Vector Space
|
| 2 |
+
|
| 3 |
+
## Description
|
| 4 |
+
This dataset contains tweets from the [sentiment140](https://huggingface.co/datasets/stanfordnlp/sentiment140) dataset. It is designed for training a student model to mimic the vector space of a teacher model. This dataset is particularly useful for tasks involving embedding loss computation, where the student model learns to replicate the teacher model's embeddings.
|
| 5 |
+
|
| 6 |
+
## Usage
|
| 7 |
+
You can load the dataset using the Hugging Face `datasets` library:
|
| 8 |
+
|
| 9 |
+
```python
|
| 10 |
+
from datasets import load_dataset
|
| 11 |
+
|
| 12 |
+
dataset = load_dataset('easyllms/sentiment140-mimic-embedding')
|