- Have you ever felt horny implementing AI models from scratch using only Numpy? No?
Installing the necessary libraries:
pip install -r requirements.txt
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)
"
This project is licensed under the Apache Software License.
- nguyenpanda: [email protected]
- restingkiwi: [email protected]