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.1.0.tar.gz
(552.3 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.1.0.tar.gz.
File metadata
- Download URL: ann_practicals-1.1.0.tar.gz
- Upload date:
- Size: 552.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e13e4dd05d83ecfaae6c45a142e55c4b2b3ee233932d2fd9f48e1a42f80387c
|
|
| MD5 |
12a51d22879c080449e7fc41580ba091
|
|
| BLAKE2b-256 |
56b175ad1e8f3d805fe15c33642b528795fa5afd7298b74e43da2d370c369c00
|
File details
Details for the file ann_practicals-1.1.0-py3-none-any.whl.
File metadata
- Download URL: ann_practicals-1.1.0-py3-none-any.whl
- Upload date:
- Size: 21.5 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 |
fab601254d910c68379e09f4896c2746ad2a3432e8bdb8c0f23141a0711efce0
|
|
| MD5 |
84a631c3f4c5057021aaa7e0acd79552
|
|
| BLAKE2b-256 |
3f6f97a0402fb9ec09234dc6730578b61ed2eb9427ff4d777726e57cd7a7c4fa
|