No project description provided
Project description
:heavy_exclamation_mark: This repository is still experimental. No API-compatibility is guaranteed.
Rikai
Rikai is a parquet
based ML data format built for working with
unstructured data at scale. Processing large amounts of data for ML is never trivial, but is
especially true for images and videos often at the core of deep learning applications. We are
building Rikai with two main goals:
- Enable ML engineers/researchers to have a seamless workflow from Feature Engineering (Spark) to Training (PyTorch/Tensorflow), from notebook to production.
- Enable advanced analytics capabilities to support much faster active learning, model debugging, and monitoring in production pipelines.
Current (v0.0.5) main features:
- Native support in Jupyter, Spark and PyTorch for images, videos and annotations: reduce ad-hoc type conversions and boilerplate when moving between ETL and training.
- Custom functionality for working with images and videos at scale: high-level APIs for processing, filtering, sampling, and more.
- Run ML-models via SQL. Forget Smart Homes, build a Smart Data Warehouse.
Roadmap:
- TensorFlow integration
- Versioning support built into the dataset
- Even richer video capabilities (ffmpeg-python integration)
- Declarative annotation API (think vega-lite for annotating images/videos)
Example
from pyspark.sql import Row
from pyspark.ml.linalg import DenseMetrix
from rikai.types import Image, Box2d
from rikai.numpy import wrap
import numpy as np
df = spark.createDataFrame(
[
{
"id": 1,
"mat": DenseMatrix(2, 2, range(4)),
"image": Image("s3://foo/bar/1.png"),
"annotations": [
Row(
label="cat",
mask=wrap(np.random.rand(256, 256)),
bbox=Box2d(xmin=1.0, ymin=2.0, xmax=3.0, ymax=4.0),
)
],
}
]
)
df.write.format("rikai").save("s3://path/to/features")
Train dataset in Pytorch
from rikai.torch.vision import Dataset
from rikai.torch import DataLoader # Do not need this with Pytorch 1.8+
from torchvision import transforms as T
transform = T.Compose([
T.Resize(640),
T.ToTensor(),
T.Normalize((0.485, 0.456, 0.406), (0.229, 0.224, 0.225))
])
dataset = Dataset(
"s3://path/to/features",
columns=["image"],
transform=transform
)
loader = DataLoader(
dataset,
batch_size=32,
shuffle=True,
num_workers=8,
)
for batch in data_loader:
predicts = model(batch.to(cuda))
Using a ML model in Spark SQL (experiemental)
CREATE MODEL yolo5
OPTIONS (min_confidence=0.3, device="gpu", batch_size=32)
USING "s3://bucket/to/yolo5_spec.yaml";
SELECT id, ML_PREDICT(yolo5, image) FROM my_dataset
WHERE split = "train" LIMIT 100;
Rikai can use Mlflow as its model registry. This allows you to automatically pickup the latest model version if you're using the mlflow model registry.
CREATE MODEL yolo5
OPTIONS (min_confidence=0.3, device="gpu", batch_size=32)
USING "mlflow://yolo5_model/";
SELECT id, ML_PREDICT(yolo5, image) FROM my_dataset
WHERE split = "train" LIMIT 100;
Getting Started
Currently Rikai is maintained for Scala 2.12 and Python 3.7 and 3.8.
There are multiple ways to install Rikai:
- Try it using the included Dockerfile.
- OR install it via pip
pip install rikai
, with extras for gcp, pytorch/tf, and others. - OR install it from source
Note: if you want to use Rikai with your own pyspark, please consult rikai documentation for tips.
Docker
The included Dockerfile creates a standalone demo image with Jupyter, Pytorch, Spark, and rikai preinstalled with notebooks for you to play with the capabilities of the rikai feature store.
To build and run the docker image from the current directory:
# Clone the repo
git clone git@github.com:eto-ai/rikai rikai
# Build the docker image
docker build --tag rikai --network host .
# Run the image
docker run -p 0.0.0.0:8888:8888/tcp rikai:latest jupyter lab -ip 0.0.0.0 --port 8888
If successful, the console should then print out a clickable link to JupyterLab. You can also
open a browser tab and go to localhost:8888
.
Install from pypi
Base rikai library can be installed with just pip install rikai
. Dependencies for supporting
pytorch (pytorch and torchvision), jupyter (matplotlib and jupyterlab) are all part of
optional extras. Many open-source datasets also use Youtube videos so we've also added pafy and
youtube-dl as optional extras as well.
For example, if you want to use pytorch in Jupyter to train models on rikai datasets in s3 containing Youtube videos you would run:
pip install rikai[pytorch,jupyter,youtube]
If you're not sure what you need and don't mind installing some extra dependencies, you can simply install everything:
pip install rikai[all]
Install from source
To build from source you'll need python as well as Scala with sbt installed:
# Clone the repo
git clone git@github.com:eto-ai/rikai rikai
# Build the jar
sbt publishLocal
# Install python package
cd python
pip install -e . # pip install -e .[all] to install all optional extras (see "Install from pypi")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file rikai-0.0.9.tar.gz
.
File metadata
- Download URL: rikai-0.0.9.tar.gz
- Upload date:
- Size: 51.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 52ff678eae7064f789ed278dac4921daabadb80774ed62772b57b88622960d2f |
|
MD5 | 3af8f1c1c208d7a0de871ea9a26f6f6b |
|
BLAKE2b-256 | d1a64aa42854d209a2c61db440e0d59128afda0b7cec4411073ff32d983a6933 |
Provenance
File details
Details for the file rikai-0.0.9-py3-none-any.whl
.
File metadata
- Download URL: rikai-0.0.9-py3-none-any.whl
- Upload date:
- Size: 88.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff7065ef73ec1e03b752a2c05fddd2da2f3f69ebaca7e9cffe2ae619ee8c5556 |
|
MD5 | ba30ea1246248c9b8d4fc0f97437135e |
|
BLAKE2b-256 | fd92ff06b767545b5952b18cf7c357485ee37069cf11ba93c941c0cd26c8df7e |