Skip to main content

A simple ML package for classification and regression

Project description

Introducing InsightfulAI: Public Alpha API for Simplified Machine Learning

We’re thrilled to launch InsightfulAI, a Public Alpha API designed to make classification and regression tasks easier for Python developers and data scientists. This alpha release is available on PyPI, allowing you to quickly install and test it with pip!

InsightfulAI provides a streamlined, intuitive setup that lets you focus on solving problems rather than dealing with complex machine learning code. This is your chance to be an early adopter, giving valuable feedback to shape InsightfulAI's future.


Key Features of the InsightfulAI Alpha API

  • Classification and Regression: Includes ready-to-use logistic regression and random forest models.
  • Retry Logic: Automatically retries failed operations to handle transient errors.
  • Customizable Parameters: Configure hyperparameters like C and solver in logistic regression, or n_estimators and max_depth for random forests.
  • Solver Options: Logistic regression supports popular solvers such as 'lbfgs', 'liblinear', and 'saga', allowing flexibility based on your dataset's size and characteristics.
  • Batch Asynchronous Processing: Perform model training, predictions, and evaluations on batches asynchronously, which is especially useful for handling large datasets or real-time applications.
  • OpenTelemetry Support: Track your model’s training and prediction performance with built-in OpenTelemetry tracing, simplifying monitoring and debugging.

This Public Alpha API provides essential tools to kickstart your machine learning projects and integrate basic monitoring.


How to Install the InsightfulAI Public Alpha API

The alpha release of InsightfulAI is available on PyPI! Install it with the following command:

pip install InsightfulAI

This will install the alpha version of InsightfulAI, allowing you to experiment with its features and provide feedback to help us improve it.


Getting Started with InsightfulAI

Here’s a quick tutorial on using InsightfulAI’s logistic regression model in your projects.

Step 1: Import and Initialize

Import InsightfulAI from the API. Choose your model type (logistic regression or random forest), and initialize with your preferred settings:

from insightful_ai_api import InsightfulAI

# Initialize the API for logistic regression with solver choice
model = InsightfulAI(model_type="logistic_regression", C=1.0, solver='lbfgs')  # Options: 'lbfgs', 'liblinear', 'saga'

Step 2: Prepare Your Data

Load your dataset into numpy arrays or pandas data frames, then split it into training and test sets:

import numpy as np
from sklearn.model_selection import train_test_split

X = np.array([[...], ...])  # Features
y = np.array([...])          # Target

# Split into train and test sets
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)

Step 3: Train the Model

Train your model using the fit method:

model.fit(X_train, y_train)
print("Model training complete!")

Step 4: Batch Asynchronous Predictions

Take advantage of batch asynchronous processing to make predictions on large batches efficiently:

import asyncio

# Async batch prediction
async def async_predictes():
    predictions = await model.async_predict([X_test_batch_1, X_test_batch_2])
    print("Batch Predictions:", predictions)

# Run async batch prediction
asyncio.run(async_predictes())

Step 5: Evaluate Model Performance

Evaluate your model accuracy using the evaluate function:

accuracy = model.evaluate(X_test, y_test)
print(f"Model Accuracy: {accuracy:.2f}")

Monitoring with OpenTelemetry

InsightfulAI includes OpenTelemetry for monitoring and tracking, allowing you to gain insights into your model’s performance and easily debug issues.


Try the InsightfulAI Public Alpha API Today!

This Public Alpha API release is your chance to get hands-on with InsightfulAI and help influence its evolution. Install InsightfulAI from PyPI:

pip install InsightfulAI

Your feedback is essential—dive in, explore the features, and let us know what you think!

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

insightfulai-0.3.0a1.tar.gz (18.8 kB view details)

Uploaded Source

Built Distribution

InsightfulAI-0.3.0a1-py3-none-any.whl (28.0 kB view details)

Uploaded Python 3

File details

Details for the file insightfulai-0.3.0a1.tar.gz.

File metadata

  • Download URL: insightfulai-0.3.0a1.tar.gz
  • Upload date:
  • Size: 18.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.13.0

File hashes

Hashes for insightfulai-0.3.0a1.tar.gz
Algorithm Hash digest
SHA256 935d54d48e5d32e7bc1484a794b5cb7fe4417ff35074862c740e68ac28b6cff1
MD5 56f893ba816458d5705552e516fb28b0
BLAKE2b-256 083e814dd11680f689448b84dfef9f0a39502c137794a8c00b9a350c3448d646

See more details on using hashes here.

File details

Details for the file InsightfulAI-0.3.0a1-py3-none-any.whl.

File metadata

File hashes

Hashes for InsightfulAI-0.3.0a1-py3-none-any.whl
Algorithm Hash digest
SHA256 9e950ec75f7fc8188c96907bc9c345485c41ff1313e15e56efcd03ad9a5dec1d
MD5 089d113fe64225e0cd652eed17518e04
BLAKE2b-256 6e508bf2db7e724817f2ad15d66dd8d39f0d731cab22bf2199d7a68e2f2b9f5a

See more details on using hashes here.

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