miding 3.1.2__py3-none-any.whl → 3.1.4__py3-none-any.whl

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.
@@ -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
+
@@ -0,0 +1,6 @@
1
+ miding-3.1.4.dist-info/licenses/LICENSE.txt,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
2
+ miding-3.1.4.dist-info/METADATA,sha256=ZQAD-jRaDaWOa7QStUXLZVj0S5XROy5Yr288sMmNQ9g,1706
3
+ miding-3.1.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
4
+ miding-3.1.4.dist-info/entry_points.txt,sha256=x20XsdgK_5BjEIaoggcmSR1xFLBdrvcQSi6oI3f9f7w,45
5
+ miding-3.1.4.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
6
+ miding-3.1.4.dist-info/RECORD,,
@@ -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
-
@@ -1,6 +0,0 @@
1
- miding-3.1.2.dist-info/licenses/LICENSE.txt,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
2
- miding-3.1.2.dist-info/METADATA,sha256=5kpHk4CcViMrZLNCVTVNsqbFCtnNeQFmoHuI5C5o4dI,1758
3
- miding-3.1.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
4
- miding-3.1.2.dist-info/entry_points.txt,sha256=x20XsdgK_5BjEIaoggcmSR1xFLBdrvcQSi6oI3f9f7w,45
5
- miding-3.1.2.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
6
- miding-3.1.2.dist-info/RECORD,,
File without changes