Skip to main content

EVA Video Database System (Think MySQL for videos).

Project description

EVA

Try It Out!

Open EVA on Colab Slack Discuss on Github! PyPI License Python Versions

EVA AI-Relational Database System

EVA is an open-source AI-relational database with first-class support for deep learning models. It aims to support AI-powered database applications that operate on both structured (tables) and unstructured data (videos, text, podcasts, PDFs, etc.) with deep learning models.

EVA accelerates AI pipelines using a collection of optimizations inspired by relational database systems including function caching, sampling, and cost-based operator reordering. It comes with a wide range of models for analyzing unstructured data including image classification, object detection, OCR, face detection, etc. It is fully implemented in Python, and licensed under the Apache license.

EVA supports a AI-oriented query language for analysing unstructured data. Here are some illustrative applications:

If you are wondering why you might need a AI-relational database system, start with the page on Video Database Systems. It describes how EVA lets you easily make use of deep learning models and you can save money spent on inference on large image or video datasets.

The Getting Started page shows how you can use EVA for different computer vision tasks: image classification, object detection, action recognition, and how you can easily extend EVA to support your custom deep learning model in the form of user-defined functions.

The User Guides section contains Jupyter Notebooks that demonstrate how to use various features of EVA. Each notebook includes a link to Google Colab, where you can run the code by yourself.

Why EVA?

Easily combine SQL and Deep Learning to build next-generation database applications Easily query videos in user-facing applications with a SQL-like interface for commonly used computer vision models.
Speed up queries and save money spent on model inference EVA comes with a collection of built-in sampling, caching, and filtering optimizations inspired by time-tested relational database systems.
Extensible by design to support custom deep learning models EVA has first-class support for user-defined functions that wrap around your deep learning models in PyTorch.

Links

Quick Start

  1. To install EVA, we recommend using the pip package manager (EVA supports Python versions 3.7+).
pip install evadb
  1. EVA is based on a client-server architecture. It works in Jupyter notebooks (illustrative notebooks are available in the Tutorials folder) and also supports a terminal-based client. To start the EVA server and a terminal-based client, use the following commands:
eva_server &   # launch server
eva_client     # launch client
  1. Load a video onto the EVA server from the client (we use ua_detrac.mp4 video as an example):
LOAD VIDEO "data/ua_detrac/ua_detrac.mp4" INTO MyVideo;
  1. That's it! You can now run queries over the loaded video:
SELECT id, data FROM MyVideo WHERE id < 5;
  1. Search for frames in the video that contain a car
SELECT id, data FROM MyVideo WHERE ['car'] <@ FastRCNNObjectDetector(data).labels;
Source Video Query Result
Source Video Query Result
  1. Search for frames in the video that contain a pedestrian and a car
SELECT id, data FROM MyVideo WHERE ['pedestrian', 'car'] <@ FastRCNNObjectDetector(data).labels;
  1. Search for frames in the video with more than 3 cars
SELECT id, data FROM MyVideo WHERE ArrayCount(FastRCNNObjectDetector(data).labels, 'car') > 3;
  1. You can create a new user-defined function (UDF) that wraps around your custom vision model or an off-the-shelf model like FastRCNN:
CREATE UDF IF NOT EXISTS MyUDF
INPUT  (frame NDARRAY UINT8(3, ANYDIM, ANYDIM))
OUTPUT (labels NDARRAY STR(ANYDIM), bboxes NDARRAY FLOAT32(ANYDIM, 4),
        scores NDARRAY FLOAT32(ANYDIM))
TYPE  Classification
IMPL  'eva/udfs/fastrcnn_object_detector.py';
  1. You can combine multiple user-defined functions in a single query to accomplish more complicated tasks.
   -- Analyse emotions of faces in a video
   SELECT id, bbox, EmotionDetector(Crop(data, bbox)) 
   FROM MyVideo JOIN LATERAL UNNEST(FaceDetector(data)) AS Face(bbox, conf)  
   WHERE id < 15;

Illustrative EVA Applications

Traffic Analysis (Object Detection Model)

Source Video Query Result
Source Video Query Result

MNIST Digit Recognition (Image Classification Model)

Source Video Query Result
Source Video Query Result

Movie Analysis (Face Detection + Emotion Classfication Models)

Source Video Query Result
Source Video Query Result

License Plate Recognition (Plate Detection + OCR Extraction Models)

Query Result
Query Result

Meme Toxicity Classification (OCR Extraction + Toxicity Classification Models)

Query Result
Query Result

Community

Join the EVA community on Slack to ask questions and to share your ideas for improving EVA.

EVA Slack Channel

Architecture Diagram of EVA

EVA Architecture Diagram

Contributing to EVA

PyPI Version CI Status Coverage Status Documentation Status

We welcome all kinds of contributions to EVA. To file a bug or request a feature, please use GitHub issues. Pull requests are welcome.

For more information on contributing to EVA, see our contribution guide.

License

Copyright (c) 2018-2023 Georgia Tech Database Group Licensed under Apache License.

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

evadb-0.1.6.tar.gz (235.2 kB view hashes)

Uploaded Source

Built Distribution

evadb-0.1.6-py3-none-any.whl (483.6 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