Skip to main content

An easy-to-use python framework to make Machine Learning AIs quickly.

Project description

Neuralite: A Lightweight AI Framework 💡

Build, deploy, and scale your AI projects with Neuralite! Whether you're a seasoned AI developer or just dipping your toes into the world of artificial intelligence, Neuralite offers you a convenient and efficient way to implement AI features into your software.

Table of Contents

  1. Getting Started

  2. Basic Chatbot

  3. Compiling Your Model

  4. Loading a Compiled Model

  5. License

Getting Started

To get started, you only need to install Neuralite with PIP:

pip install Neuralite

Basic Chatbot

from neuralite.interpreter import ai



assistant = ai('dataset.json')

cycle_end = False



while not cycle_end:

    message = input("Enter a message: ")

    if message.lower() == "stop":

        cycle_end = True

    else:

        print(assistant.process_input(message))

Compiling Your Model 📦

To make your dataset unreadable and to package it into a neat file.

from neuralite.interpreter import ai



assistant = ai('dataset.json')

assistant.compile('model.nlite')

Loading a Compiled Model 🔓

To make your dataset unreadable and to package it into a neat file.

from neuralite.interpreter import ai



# To load a compiled model

assistant = ai.compiled('model.nlite')



cycle_end = False

while not cycle_end:

    message = input("Enter a message: ")

    if message.lower() == "stop":

        cycle_end = True

    else:

        print(assistant.process_input(message))

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

neuralite-0.0.1.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

neuralite-0.0.1-py3-none-any.whl (3.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