Views
No views yet
person, bicycle, car, motorcycle, airplane, bus, train, truck, boat, traffic light, ...1import tensorflow as tf
2
3# Load the model
4model = tf.saved_model.load("path/to/celestial-mini")
5
6# Run inference
7detections = model(input_tensor)| Metric | Value |
|---|---|
| Classes | 80 |
| Model Size | ~15MB |
| Inference Time | < 50ms/image |
| Framework | TensorFlow |
📌 Performance may vary depending on hardware and TensorFlow backend optimizations.
@misc{celestialmini2025,
title={Celestial-Mini: A Lightweight Real-Time Object Detector},
author={Lang, John},
year={2025},
howpublished={\url{https://huggingface.co/langutang/celestial-mini}}
}1from transformers import AutoFeatureExtractor, TFModelForObjectDetection
2
3model = TFModelForObjectDetection.from_pretrained("langutang/celestial-mini")
4extractor = AutoFeatureExtractor.from_pretrained("langutang/celestial-mini")