Retrieve ANN practical assignment codes by number (13 assignments)
Project description
ann-practicals
A zero-dependency Python package to retrieve ANN (Artificial Neural Network) practical assignment codes and titles by number.
Installation
pip install ann-practicals
Usage
from ann_practicals import get_code, get_title, get_assignment, list_assignments
# List all 13 assignments
for n, title in list_assignments():
print(n, title)
# Get title for assignment 1
print(get_title(1))
# → "Plot activation functions (Sigmoid, ReLU, Tanh) using a Neuron class"
# Get code for assignment 2
print(get_code(2))
# Get both title and code as a dict
a = get_assignment(3)
print(a["title"])
print(a["code"])
Assignments
| # | Title |
|---|---|
| 1 | Plot activation functions (Sigmoid, ReLU, Tanh) using a Neuron class |
| 2 | Generate ANDNOT function using McCulloch-Pitts neural net |
| 3 | Perceptron Neural Network to recognise even and odd numbers (ASCII 0-9) |
| 4 | Perceptron learning law with decision regions (graphical) |
| 5 | ANN training process using Forward Propagation and Back Propagation |
| 6 | Neural network from scratch for multi-class classification (Iris dataset, ReLU) |
| 7 | Back Propagation Network for XOR function with Binary Input and Output |
| 8 | ART (Adaptive Resonance Theory) neural network |
| 9 | Back Propagation Feedforward neural network (XOR) |
| 10 | Hopfield Network storing 4 vectors |
| 11 | Train a Neural Network with TensorFlow and evaluate logistic regression |
| 12 | PyTorch implementation of CNN on MNIST |
| 13 | MNIST Handwritten Character Detection using PyTorch |
License
MIT
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
ann_practicals-1.2.0.tar.gz
(555.4 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 ann_practicals-1.2.0.tar.gz.
File metadata
- Download URL: ann_practicals-1.2.0.tar.gz
- Upload date:
- Size: 555.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a34e6a089b7e8b9bbd0674e8b853a6129f7f2ac8a603c4b61d40f00321eb12e3
|
|
| MD5 |
da6b317cbde0536051e53246626700c7
|
|
| BLAKE2b-256 |
23259addcd39af1266652690e60ad31d782ca718a582a3392e1a63306fd3f1f0
|
File details
Details for the file ann_practicals-1.2.0-py3-none-any.whl.
File metadata
- Download URL: ann_practicals-1.2.0-py3-none-any.whl
- Upload date:
- Size: 23.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df5c4291723dcefab626fb07bdaedab9ba6ee2427380c0fd091576dab9658e19
|
|
| MD5 |
98c603eb0ff8bf7c2c973e3076d01e97
|
|
| BLAKE2b-256 |
8cd0423b6289cab9f75e895e9a5d92213e6d387a842dc1695cec6a147a487e66
|