File size: 707 Bytes
cd724fe
 
 
 
 
 
 
 
ffbd442
 
 
 
 
 
 
 
 
 
 
bc86e17
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
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')