A package for simple machine learning (AI)
Project description
This is neural network training library ####################################### Examples: #######################################
Example 1 - N+1
####################################### import neuralcat import numpy as np
inputs=np.array([[1],[2]]) outputs=np.array([[2],[3]]) model=neuralcat.Model() model.add(neuralcat.layers.MRELU(16)) model.train(inputs, outputs, True,optim=neuralcat.optimize.Adam(0.01), loss=neuralcat.losses.MSE(),epochs=500,logging=False) pred=model(np.array([[1]]])) answer='' for i in pred: answer=i[0] print(answer) #######################################
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
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 neuralcat_redcatteam-1.0.2.tar.gz.
File metadata
- Download URL: neuralcat_redcatteam-1.0.2.tar.gz
- Upload date:
- Size: 8.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c05e8c88454a9c219ff89ef7c74506600acb0e9027bea81093d6664a6a9e500
|
|
| MD5 |
911985ed89ec33e2b2fceb47e5635219
|
|
| BLAKE2b-256 |
b138214a652097d9290aab8e3a4b1d90a406a3cc8c588ec5c5cfc0a511413b0a
|
File details
Details for the file neuralcat_RedCatTeam-1.0.2-py3-none-any.whl.
File metadata
- Download URL: neuralcat_RedCatTeam-1.0.2-py3-none-any.whl
- Upload date:
- Size: 11.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17ad11196ec5633f4416b9d89c2f639386da4ea221c03335fe2212c39baa1b8b
|
|
| MD5 |
e9f00a22a74d24bfac25c53174ae1981
|
|
| BLAKE2b-256 |
30f20ca643d387a7546b121225c249cdca459a44bfb5365f7b1fc09277efe0b4
|