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.2.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.2.tar.gz.
File metadata
- Download URL: pymathnn-0.2.2.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 |
b18b4337432eb12dc9059914d5379205ef140a47c516c8aae735b00ba015c705
|
|
| MD5 |
31f7ac332fdc19eab63f43cee54a6716
|
|
| BLAKE2b-256 |
18b04a37d35963f8740a6a6b9ded529eebc6503229585feeec44ced848ecb5f0
|
File details
Details for the file pymathnn-0.2.2-py3-none-any.whl.
File metadata
- Download URL: pymathnn-0.2.2-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 |
c8bbfa035cdd6eeda5d8524f61ee7fdea4f6c3fcd7579e9cf3c64327e40cdfaf
|
|
| MD5 |
5d0ddb551b30511bc7de4765761a1408
|
|
| BLAKE2b-256 |
60e84df3957becaace348fc76c7dd8aec5e83fb63f5ec4cf1ab67b4ba14fef15
|