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.3.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.3.tar.gz.
File metadata
- Download URL: pymathnn-0.1.3.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 |
c484d91dcba5839f64cc9a4b400bba3433dd21b79338843647cdc12bb0f965b0
|
|
| MD5 |
869bf4683fb306c58a529837aec95f53
|
|
| BLAKE2b-256 |
514525aaf983e82700d326842a5464ec6808ad2432271abd4746baecaf541f80
|
File details
Details for the file pymathnn-0.1.3-py3-none-any.whl.
File metadata
- Download URL: pymathnn-0.1.3-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 |
be644b8b03124e3a26af9b373844bb28853858f09a45cb2492734b44eed69d36
|
|
| MD5 |
0f70a13ccb9ca5be0162933b26f2e04f
|
|
| BLAKE2b-256 |
a654d5742f9d3fdbae3d43b1ee5b181e9df69cbe081948155d94c7980b028bf1
|