mustafakemal0146 commited on
Commit
77f5adf
·
verified ·
1 Parent(s): ba6f23a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +76 -3
README.md CHANGED
@@ -1,3 +1,76 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-sa-4.0
3
+ language:
4
+ - tr
5
+ tags:
6
+ - turkish
7
+ - song-lyrics
8
+ - genius
9
+ - music
10
+ - nlp
11
+ pretty_name: "Turkish Song Lyrics from Genius"
12
+ size_categories:
13
+ - 10K<n<100K
14
+ ---
15
+
16
+ # Turkish Song Lyrics from Genius Dataset
17
+
18
+ ## Dataset Description
19
+
20
+ This dataset contains a comprehensive collection of **44,692 Turkish song lyrics**, extracted from the larger "Genius Song Lyrics with Language Information" dataset available on Kaggle. The original 9.07 GB dataset was filtered to include only songs identified with the language code 'tr' (Turkish), making it a clean and focused resource for Turkish Natural Language Processing (NLP) tasks.
21
+
22
+ _**[TR]** Bu veri seti, Kaggle'da bulunan "Genius Song Lyrics with Language Information" adlı büyük veri setinden ayıklanmış **44,692 adet Türkçe şarkı sözü** içermektedir. Orijinal 9.07 GB'lık veri seti, dil kodu 'tr' (Türkçe) olarak tanımlanmış şarkıları içerecek şekilde filtrelenmiştir. Bu, Türkçe Doğal Dil İşleme (DDİ) görevleri için temiz ve odaklanmış bir kaynak oluşturmaktadır._
23
+
24
+ ## How to Use
25
+
26
+ You can easily load this dataset using the Hugging Face `datasets` library.
27
+
28
+ _**[TR]** Bu veri setini Hugging Face `datasets` kütüphanesini kullanarak kolayca yükleyebilirsiniz._
29
+
30
+ ```python
31
+ from datasets import load_dataset
32
+
33
+ # Load the dataset from the Hugging Face Hub
34
+ # Veri setini Hugging Face Hub'dan yükleyin
35
+ dataset = load_dataset("mustafakemal0146/Genius-Turkish-Dataset")
36
+
37
+ # Example: Access the lyrics of the first song in the training split
38
+ # Örnek: Eğitim setindeki ilk şarkının sözlerine erişim
39
+ print(dataset['train'][0]['lyrics'])
40
+ ```
41
+
42
+ ## Dataset Structure
43
+
44
+ The dataset consists of a single CSV file, loaded as the `train` split, with the following columns:
45
+
46
+ _**[TR]** Veri seti, `train` bölünmüşü olarak yüklenen ve aşağıdaki sütunları içeren tek bir CSV dosyasından oluşur:_
47
+
48
+ | Column Name | Data Type | Description (English / Türkçe) |
49
+ |-----------------|-----------|-----------------------------------------------------------------------------------------------------------|
50
+ | `title` | string | The title of the song / Şarkının başlığı. |
51
+ | `tag` | string | The genre tag associated with the song (e.g., 'rap', 'pop') / Şarkıyla ilişkilendirilen tür etiketi. |
52
+ | `artist` | string | The name of the primary artist / Ana sanatçının adı. |
53
+ | `year` | int | The release year of the song / Şarkının çıkış yılı. |
54
+ | `views` | int | The number of views on Genius.com / Genius.com'daki görüntülenme sayısı. |
55
+ | `features` | string | A string representation of featuring artists / Düet yapılan sanatçıların metin formatı. |
56
+ | `lyrics` | string | The full lyrics of the song / Şarkının tam sözleri. |
57
+ | `id` | int | A unique identifier from the original dataset / Orijinal veri setinden gelen benzersiz ID. |
58
+ | `language_cld3` | string | Language code detected by CLD3 model (all 'tr') / CLD3 ile tespit edilen dil kodu (tümü 'tr'). |
59
+ | `language_ft` | string | Language code detected by FastText model (all 'tr') / FastText ile tespit edilen dil (tümü 'tr'). |
60
+ | `language` | string | Final aggregated language code (all 'tr') / Nihai dil kodu (tümü 'tr'). |
61
+
62
+ ## Data Source and Curation
63
+
64
+ This dataset is a curated subset of the [Genius Song Lyrics with Language Information](https://www.kaggle.com/datasets/pavanelisetty/genius-song-lyrics-with-language-information) dataset on Kaggle, originally collected from Genius.com.
65
+
66
+ The filtering process involved reading the main `song_lyrics.csv` file and selecting all rows where the `language` column was equal to 'tr'.
67
+
68
+ _**[TR]** Bu veri seti, orijinal olarak Genius.com'dan toplanmış olan Kaggle'daki [Genius Song Lyrics with Language Information](https://www.kaggle.com/datasets/pavanelisetty/genius-song-lyrics-with-language-information) veri setinin düzenlenmiş bir alt kümesidir. Filtreleme işlemi, ana `song_lyrics.csv` dosyasını okuyarak `language` sütununun 'tr' olduğu tüm satırların seçilmesiyle yapılmıştır._
69
+
70
+ ## License
71
+
72
+ The original dataset on Kaggle does not specify a license. This curated version is shared under the [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)](https://creativecommons.org/licenses/by-nc-sa/4.0/) license, assuming it will be used for non-commercial research and educational purposes. Please refer to the original data source for any commercial use inquiries.
73
+
74
+ ---
75
+ Created by [MustafaKemal0146](https://huggingface.co/MustafaKemal0146)
76
+ ```