🏠Overview

PigeonsAI is a training and deployment platform for context aware neural networks.

Context-aware neural networks improve traditional models by incorporating contextual information such as time, sequences, location, image and text description, enabling more accurate predictions in various applications.

Core concepts:

  • Data Source Integration: Connect to various data sources to easily pull real live training data to keep models up to date.

  • Model Training: Training models on GPU instances based on the pulled data.

  • Model Deployment: Elastic deployment and scaling post training for inference and testing.

Installing SDK

pip install pigeonsai

Obtaining API Key

Before you can start using the PigeonsAI library, you need an API key. Follow these steps to obtain your API key:

  1. Visit the PigeonsAI API Keys page at PigeonsAI API Keys.

  2. Once logged in, navigate to the API keys section.

  3. Click on the "Create new API key" button to create a new API key and copy the generated API key.

Initialization

With the API key, you can initialize the PigeonsAI client. Here's how to set it up in your Python environment:

from pigeonsai import PigeonsAI

# Replace 'your_api_key' with the API key you obtained from the PigeonsAI UI.
client = PigeonsAI(api_key='your_api_key')

Last updated