Skip to main content

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

Project description

🤺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


Project details


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 hashes)

Uploaded Source

Built Distribution

florentino-0.0.0.1-py3-none-any.whl (16.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page