spiceai / spiceai
- суббота, 11 сентября 2021 г. в 00:30:34
Time series AI for developers
Spice.ai is an open source, portable runtime for training and using deep learning on time series data.
The vision for Spice.ai is to make creating intelligent applications as easy as building a modern website. Spice.ai brings AI development to your editor, in any language or framework with a fast, iterative, inner development loop, with continuous-integration (CI) and continuous-deployment (CD) workflows.
Spice.ai is written in Golang and Python and runs as a container or microservice with applications calling a simple HTTP API. It's deployable to any public cloud, on-premises, and edge.
The Spice.ai runtime also includes a library of community-driven data components for streaming and processing time series data, enabling developers to quickly and easily combine data with learning to create intelligent models.
Modern developers also build with the community by leveraging registries such as npm, NuGet, and pip. The registry for sharing and using Spice.ai packages is spicerack.org. As the community shares more and more AI building blocks, developers can quickly build intelligence into their applications, initially with definitions of AI projects and eventually by sharing and reusing fully-trained models.
Spice.ai and spicerack.org are both pre-release, early, alpha software. Spice.ai v0.1-alpha has many gaps, including limited deep learning algorithms and training scale, streaming data, simulated environments, and offline learning modes. Packages aren't searchable or even listed on spicerack.org yet.
Our intention with this preview is to work with developers early to co-define and co-develop the developer experience, aligning to the goal of making AI easy for developers.
We greatly appreciate and value your feedback. Please feel free to file an issue and get in touch with the team through Discord or by sending us mail at team@spiceai.io.
Thank you for sharing this journey with us!
First,
Then, follow this guide to get started quickly with Spice.ai. For a more comprehensive getting started guide, see the full online documentation.
Step 1. Install Docker: While self-hosting on baremetal hardware will be supported, the Developer Preview currently requires Docker. To install Docker, please follow these instructions.
Step 2. Install the Spice CLI: Run the following curl
command in your terminal.
curl https://install.spiceai.org | /bin/bash
You may need to restart your terminal for the spice
command to be added to your PATH.
The recommended way to get started with Spice.ai is to use GitHub Codespaces.
Create a new GitHub Codespace in the spiceai/quickstarts
repo at github.com/spiceai/quickstarts/codespaces.
Once you open the Codespace, Spice.ai and everything you need to get started will already be installed. Continue on to train your first pod.
A Spice.ai Pod is simply a collection of configuration and data that is used to train and deploy your own AI.
We will add intelligence to a sample application, ServerOps, by creating and training a Spice.ai pod that offers recommendations to the application for different server operations, such as performing server maintenance.
If you are using GitHub Codespaces, skip Step 1. and continue with Step 2., as the repository will already be cloned.
Step 1. Clone the Spice.ai quickstarts repository:
cd $HOME
git clone https://github.com/spiceai/quickstarts
cd quickstarts/serverops
Step 2. Start the Spice runtime with spice run
:
cd $HOME/quickstarts/serverops
spice run
Step. 3. In a new terminal, add the ServerOps quickstart pod:
So that we can leave Spice.ai running, add the quickstart pod in a new terminal tab or window. If you are running in GitHub Codespaces, you can open a new terminal by clicking the split-terminal button in VS Code.
spice add quickstarts/serverops
The Spice.ai CLI will download the ServerOps quickstart pod and add the pod manifest to your project at spicepods/serverops.yaml
.
The Spice runtime will then automatically detect the pod and start your first training run!
Note, automatic training relies on your system's filewatcher. In some cases, this might be disabled or not work as expected. If training does not start, follow the command to retrain the pod below.
Navigate to http://localhost:8000 in your favorite browser. You will see an overview of your pods. From here, you can click on the serverops
pod to see a chart of the pod's training progress.
In addition to automatic training upon manifest changes, training can be started by using the Spice CLI from within your app directory.
spice train serverops
After training the pod, you can now get a recommendation for an action from it!
curl http://localhost:8000/api/v0.1/pods/serverops/recommendation
To see how Spice.ai makes creating intelligent applications easy, try running and reviewing the sample ServerOps Node or Powershell apps, serverops.js
and serverops.ps1
.
Node:
npm install
node serverops.js
Powershell:
./serverops.ps1
Congratulations! In just a few minutes you downloaded and installed the Spice.ai CLI and runtime, created your first Spice.ai Pod, trained it, and got a recommendation from it.
This is just the start of the journey with Spice.ai. Next, try one of the quickstart tutorials or in-depth samples for creating intelligent applications.
Try:
Spice.ai started with the vision to make AI easy for developers. We are building Spice.ai in the open and with the community. Reach out on Discord or by email to get involved. We will be starting a community call series soon!
See CONTRIBUTING.md.