Skip to main content

INSANELY SIMPLE AI/ML FRAMEWORK

Project description

froog unit test badge

froog the frog
FROOG: fast real-time optimization of gradients
a beautifully compact machine-learning library
homepage | documentation | pip

FROOG is a SUPER SIMPLE machine learning framework with the goal of creating tools with AI --> easily and efficiently.

Installation

pip install froog

Overview of Features

Sneak Peek

from froog.tensor import Tensor
from froog.utils import Linear
import froog.optim as optim

class mnistMLP:
  def __init__(self):
    self.l1 = Tensor(Linear(784, 128))
    self.l2 = Tensor(Linear(128, 10))

  def forward(self, x):
    return x.dot(self.l1).relu().dot(self.l2).logsoftmax()

model = mnistMLP()
optim = optim.SGD([model.l1, model.l2], lr=0.001)

Bounties

THERES LOT OF STUFF TO WORK ON! VISIT THE BOUNTY SHOP

Pull requests will be merged if they:

  • increase simplicity
  • increase functionality
  • increase efficiency

more info on contributing

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

froog-0.2.2.tar.gz (18.6 kB view hashes)

Uploaded Source

Built Distribution

froog-0.2.2-py3-none-any.whl (24.4 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