Skip to main content

Pattern Discovery Kit

Project description

PATtern discoveRY Kit (PATRYK)

Build Status Code Coverage

Welcome to the Pattern Discovery Kit!

This library provides tools to discover, detect, and track meaningful patterns in physical signals. These signals can be of various forms:

  1. Time series,

  2. Images,

  3. Movies,

  4. Any other type of n-dimensional data.

Installation

You can install patryk from the source code by doing the following:

git clone https://github.com/mansour-b/patryk.git
cd patryk
pip install .

Quickstart

Here is an example to briefly present the API:

import numpy as np

from patryk.core import Box, Frame, Model, Movie, Tracker
from patryk.display import plot_frame

# Define the dimensions of the problem
frame_width = 5
frame_height = 5
movie_length = 3
gif_frames_per_second = 2

# Define a concrete model class, just for the example
class DumbModel(Model):
    def predict(self, frame: Frame) -> Frame:
        frame_id = int(frame.name)
        frame.annotations.append(
            Box(label="noise_in_a_square", x=frame_id, y=frame_id, width=1, height=1)
        )
        return frame

model = DumbModel()

# Our data for this short tutorial
frames = [
    Frame(
        name=str(10 * i),
        width=frame_width,
        height=frame_height,
        annotations=[],
        image_array=np.random.random(frame_height, frame_width),
    )
    for i in range(movie_length)
]

movie = Movie(name="some_noise", frames=frames, tracks=[])

# Run the detection model on individual frames
analysed_frames = [model(frame) for frame in movie.frames]
analysed_movie = Movie(
    name="some_noise_with_boxes", frames=analysed_frames, tracks=[]
)

# TBD: run tracker on detections
analysed_movie = tracker.make_tracks(analysed_movie)
analysed_movie.name = "some_noise_with_boxes_and_tracks"

# Plot individual frames with detections
for frame in analysed_movie:
    plot_frame(frame)

# TBD: make a GIF to show the tracks
export_to_gif(analysed_movie, fps=gif_frames_per_seconds)

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

pattern_discovery_kit-0.1.0.tar.gz (3.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pattern_discovery_kit-0.1.0-py3-none-any.whl (3.6 kB view details)

Uploaded Python 3

File details

Details for the file pattern_discovery_kit-0.1.0.tar.gz.

File metadata

  • Download URL: pattern_discovery_kit-0.1.0.tar.gz
  • Upload date:
  • Size: 3.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.0

File hashes

Hashes for pattern_discovery_kit-0.1.0.tar.gz
Algorithm Hash digest
SHA256 6782fb1831ed9aee0f87322681e2e12628289766c5b3b34608bdbd15111da888
MD5 f1e8c5fef390e5f07670d079513f019a
BLAKE2b-256 216a05e38bc5dd34d98287976e496d8190501c67a0a4afcf1523b8ae6b744eae

See more details on using hashes here.

File details

Details for the file pattern_discovery_kit-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for pattern_discovery_kit-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d4953af28d15aeadbac6c5a3259391d3c828aada784a64db94d3055519afa070
MD5 f22e50439dc2ad499b74265e8a33ed40
BLAKE2b-256 6d51b9e6b950934c499c0c1dbfd14be200db727742dd2838c232f0cf09df2db1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page