Installation
pip install pymathnn
Utilization
Simple examples of user:
from pymathnn import Matrix
m1 = Matrix((3, 3), init='random')
m2 = Matrix((3, 3), init='uniform')
# Sum matrix
m3 = m1.add(m2)
# Product With Scalar
m4 = m1.multiply(2.5)
# Matrix Traspose
mt = m1.transpose()
# Statistics
print(m1.mean())
print(m1.norm())
m1.summary()
# Activation
m1 = Matrix((4,4))
print(m1)
m1.activation('relu')
print(m1)
Release files for pymathnn 0.2.9
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pymathnn-0.2.9.tar.gz | 9.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| pymathnn-0.2.9-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 21.1 kB
Release files / pymathnn-0.2.9.tar.gz
| Download URL | pymathnn-0.2.9.tar.gz |
|---|---|
| Size | 9.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
304cae03062d179c275737a74c72a381d4d026c277a5f7f730091e7f48a6b76e
|
|
BLAKE2b-256 checksum How to use checksums |
e29b3321697bc0618d39335267b377da547f47619b688a248f4cc67301b46b24
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.11.2
|
Release files / pymathnn-0.2.9-py3-none-any.whl
| Download URL | pymathnn-0.2.9-py3-none-any.whl |
|---|---|
| Size | 11.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
c69a398fb10a8673de2bd8ddcc1afbe8d187c7adceb77aea468d880021b5bfda
|
|
BLAKE2b-256 checksum How to use checksums |
84c899ca4f2d5b8b1c6f027c332f0a2d0a236d4ae5acbd637cfb413dc1764b53
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.11.2
|