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.1.6.tar.gz
(5.1 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.6.tar.gz.
File metadata
- Download URL: pymathnn-0.1.6.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1820d6cdfec4d3d9342dfd2f5d263384c935aaf589f664c0b1366c6114a04994
|
|
| MD5 |
009fcc77bfb09082986b9fea7d035a58
|
|
| BLAKE2b-256 |
d1cec8b1bc254999902ff0c0fb7a97ee3e0fd9cc51d553449af5dbe8bc16560d
|
File details
Details for the file pymathnn-0.1.6-py3-none-any.whl.
File metadata
- Download URL: pymathnn-0.1.6-py3-none-any.whl
- Upload date:
- Size: 5.7 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 |
23b9fe5d91596c44731a8e8b030e431a4440432635b05c19aefac67a64781497
|
|
| MD5 |
a31bb43ba1791cf2dc546525ed651381
|
|
| BLAKE2b-256 |
ddbb96ec7d8bb95e3d2865ecd25d7de26128e8d3c4181729f0c18904b41c791a
|