Skip to content

nguyenpanda/florentino

Repository files navigation

🤺florentino🤺


License: Apache 2.0 PyPI - Version PyPI - Python Version

  • 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!
  1. Machine Learning Model

    • Linear Model florentino.linear_model
      • Linear regression LinearRegression
  2. Deep Learning Model

    • Neural Network florentino.nn
      • Fully connected layer Dense
      • Softmax Softmax
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


About

I am obsessed with coding from scratch, so I only use Numpy for implementing this AI package.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published