I am obsessed with coding from scratch, so I only use Numpy for implementing this AI package.
Project description
🤺florentino🤺
- Have you ever felt horny implementing AI models from scratch using only Numpy? No?
How to Install
Installing the necessary libraries:
pip install -r requirements.txt
Available models
Click to expand!
-
Machine Learning Model
- Linear Model
florentino.linear_model
- Linear regression
LinearRegression
- Linear regression
- Linear Model
-
Deep Learning Model
- Neural Network
florentino.nn
- Fully connected layer
Dense
- Softmax
Softmax
- Fully connected layer
- Neural Network
Run the following code to view all available models
python -c "
import florentino as flo
yellow, magenta, reset = '\033[1;93m', '\033[1;95m', '\033[0m'
header = ' All modules in florentino '
print(yellow + f'{header:=^50}' + reset)
for submodule in flo.__all__:
exec(f'from florentino import {submodule} as submodule')
print(magenta + submodule.__name__ + reset)
for class_name in submodule.__all__:
print(f'\\t - {class_name}')
del submodule
print(yellow + 50 * '=' + reset)
"
License
This project is licensed under the Apache Software License.
Contact
- nguyenpanda: hatuongnguyen0107@gmail.com
- restingkiwi: khoana2003@gmail.com
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
florentino-0.0.0.1.tar.gz
(14.7 kB
view details)
Built Distribution
File details
Details for the file florentino-0.0.0.1.tar.gz
.
File metadata
- Download URL: florentino-0.0.0.1.tar.gz
- Upload date:
- Size: 14.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 059751cef2c93fc2979d159bfbb4e8abf2caa65fbdd4fbb753c1b3a2a2e230db |
|
MD5 | f8b949a522a6983e8a38318d46977c78 |
|
BLAKE2b-256 | 8444b7af30de00a4802d243949824735f30dd7df95e8f95e686dc442d305df3a |
File details
Details for the file florentino-0.0.0.1-py3-none-any.whl
.
File metadata
- Download URL: florentino-0.0.0.1-py3-none-any.whl
- Upload date:
- Size: 16.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | be3a074ecfd308d92fd17bb88c9dddbba2ca54c3a32747a55970d53b856c286c |
|
MD5 | a648169136126441a3e81a73c5b52964 |
|
BLAKE2b-256 | 8f076689f00fed74762c007c3362636087c0ecc9f432fc7e4ac6fbe29ce27aa4 |