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.8.tar.gz
(7.8 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.8.tar.gz.
File metadata
- Download URL: pymathnn-0.2.8.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd259d515ab9f72d6aefec89f94a32bb9568ef4a021f44928d3212a299aa77bb
|
|
| MD5 |
137a4ea209d18caf9cfe6312a4efa0cb
|
|
| BLAKE2b-256 |
6a1fdf6b5cb7647d8e9dd244efb3efd4d4d42b0a80c6a3aee060116e5731837a
|
File details
Details for the file pymathnn-0.2.8-py3-none-any.whl.
File metadata
- Download URL: pymathnn-0.2.8-py3-none-any.whl
- Upload date:
- Size: 9.4 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 |
69d2255b0403ebffd1b7581c37cad09e4e7b067343efcd8bc7ad1b2b0668e2a7
|
|
| MD5 |
c21104bbd2b7d86d87418c0f5969c83d
|
|
| BLAKE2b-256 |
c55165cd0d229b2faea4a2aff13d008e6ae815a22cbd608a750c186b9b5dadcc
|