Python module for mathematical operations, matrix manipulations and neural network utilities using NumPy
Project description
Installation
pip install py_math
Utilization
Simple examples of user:
from py_math 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.1.0.tar.gz
(4.9 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.1.0.tar.gz.
File metadata
- Download URL: pymathnn-0.1.0.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f0a2ead76d8bdec3655c62dac92bb84289c27facf3a0251cfca22e26f427928
|
|
| MD5 |
8d80c17b7a17115578cdc041dc2bbbe5
|
|
| BLAKE2b-256 |
a6e9aa5e96f68218cdf3e25d5a2bb36c984515b9cbf0f7c693d1a22e0015ad24
|
File details
Details for the file pymathnn-0.1.0-py3-none-any.whl.
File metadata
- Download URL: pymathnn-0.1.0-py3-none-any.whl
- Upload date:
- Size: 5.5 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 |
a394abe2acabb6641ec5760b32143fcb878351a542e56de3a018d83d89911789
|
|
| MD5 |
bd94305f8828ca02f5e89a00796c5ccc
|
|
| BLAKE2b-256 |
89f45f059309160e2d114200f291b3a059ac5bc1ead78a2dc73eb51f4a019942
|