Datasets:
projectlosangeles
commited on
Upload 14 files
Browse files- Monster-MIDI-Dataset-main.zip +1 -1
- TMIDIX.py +14 -17
- fluidsynth-master.zip +2 -2
- tegridy-tools-main.zip +2 -2
Monster-MIDI-Dataset-main.zip
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 5831444
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ebc1a1d91442f42449ba65b43aa7f8b66c5deafa0bcaddaf6e34d6d1ffb28cc0
|
3 |
size 5831444
|
TMIDIX.py
CHANGED
@@ -9762,7 +9762,6 @@ def escore_notes_to_text_description(escore_notes,
|
|
9762 |
|
9763 |
description += 'This ' + mood + ' melody has '
|
9764 |
|
9765 |
-
|
9766 |
else:
|
9767 |
description += 'TThis drum track has '
|
9768 |
|
@@ -9776,19 +9775,17 @@ def escore_notes_to_text_description(escore_notes,
|
|
9776 |
if instruments:
|
9777 |
|
9778 |
if comp_type not in ['monophonic melody', 'drum track']:
|
|
|
9779 |
description += 'The song '
|
9780 |
|
9781 |
-
|
9782 |
-
description += 'The melody '
|
9783 |
-
|
9784 |
-
if len(instruments) == 1:
|
9785 |
-
description += 'is played on a solo ' + instruments[0] + '.'
|
9786 |
|
9787 |
-
|
9788 |
-
|
9789 |
-
|
9790 |
-
|
9791 |
-
|
|
|
9792 |
|
9793 |
description += '\n'
|
9794 |
|
@@ -9829,7 +9826,7 @@ def escore_notes_to_text_description(escore_notes,
|
|
9829 |
description += 'The song has ' + NUMERALS[len(lead_melodies)-1] + ' distinct lead ' + mword + ' played on '
|
9830 |
|
9831 |
if len(lead_melodies) > 1:
|
9832 |
-
description += ', '.join(lead_melodies[:-1]
|
9833 |
|
9834 |
else:
|
9835 |
description += lead_melodies[0][0] + '.'
|
@@ -9847,7 +9844,7 @@ def escore_notes_to_text_description(escore_notes,
|
|
9847 |
description += 'The song has ' + NUMERALS[len(base_melodies)-1] + ' distinct base ' + mword + ' played on '
|
9848 |
|
9849 |
if len(base_melodies) > 1:
|
9850 |
-
description += ', '.join(base_melodies[:-1]
|
9851 |
|
9852 |
else:
|
9853 |
description += base_melodies[0][0] + '.'
|
@@ -9865,7 +9862,7 @@ def escore_notes_to_text_description(escore_notes,
|
|
9865 |
description += 'The song has ' + NUMERALS[len(lead_melodies)-1] + ' distinct lead ' + lmword + ' played on '
|
9866 |
|
9867 |
if len(lead_melodies) > 1:
|
9868 |
-
description += ', '.join(lead_melodies[:-1]
|
9869 |
|
9870 |
else:
|
9871 |
description += lead_melodies[0][0] + '.'
|
@@ -9879,7 +9876,7 @@ def escore_notes_to_text_description(escore_notes,
|
|
9879 |
description += ' And ' + NUMERALS[len(base_melodies)-1] + ' distinct base ' + bmword + ' played on '
|
9880 |
|
9881 |
if len(base_melodies) > 1:
|
9882 |
-
description += ', '.join(base_melodies[:-1]
|
9883 |
|
9884 |
else:
|
9885 |
description += base_melodies[0][0] + '.'
|
@@ -11048,7 +11045,7 @@ LEAD_INSTRUMENTS = [0, 1, 2, 3, 4, 5, 6, 7, # Piano
|
|
11048 |
8, 9, 10, 11, 12, 13, 14, 15, # Chromatic Percussion
|
11049 |
16, 17, 18, 19, 20, 21, 22, 23, # Organ
|
11050 |
24, 25, 26, 27, 28, 29, 30, 31, # Guitar
|
11051 |
-
40, 41, # Strings
|
11052 |
52, 53, 54, # Ensemble
|
11053 |
56, 57, 59, 60, # Brass
|
11054 |
64, 65, 66, 67, 68, 69, 70, 71, # Reed
|
@@ -11095,4 +11092,4 @@ def escore_notes_pitches_range(escore_notes,
|
|
11095 |
#
|
11096 |
# This is the end of the TMIDI X Python module
|
11097 |
#
|
11098 |
-
###################################################################################
|
|
|
9762 |
|
9763 |
description += 'This ' + mood + ' melody has '
|
9764 |
|
|
|
9765 |
else:
|
9766 |
description += 'TThis drum track has '
|
9767 |
|
|
|
9775 |
if instruments:
|
9776 |
|
9777 |
if comp_type not in ['monophonic melody', 'drum track']:
|
9778 |
+
|
9779 |
description += 'The song '
|
9780 |
|
9781 |
+
if len(instruments) > 1:
|
|
|
|
|
|
|
|
|
9782 |
|
9783 |
+
description += 'features ' + NUMERALS[max(0, min(15, len(instruments)-1))] + ' instruments: '
|
9784 |
+
description += ', '.join(instruments[:-1]) + ' and ' + instruments[-1] + '.'
|
9785 |
+
|
9786 |
+
else:
|
9787 |
+
description += 'features one instrument: ' + instruments[0] + '.'
|
9788 |
+
|
9789 |
|
9790 |
description += '\n'
|
9791 |
|
|
|
9826 |
description += 'The song has ' + NUMERALS[len(lead_melodies)-1] + ' distinct lead ' + mword + ' played on '
|
9827 |
|
9828 |
if len(lead_melodies) > 1:
|
9829 |
+
description += ', '.join([l[0] for l in lead_melodies[:-1]]) + ' and ' + lead_melodies[-1][0] + '.'
|
9830 |
|
9831 |
else:
|
9832 |
description += lead_melodies[0][0] + '.'
|
|
|
9844 |
description += 'The song has ' + NUMERALS[len(base_melodies)-1] + ' distinct base ' + mword + ' played on '
|
9845 |
|
9846 |
if len(base_melodies) > 1:
|
9847 |
+
description += ', '.join([b[0] for b in base_melodies[:-1]]) + ' and ' + base_melodies[-1][0] + '.'
|
9848 |
|
9849 |
else:
|
9850 |
description += base_melodies[0][0] + '.'
|
|
|
9862 |
description += 'The song has ' + NUMERALS[len(lead_melodies)-1] + ' distinct lead ' + lmword + ' played on '
|
9863 |
|
9864 |
if len(lead_melodies) > 1:
|
9865 |
+
description += ', '.join([l[0] for l in lead_melodies[:-1]]) + ' and ' + lead_melodies[-1][0] + '.'
|
9866 |
|
9867 |
else:
|
9868 |
description += lead_melodies[0][0] + '.'
|
|
|
9876 |
description += ' And ' + NUMERALS[len(base_melodies)-1] + ' distinct base ' + bmword + ' played on '
|
9877 |
|
9878 |
if len(base_melodies) > 1:
|
9879 |
+
description += ', '.join([b[0] for b in base_melodies[:-1]]) + ' and ' + base_melodies[-1][0] + '.'
|
9880 |
|
9881 |
else:
|
9882 |
description += base_melodies[0][0] + '.'
|
|
|
11045 |
8, 9, 10, 11, 12, 13, 14, 15, # Chromatic Percussion
|
11046 |
16, 17, 18, 19, 20, 21, 22, 23, # Organ
|
11047 |
24, 25, 26, 27, 28, 29, 30, 31, # Guitar
|
11048 |
+
40, 41, 46, # Strings
|
11049 |
52, 53, 54, # Ensemble
|
11050 |
56, 57, 59, 60, # Brass
|
11051 |
64, 65, 66, 67, 68, 69, 70, 71, # Reed
|
|
|
11092 |
#
|
11093 |
# This is the end of the TMIDI X Python module
|
11094 |
#
|
11095 |
+
###################################################################################
|
fluidsynth-master.zip
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3df6cfb54c07db465ec9341f672f964deee2c6b089f69b60e138c305a812dd5d
|
3 |
+
size 1969176
|
tegridy-tools-main.zip
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9c04cd7a925066cec4172cb6a6b54c8d534d924649bb08afa493abbd38c14393
|
3 |
+
size 108927309
|