Giter Site home page Giter Site logo

evadb's Introduction

EvaDB

Bring AI inside your database system and build AI-powered apps

EvaDB forks EvaDB stars EvaDB pull-requests EvaDB Commits

Follow EvaDB

Join EvaDB Slack Community Follow evadb_ai EvaDB on Medium EvaDB Website

Share EvaDB

Follow _superAGI Share on Telegram Share on Reddit

Launch EvaDB on Colab Roadmap Python Versions Supported License Coverage Status
Open in Gitpod

EvaDB enables software developers to build AI apps in a few lines of code. Its powerful SQL API simplifies AI app development for both structured and unstructured data. EvaDB's benefits include:

  • ๐Ÿ”ฎ Easy to connect EvaDB with your SQL database system and build AI-powered apps with SQL queries
  • ๐Ÿค Query your data with a pre-trained AI model from Hugging Face, OpenAI, YOLO, PyTorch, and other AI frameworks
  • โšก๏ธ Faster queries thanks to AI-centric query optimization
  • ๐Ÿ’ฐ Save money spent on running models by efficient CPU/GPU use
  • ๐Ÿ”ง Fine-tune your AI models to achieve better results

๐Ÿ‘‹ Hey! If you're excited about our vision of bringing AI inside database systems, show some โค๏ธ by:

Quick Links

Documentation

You can find the complete documentation of EvaDB at evadb.ai/docs ๐Ÿ“šโœจ๐Ÿš€

Why EvaDB

In the world of AI, we've reached a stage where many AI tasks that were traditionally handled by AI or ML engineers can now be automated. EvaDB enables software developers with the ability to perform advanced AI tasks without needing to delve into the intricate details.

EvaDB covers many AI applications, including regression, classification, image recognition, question answering, and many other generative AI applications. EvaDB targets 99% of AI problems that are often repetitive and can be automated with a simple function call in an SQL query. Until now, there is no comprehensive open-source framework for bringing AI into an existing SQL database system with a principled AI optimization framework, and that's where EvaDB comes in.

Our target audience is software developers who may not necessarily have a background in AI but require AI capabilities to solve specific problems. We target programmers who write simple SQL queries inside their CRUD apps. With EvaDB, it is possible to easily add AI features to these apps by calling built-in AI functions in the queries.

How does EvaDB work

  • Connect EvaDB to your database system with the `CREATE DATABASE` statement.
  • Write SQL queries with AI functions to get inference results:
    • Pick a pre-trained AI model from Hugging Face, Open AI, Ultralytics, PyTorch, and built-in AI frameworks for generative AI, NLP, and vision applications;
    • or pick from a variety of state-of-the-art ML engines for classic ML use-cases (classification, regression, etc.);
    • or bring your custom model built with any AI/ML framework using `CREATE FUNCTION`.

Follow the getting started guide to get on-boarded as fast as possible.

Illustrative Queries

  • Run the MNIST Image Classification model to obtain digit labels for each frame in the video.
SELECT MnistImageClassifier(data).label FROM mnist_video;
  • Build a vector index on the feature embeddings returned by the SIFT Feature Extractor on a collection of Reddit images.
CREATE INDEX reddit_sift_image_index
    ON reddit_dataset (SiftFeatureExtractor(data))
    USING FAISS
  • Retrieve the top-5 most similar images for the given image using the index.
SELECT name FROM reddit_dataset ORDER BY
    Similarity(
        SiftFeatureExtractor(Open('reddit-images/g1074_d4mxztt.jpg')),
        SiftFeatureExtractor(data)
    )
    LIMIT 5

Illustrative Apps

Here are some illustrative AI apps built using EvaDB (each notebook can be opened on Google Colab):

More Illustrative Queries

  • Store the text returned by a Speech Recognition model on the audio component of a video in a table.
CREATE TABLE text_summary AS
    SELECT SpeechRecognizer(audio) FROM ukraine_video;
  • Run ChatGPT on the text column in a table.
SELECT ChatGPT('Is this video summary related to Ukraine russia war', text)
    FROM text_summary;
  • Train an ML model using the Ludwig AI engine to predict a column in a table.
CREATE FUNCTION IF NOT EXISTS PredictHouseRent FROM
( SELECT * FROM HomeRentals )
TYPE Ludwig
PREDICT 'rental_price'
TIME_LIMIT 120;

Architecture of EvaDB

EvaDB's AI-centric query optimizer takes a query as input and generates a query plan. The query engine takes the query plan and hits the relevant backends to efficiently process the query: 1. SQL Database Systems (Structured Data) 2. AI Frameworks (Transform Unstructured Data to Structured Data, Unstructured data includes PDFs, images, podcasts, etc. stored on cloud buckets or local filesystem) 3. Vector Database Systems (Feature Embeddings)

Architecture Diagram

Community and Support

If you run into any bugs or have any comments, you can reach us on our Slack Community ๐Ÿ“Ÿ or create a Github Issue ๐Ÿ›.

Here is EvaDB's public roadmap ๐Ÿ›ค๏ธ. We prioritize features based on user feedback, so we'd love to hear from you!

Contributing

We are a lean team on a mission to bring AI inside database systems! All kinds of contributions to EvaDB are appreciated ๐Ÿ™Œ If you'd like to get involved, here's information on where we could use your help: contribution guide ๐Ÿค—

CI Status:

CI Status Documentation Status

Star History

EvaDB Star History Chart

License

Copyright (c) Georgia Tech Database Group. Licensed under an Apache License.

evadb's People

Contributors

gaurav274 avatar jarulraj avatar xzdandy avatar saiprashanth173 avatar jiashenc avatar sanjanag avatar jaehobang avatar abdullahshah avatar ishsiva avatar akhileshsiddhanti avatar dependabot[bot] avatar aryan-rajoria avatar pchunduri6 avatar kaushikravichandran avatar pgluss avatar lorddarkula avatar anirudh58 avatar snd96 avatar suryatejreddy avatar yulaicui avatar karan-sarkar avatar swati21 avatar chitti-ankith avatar albert-hen avatar rodrigodlpontes avatar alekhyam94 avatar sanmathik avatar kokareiitp avatar tushar-97 avatar pramodith avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.