|
--- |
|
language: |
|
- en |
|
license: mit |
|
size_categories: |
|
- 10K<n<100K |
|
task_categories: |
|
- text-classification |
|
- text-generation |
|
pretty_name: LeetCode Information & YouTube Captions |
|
tags: |
|
- code |
|
dataset_info: |
|
features: |
|
- name: id |
|
dtype: int64 |
|
- name: content |
|
dtype: string |
|
- name: title |
|
dtype: string |
|
- name: title_slug |
|
dtype: string |
|
- name: question_content |
|
dtype: string |
|
- name: question_hints |
|
dtype: string |
|
- name: tag |
|
dtype: string |
|
- name: level |
|
dtype: string |
|
- name: similar_question_ids |
|
dtype: string |
|
splits: |
|
- name: train |
|
num_bytes: 177847656 |
|
num_examples: 17843 |
|
download_size: 80157945 |
|
dataset_size: 177847656 |
|
configs: |
|
- config_name: default |
|
data_files: |
|
- split: train |
|
path: data/train-* |
|
--- |
|
**LeetCode Information & YouTube Captions** |
|
|
|
Original data -> [LimYeri/leetcode_with_youtube_captions](https://huggingface.co/datasets/LimYeri/leetcode_with_youtube_captions) |
|
|
|
The original ['cc_content'] column had many repeated sentences, making the data too long. |
|
|
|
To remove the repetitions, we used precise regular expressions to eliminate the repeated sentences. -> new column ['content'] |
|
|
|
Additionally, we also removed unnecessary strings (e.g., '[Music]'). |