|
|
--- |
|
|
task_categories: |
|
|
- feature-extraction |
|
|
language: |
|
|
- en |
|
|
size_categories: |
|
|
- 1M<n<10M |
|
|
--- |
|
|
# sentiment140 for Mimicking Vector Space |
|
|
|
|
|
## Description |
|
|
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. |
|
|
|
|
|
## Usage |
|
|
You can load the dataset using the Hugging Face `datasets` library: |
|
|
|
|
|
```python |
|
|
from datasets import load_dataset |
|
|
|
|
|
dataset = load_dataset('langformers/sentiment140-mimic-embedding') |