miding 3.1.2__tar.gz → 3.1.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- miding-3.1.4/PKG-INFO +57 -0
- miding-3.1.4/README.md +36 -0
- miding-3.1.4/miding.egg-info/PKG-INFO +57 -0
- {miding-3.1.2 → miding-3.1.4}/miding.egg-info/requires.txt +1 -0
- {miding-3.1.2 → miding-3.1.4}/pyproject.toml +9 -6
- miding-3.1.2/PKG-INFO +0 -50
- miding-3.1.2/README.md +0 -30
- miding-3.1.2/miding.egg-info/PKG-INFO +0 -50
- {miding-3.1.2 → miding-3.1.4}/LICENSE.txt +0 -0
- {miding-3.1.2 → miding-3.1.4}/MANIFEST.in +0 -0
- {miding-3.1.2 → miding-3.1.4}/midi-neuronal-generator/model_1751770203_best.keras +0 -0
- {miding-3.1.2 → miding-3.1.4}/midi-neuronal-generator/model_1751770954_best.keras +0 -0
- {miding-3.1.2 → miding-3.1.4}/miding.egg-info/SOURCES.txt +0 -0
- {miding-3.1.2 → miding-3.1.4}/miding.egg-info/dependency_links.txt +0 -0
- {miding-3.1.2 → miding-3.1.4}/miding.egg-info/entry_points.txt +0 -0
- {miding-3.1.2 → miding-3.1.4}/miding.egg-info/top_level.txt +0 -0
- {miding-3.1.2 → miding-3.1.4}/setup.cfg +0 -0
miding-3.1.4/PKG-INFO
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: miding
|
3
|
+
Version: 3.1.4
|
4
|
+
Summary: A generator of midi score based on GRU.
|
5
|
+
Author-email: Jerry_Skywolf <jerryskywolf@outlook.com>
|
6
|
+
License-Expression: GPL-2.0
|
7
|
+
Project-URL: Homepage, https://github.com/JerrySkywolf/miding
|
8
|
+
Project-URL: Issues, https://github.com/JerrySkywolf/miding/issues
|
9
|
+
Project-URL: DOWNLOAD, https://github.com/JerrySkywolf/miding/releases
|
10
|
+
Keywords: midi,miding,neuronal,generate,music,Jerry Skywolf
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
12
|
+
Classifier: Operating System :: OS Independent
|
13
|
+
Classifier: Development Status :: 4 - Beta
|
14
|
+
Requires-Python: >=3.9
|
15
|
+
Description-Content-Type: text/markdown
|
16
|
+
License-File: LICENSE.txt
|
17
|
+
Requires-Dist: keras
|
18
|
+
Requires-Dist: mido
|
19
|
+
Requires-Dist: numpy
|
20
|
+
Dynamic: license-file
|
21
|
+
|
22
|
+
# Miding
|
23
|
+
|
24
|
+
This program names '**miding**', an abbreviation of '**Midi Neuronal Generator**',
|
25
|
+
which aims to generate listenable midi sequences, attempting to create fair scores.
|
26
|
+
|
27
|
+
Sincerely thanks for _**keras**_, the neuronal network model we have applied.
|
28
|
+
In this program, the model construction is two GRU layer and a Dense layer with the activation Softmax.
|
29
|
+
### Download
|
30
|
+
|
31
|
+
Here is our website:
|
32
|
+
* https://github.com/JerrySkywolf/miding
|
33
|
+
|
34
|
+
This package could also be downloaded through PyPi by:
|
35
|
+
|
36
|
+
`pip install miding`
|
37
|
+
|
38
|
+
View at the webpage
|
39
|
+
* https://pypi.org/project/miding
|
40
|
+
|
41
|
+
### How to use the model?
|
42
|
+
|
43
|
+
For example, you could use a random seed:
|
44
|
+
|
45
|
+
``from miding import Predict, Seed, get_seed``
|
46
|
+
|
47
|
+
``Predict(seed=get_seed(), epoch=256, model_version=1751770203)``
|
48
|
+
|
49
|
+
or a defined seed:
|
50
|
+
|
51
|
+
``s = Seed(midi_file='example_seed.mid')``
|
52
|
+
|
53
|
+
``Predict(seed=s.get_seed(),epoch=128, model_version=1751770203)``
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
|
miding-3.1.4/README.md
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
# Miding
|
2
|
+
|
3
|
+
This program names '**miding**', an abbreviation of '**Midi Neuronal Generator**',
|
4
|
+
which aims to generate listenable midi sequences, attempting to create fair scores.
|
5
|
+
|
6
|
+
Sincerely thanks for _**keras**_, the neuronal network model we have applied.
|
7
|
+
In this program, the model construction is two GRU layer and a Dense layer with the activation Softmax.
|
8
|
+
### Download
|
9
|
+
|
10
|
+
Here is our website:
|
11
|
+
* https://github.com/JerrySkywolf/miding
|
12
|
+
|
13
|
+
This package could also be downloaded through PyPi by:
|
14
|
+
|
15
|
+
`pip install miding`
|
16
|
+
|
17
|
+
View at the webpage
|
18
|
+
* https://pypi.org/project/miding
|
19
|
+
|
20
|
+
### How to use the model?
|
21
|
+
|
22
|
+
For example, you could use a random seed:
|
23
|
+
|
24
|
+
``from miding import Predict, Seed, get_seed``
|
25
|
+
|
26
|
+
``Predict(seed=get_seed(), epoch=256, model_version=1751770203)``
|
27
|
+
|
28
|
+
or a defined seed:
|
29
|
+
|
30
|
+
``s = Seed(midi_file='example_seed.mid')``
|
31
|
+
|
32
|
+
``Predict(seed=s.get_seed(),epoch=128, model_version=1751770203)``
|
33
|
+
|
34
|
+
|
35
|
+
|
36
|
+
|
@@ -0,0 +1,57 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: miding
|
3
|
+
Version: 3.1.4
|
4
|
+
Summary: A generator of midi score based on GRU.
|
5
|
+
Author-email: Jerry_Skywolf <jerryskywolf@outlook.com>
|
6
|
+
License-Expression: GPL-2.0
|
7
|
+
Project-URL: Homepage, https://github.com/JerrySkywolf/miding
|
8
|
+
Project-URL: Issues, https://github.com/JerrySkywolf/miding/issues
|
9
|
+
Project-URL: DOWNLOAD, https://github.com/JerrySkywolf/miding/releases
|
10
|
+
Keywords: midi,miding,neuronal,generate,music,Jerry Skywolf
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
12
|
+
Classifier: Operating System :: OS Independent
|
13
|
+
Classifier: Development Status :: 4 - Beta
|
14
|
+
Requires-Python: >=3.9
|
15
|
+
Description-Content-Type: text/markdown
|
16
|
+
License-File: LICENSE.txt
|
17
|
+
Requires-Dist: keras
|
18
|
+
Requires-Dist: mido
|
19
|
+
Requires-Dist: numpy
|
20
|
+
Dynamic: license-file
|
21
|
+
|
22
|
+
# Miding
|
23
|
+
|
24
|
+
This program names '**miding**', an abbreviation of '**Midi Neuronal Generator**',
|
25
|
+
which aims to generate listenable midi sequences, attempting to create fair scores.
|
26
|
+
|
27
|
+
Sincerely thanks for _**keras**_, the neuronal network model we have applied.
|
28
|
+
In this program, the model construction is two GRU layer and a Dense layer with the activation Softmax.
|
29
|
+
### Download
|
30
|
+
|
31
|
+
Here is our website:
|
32
|
+
* https://github.com/JerrySkywolf/miding
|
33
|
+
|
34
|
+
This package could also be downloaded through PyPi by:
|
35
|
+
|
36
|
+
`pip install miding`
|
37
|
+
|
38
|
+
View at the webpage
|
39
|
+
* https://pypi.org/project/miding
|
40
|
+
|
41
|
+
### How to use the model?
|
42
|
+
|
43
|
+
For example, you could use a random seed:
|
44
|
+
|
45
|
+
``from miding import Predict, Seed, get_seed``
|
46
|
+
|
47
|
+
``Predict(seed=get_seed(), epoch=256, model_version=1751770203)``
|
48
|
+
|
49
|
+
or a defined seed:
|
50
|
+
|
51
|
+
``s = Seed(midi_file='example_seed.mid')``
|
52
|
+
|
53
|
+
``Predict(seed=s.get_seed(),epoch=128, model_version=1751770203)``
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "miding"
|
7
|
-
version = "3.1.
|
7
|
+
version = "3.1.4"
|
8
8
|
authors = [
|
9
9
|
{ name="Jerry_Skywolf", email="jerryskywolf@outlook.com" },
|
10
10
|
]
|
@@ -14,26 +14,29 @@ requires-python = ">=3.9"
|
|
14
14
|
classifiers = [
|
15
15
|
"Programming Language :: Python :: 3.11",
|
16
16
|
"Operating System :: OS Independent",
|
17
|
-
"Development Status ::
|
17
|
+
"Development Status :: 4 - Beta",
|
18
18
|
|
19
19
|
]
|
20
|
-
license = "GPL-
|
20
|
+
license = "GPL-2.0"
|
21
21
|
license-files = ["LICEN[CS]E*"]
|
22
22
|
dependencies = [
|
23
23
|
'keras',
|
24
24
|
'mido',
|
25
|
+
'numpy',
|
25
26
|
]
|
26
27
|
keywords = [
|
27
28
|
'midi',
|
29
|
+
'miding',
|
28
30
|
'neuronal',
|
29
31
|
'generate',
|
32
|
+
'music',
|
30
33
|
'Jerry Skywolf',
|
31
34
|
]
|
32
35
|
|
33
36
|
[project.urls]
|
34
|
-
Homepage = "https://github.com/JerrySkywolf/
|
35
|
-
Issues = "https://github.com/JerrySkywolf/
|
36
|
-
DOWNLOAD = "https://github.com/JerrySkywolf/
|
37
|
+
Homepage = "https://github.com/JerrySkywolf/miding"
|
38
|
+
Issues = "https://github.com/JerrySkywolf/miding/issues"
|
39
|
+
DOWNLOAD = "https://github.com/JerrySkywolf/miding/releases"
|
37
40
|
|
38
41
|
[project.entry-points."spam.magical"]
|
39
42
|
tomatoes = "spam:main_tomatoes"
|
miding-3.1.2/PKG-INFO
DELETED
@@ -1,50 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.4
|
2
|
-
Name: miding
|
3
|
-
Version: 3.1.2
|
4
|
-
Summary: A generator of midi score based on GRU.
|
5
|
-
Author-email: Jerry_Skywolf <jerryskywolf@outlook.com>
|
6
|
-
License-Expression: GPL-3.0
|
7
|
-
Project-URL: Homepage, https://github.com/JerrySkywolf/Midi-Neuronal-Generator
|
8
|
-
Project-URL: Issues, https://github.com/JerrySkywolf/Midi-Neuronal-Generator/issues
|
9
|
-
Project-URL: DOWNLOAD, https://github.com/JerrySkywolf/Midi-Neuronal-Generator/releases
|
10
|
-
Keywords: midi,neuronal,generate,Jerry Skywolf
|
11
|
-
Classifier: Programming Language :: Python :: 3.11
|
12
|
-
Classifier: Operating System :: OS Independent
|
13
|
-
Classifier: Development Status :: 3 - Alpha
|
14
|
-
Requires-Python: >=3.9
|
15
|
-
Description-Content-Type: text/markdown
|
16
|
-
License-File: LICENSE.txt
|
17
|
-
Requires-Dist: keras
|
18
|
-
Requires-Dist: mido
|
19
|
-
Dynamic: license-file
|
20
|
-
|
21
|
-
# Midi Neuronal Generator (miding)
|
22
|
-
|
23
|
-
This program aims to generate listenable midi sequences, attempting to create fair scores.
|
24
|
-
|
25
|
-
Sincerely thanks for keras, the neuronal network model we have applied.
|
26
|
-
In this program, we have combined a LSTM layer, a Dense layer with the activation Sigmoid and an Activation of Softmax layer before v3.0.
|
27
|
-
And after v3.1, the construction has been changed into two GRU layer and a Dense layer with the activation Softmax, due to GRU has a faster processing speed than LSTM.
|
28
|
-
|
29
|
-
### Download
|
30
|
-
|
31
|
-
Here is our website: https://github.com/JerrySkywolf/Midi-Neuronal-Generator.
|
32
|
-
This package could also be downloaded through PyPi by:
|
33
|
-
|
34
|
-
`pip install miding`
|
35
|
-
|
36
|
-
View at the webpage
|
37
|
-
* https://pypi.org/project/midi-neuronal-generator
|
38
|
-
* https://pypi.org/project/miding
|
39
|
-
|
40
|
-
### How to use our model?
|
41
|
-
|
42
|
-
For example,
|
43
|
-
|
44
|
-
`from miding import Predict, get_seed`
|
45
|
-
|
46
|
-
`Predict(seed=get_seed(), epoch=256, model_version=1751770203)`
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
miding-3.1.2/README.md
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
# Midi Neuronal Generator (miding)
|
2
|
-
|
3
|
-
This program aims to generate listenable midi sequences, attempting to create fair scores.
|
4
|
-
|
5
|
-
Sincerely thanks for keras, the neuronal network model we have applied.
|
6
|
-
In this program, we have combined a LSTM layer, a Dense layer with the activation Sigmoid and an Activation of Softmax layer before v3.0.
|
7
|
-
And after v3.1, the construction has been changed into two GRU layer and a Dense layer with the activation Softmax, due to GRU has a faster processing speed than LSTM.
|
8
|
-
|
9
|
-
### Download
|
10
|
-
|
11
|
-
Here is our website: https://github.com/JerrySkywolf/Midi-Neuronal-Generator.
|
12
|
-
This package could also be downloaded through PyPi by:
|
13
|
-
|
14
|
-
`pip install miding`
|
15
|
-
|
16
|
-
View at the webpage
|
17
|
-
* https://pypi.org/project/midi-neuronal-generator
|
18
|
-
* https://pypi.org/project/miding
|
19
|
-
|
20
|
-
### How to use our model?
|
21
|
-
|
22
|
-
For example,
|
23
|
-
|
24
|
-
`from miding import Predict, get_seed`
|
25
|
-
|
26
|
-
`Predict(seed=get_seed(), epoch=256, model_version=1751770203)`
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
@@ -1,50 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.4
|
2
|
-
Name: miding
|
3
|
-
Version: 3.1.2
|
4
|
-
Summary: A generator of midi score based on GRU.
|
5
|
-
Author-email: Jerry_Skywolf <jerryskywolf@outlook.com>
|
6
|
-
License-Expression: GPL-3.0
|
7
|
-
Project-URL: Homepage, https://github.com/JerrySkywolf/Midi-Neuronal-Generator
|
8
|
-
Project-URL: Issues, https://github.com/JerrySkywolf/Midi-Neuronal-Generator/issues
|
9
|
-
Project-URL: DOWNLOAD, https://github.com/JerrySkywolf/Midi-Neuronal-Generator/releases
|
10
|
-
Keywords: midi,neuronal,generate,Jerry Skywolf
|
11
|
-
Classifier: Programming Language :: Python :: 3.11
|
12
|
-
Classifier: Operating System :: OS Independent
|
13
|
-
Classifier: Development Status :: 3 - Alpha
|
14
|
-
Requires-Python: >=3.9
|
15
|
-
Description-Content-Type: text/markdown
|
16
|
-
License-File: LICENSE.txt
|
17
|
-
Requires-Dist: keras
|
18
|
-
Requires-Dist: mido
|
19
|
-
Dynamic: license-file
|
20
|
-
|
21
|
-
# Midi Neuronal Generator (miding)
|
22
|
-
|
23
|
-
This program aims to generate listenable midi sequences, attempting to create fair scores.
|
24
|
-
|
25
|
-
Sincerely thanks for keras, the neuronal network model we have applied.
|
26
|
-
In this program, we have combined a LSTM layer, a Dense layer with the activation Sigmoid and an Activation of Softmax layer before v3.0.
|
27
|
-
And after v3.1, the construction has been changed into two GRU layer and a Dense layer with the activation Softmax, due to GRU has a faster processing speed than LSTM.
|
28
|
-
|
29
|
-
### Download
|
30
|
-
|
31
|
-
Here is our website: https://github.com/JerrySkywolf/Midi-Neuronal-Generator.
|
32
|
-
This package could also be downloaded through PyPi by:
|
33
|
-
|
34
|
-
`pip install miding`
|
35
|
-
|
36
|
-
View at the webpage
|
37
|
-
* https://pypi.org/project/midi-neuronal-generator
|
38
|
-
* https://pypi.org/project/miding
|
39
|
-
|
40
|
-
### How to use our model?
|
41
|
-
|
42
|
-
For example,
|
43
|
-
|
44
|
-
`from miding import Predict, get_seed`
|
45
|
-
|
46
|
-
`Predict(seed=get_seed(), epoch=256, model_version=1751770203)`
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|