admin commited on
Commit
7309911
1 Parent(s): 248d65a

rename org name

Browse files
Files changed (2) hide show
  1. README.md +3 -9
  2. hoyoMusic.py +1 -3
README.md CHANGED
@@ -22,13 +22,13 @@ viewer: false
22
  This dataset mainly contains slices of second creation piano music from Genshin Impact game, which have been converted to ABC notations, with a data volume of 305264. The labeling information covers the score structure information related to the style of the game scene where the music is located. This dataset is not only the result of game music extraction, but also provides important training material about note and melodic structure in the field of researching the second creation music generation of Genshin Impact. Through this resource, the researcher can deeply analyze the characteristics of the game music and provide substantial data support for the training and improvement of music generation algorithms.
23
 
24
  ## Viewer
25
- <https://www.modelscope.cn/datasets/MuGemSt/hoyoMusic/dataPeview>
26
 
27
  ## Usage
28
  ```python
29
  from datasets import load_dataset
30
 
31
- ds = load_dataset("MuGemSt/hoyoMusic")
32
 
33
  for item in ds["train"]:
34
  print(item)
@@ -37,14 +37,8 @@ for item in ds["test"]:
37
  print(item)
38
  ```
39
 
40
- ## Maintainence
41
- ```bash
42
- git clone [email protected]:datasets/MuGemSt/hoyoMusic
43
- cd hoyoMusic
44
- ```
45
-
46
  ## Mirror
47
- <https://www.modelscope.cn/datasets/MuGemSt/hoyoMusic>
48
 
49
  ## Reference
50
  [1] <https://musescore.org><br>
 
22
  This dataset mainly contains slices of second creation piano music from Genshin Impact game, which have been converted to ABC notations, with a data volume of 305264. The labeling information covers the score structure information related to the style of the game scene where the music is located. This dataset is not only the result of game music extraction, but also provides important training material about note and melodic structure in the field of researching the second creation music generation of Genshin Impact. Through this resource, the researcher can deeply analyze the characteristics of the game music and provide substantial data support for the training and improvement of music generation algorithms.
23
 
24
  ## Viewer
25
+ <https://www.modelscope.cn/datasets/Genius-Society/hoyoMusic/dataPeview>
26
 
27
  ## Usage
28
  ```python
29
  from datasets import load_dataset
30
 
31
+ ds = load_dataset("Genius-Society/hoyoMusic")
32
 
33
  for item in ds["train"]:
34
  print(item)
 
37
  print(item)
38
  ```
39
 
 
 
 
 
 
 
40
  ## Mirror
41
+ <https://www.modelscope.cn/datasets/Genius-Society/hoyoMusic>
42
 
43
  ## Reference
44
  [1] <https://musescore.org><br>
hoyoMusic.py CHANGED
@@ -3,9 +3,7 @@ import json
3
  import random
4
  import datasets
5
 
6
- _HOMEPAGE = (
7
- f"https://www.modelscope.cn/datasets/MuGemSt/{os.path.basename(__file__)[:-3]}"
8
- )
9
 
10
  _URL = f"{_HOMEPAGE}/resolve/master/data/dataset.jsonl"
11
 
 
3
  import random
4
  import datasets
5
 
6
+ _HOMEPAGE = f"https://www.modelscope.cn/datasets/Genius-Society/{os.path.basename(__file__)[:-3]}"
 
 
7
 
8
  _URL = f"{_HOMEPAGE}/resolve/master/data/dataset.jsonl"
9