Python module for mathematical operations, matrix manipulations and neural network utilities using NumPy
Project description
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)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pymathnn-0.2.3.tar.gz
(7.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pymathnn-0.2.3.tar.gz.
File metadata
- Download URL: pymathnn-0.2.3.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b96f3c18013e58f93cdf3b3bb17f20801e4a90cb586ae06aabbef65a22a3f178
|
|
| MD5 |
0f9170c3beab89ea986630553d7ffb02
|
|
| BLAKE2b-256 |
beeda3c14dfca28d72c80420763ff4343b03033dc261956ab236b70b4c225ecc
|
File details
Details for the file pymathnn-0.2.3-py3-none-any.whl.
File metadata
- Download URL: pymathnn-0.2.3-py3-none-any.whl
- Upload date:
- Size: 9.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9fed18d47191a62916a84d5599847b5d70a501c913981700a4ae99dc676ec1ac
|
|
| MD5 |
bb9caf0e303e5963cac14bbad16e47ea
|
|
| BLAKE2b-256 |
0207332f6f9ab6b966218156d5d79651c9ee2c577da06e66ee1cef7da1a15506
|