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.6.tar.gz
(7.5 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.6.tar.gz.
File metadata
- Download URL: pymathnn-0.2.6.tar.gz
- Upload date:
- Size: 7.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad834e1b214ea7fbd0eb2c607209b430b5ff4e533e1462110775e38304a5ffcc
|
|
| MD5 |
9341ae54796a601008e20c97e8bec519
|
|
| BLAKE2b-256 |
29242b1804431efddc65715a0734baa4bcf3054e4bde4df8002f1b89a3f921e8
|
File details
Details for the file pymathnn-0.2.6-py3-none-any.whl.
File metadata
- Download URL: pymathnn-0.2.6-py3-none-any.whl
- Upload date:
- Size: 9.1 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 |
a756ca6570b0a8fb701fcb3dac63578b9b7def8fd1fb047a2d585e3c283323eb
|
|
| MD5 |
6b0c1f013eb53c41c07e1820c5a1ad05
|
|
| BLAKE2b-256 |
ad3ce7285e483ccca3543b1cd67754e8a5c9fe5af8710bef6be9c5ff79677853
|