Skip to main content

A lightweight Python package optimized for integrating exported models from Google's Teachable Machine Platform into robotics and embedded systems environments. This streamlined version of Teachable Machine Package is specifically designed for resource-constrained devices, making it easier to deploy and use your trained models in embedded applications.

Project description

Teachable Machine Lite

By: Meqdad Darwish

Teachable Machine Lite Package Logo

Downloads MIT License PyPI

Description

A lightweight Python package optimized for integrating exported models from Google's Teachable Machine Platform into robotics and embedded systems environments. This streamlined version of Teachable Machine Package is specifically designed for resource-constrained devices, making it easier to deploy and use your trained models in embedded applications. With a focus on efficiency and minimal dependencies, this tool maintains the core functionality while being more suitable for robotics and IoT projects.

Source Code is published on GitHub

Read more about the project (requirements, installation, examples and more) in the Documentation Website

Supported Classifiers

Image Classification: Use exported and quantized TensorFlow Lite model from Teachable Machine Platform (a model file with tflite extension).

Requirements

For detailed information about package requirements and dependencies, please visit our documentation

Python >= 3.9
numpy < 2.0 (v1.26.4 recommended)

How to install Teachable Machine Lite Package

pip install teachable-machine-lite

Dependencies

numpy
tflite-runtime
Pillow

Example

An example for teachable machine lite package with OpenCV:

from teachable_machine_lite import TeachableMachineLite
import cv2 as cv

cap = cv.VideoCapture(0)

model_path = "model.tflite"
labels_path = "labels.txt"
image_file_name = "screenshot.jpg"

tm_model = TeachableMachineLite(model_path=model_path, labels_file_path=labels_path)

while True:
    ret, img = cap.read()
    cv.imwrite(image_file_name, img)

    results, resultImage = tm_model.classify_and_show(image_file_name, convert_to_bgr=True)
    print("results:", results)

    cv.imshow("Camera", resultImage)
    k = cv.waitKey(1)
    if k == 27:  # Press ESC to close the camera view
        break

cap.release()
cv.destroyAllWindows()

Values of results are assigned based on the content of labels.txt file.

For more; take a look on these examples

Links:

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

teachable_machine_lite-1.2.0.2.tar.gz (7.0 kB view details)

Uploaded Source

Built Distribution

teachable_machine_lite-1.2.0.2-py3-none-any.whl (7.3 kB view details)

Uploaded Python 3

File details

Details for the file teachable_machine_lite-1.2.0.2.tar.gz.

File metadata

File hashes

Hashes for teachable_machine_lite-1.2.0.2.tar.gz
Algorithm Hash digest
SHA256 864973e9bc992d56b973caf3c64a73678990b2335f6f8b98b5bee474deb3c978
MD5 3c33c31ba8acc57c74a111f54429813c
BLAKE2b-256 f2637ba737cc15b58ef4c2ef49176c6e7ad8bb306011979fc9cfa1045809aed9

See more details on using hashes here.

Provenance

The following attestation bundles were made for teachable_machine_lite-1.2.0.2.tar.gz:

Publisher: publish.yml on MeqdadDev/teachable-machine-lite

Attestations:

File details

Details for the file teachable_machine_lite-1.2.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for teachable_machine_lite-1.2.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 11aeb68db2f20f8b82fb098c360a7515307426028290fc1040c40b17759649fb
MD5 9cb60ffdc794aec633114615151ec77d
BLAKE2b-256 280b589729a5132a5f72669d15aa7a41b1b834765f8b1ef758ba61d8fdc58157

See more details on using hashes here.

Provenance

The following attestation bundles were made for teachable_machine_lite-1.2.0.2-py3-none-any.whl:

Publisher: publish.yml on MeqdadDev/teachable-machine-lite

Attestations:

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