langutang commited on
Commit
fa7c3eb
Β·
verified Β·
1 Parent(s): 58b0479

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +120 -0
README.md ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - en
5
+ library_name: transformers
6
+ tags:
7
+ - cv
8
+ - robotics
9
+ ---
10
+ # 🌌 Celestial-Mini: Lightweight Object Detection Model (TF)
11
+
12
+ [![TensorFlow](https://img.shields.io/badge/framework-TensorFlow-orange)](https://www.tensorflow.org/)
13
+ [![Object Detection](https://img.shields.io/badge/task-Object%20Detection-blue)]()
14
+ [![Models](https://img.shields.io/badge/targets-80%20Objects-green)]()
15
+
16
+ **Celestial-Mini** is a compact, high-performance object detection model designed to recognize up to **80 distinct object classes**. Built with **TensorFlow**, it balances speed and accuracy for deployment in edge devices and real-time applications.
17
+
18
+ ---
19
+
20
+ ## πŸš€ Key Features
21
+
22
+ - πŸ” Detects up to **80 different object categories**
23
+ - ⚑ Optimized for **real-time inference**
24
+ - 🧠 Built on a **lightweight backbone**
25
+ - πŸ“¦ TensorFlow SavedModel format for easy deployment
26
+ - 🧰 Compatible with TensorFlow Lite and TensorFlow.js
27
+
28
+ ---
29
+
30
+ ## πŸ§ͺ Intended Use
31
+
32
+ Celestial-Mini is designed for:
33
+
34
+ - Robotics and drones
35
+ - Smart home devices
36
+ - Augmented Reality (AR) systems
37
+ - Mobile applications
38
+ - Educational and prototyping environments
39
+
40
+ ---
41
+
42
+ ## 🏷 Object Classes
43
+
44
+ Includes detection support for the standard 80-class COCO-style object categories such as:
45
+
46
+ ```
47
+ person, bicycle, car, motorcycle, airplane, bus, train, truck, boat, traffic light, ...
48
+ ```
49
+
50
+ ---
51
+
52
+ ## πŸ“¦ How to Use
53
+
54
+ ```python
55
+ import tensorflow as tf
56
+
57
+ # Load the model
58
+ model = tf.saved_model.load("path/to/celestial-mini")
59
+
60
+ # Run inference
61
+ detections = model(input_tensor)
62
+ ```
63
+
64
+ ---
65
+
66
+ ## πŸ“Š Performance
67
+
68
+ | Metric | Value |
69
+ |----------------|---------------|
70
+ | Classes | 80 |
71
+ | Model Size | ~15MB |
72
+ | Inference Time | < 50ms/image |
73
+ | Framework | TensorFlow |
74
+
75
+ > πŸ“Œ Performance may vary depending on hardware and TensorFlow backend optimizations.
76
+
77
+ ---
78
+
79
+ ## 🧠 Training & Dataset
80
+
81
+ Celestial-Mini was trained on a custom variant of the **COCO dataset**, emphasizing generalization and real-time inference. Model architecture includes quantization-friendly layers and depthwise separable convolutions.
82
+
83
+ ---
84
+
85
+ ## πŸ“– Citation
86
+
87
+ If you use **Celestial-Mini** in your work, please consider citing:
88
+
89
+ ```
90
+ @misc{celestialmini2025,
91
+ title={Celestial-Mini: A Lightweight Real-Time Object Detector},
92
+ author={Lang, John},
93
+ year={2025},
94
+ howpublished={\url{https://huggingface.co/langutang/celestial-mini}}
95
+ }
96
+ ```
97
+
98
+ ---
99
+
100
+ ## πŸ“¬ Contact & License
101
+
102
+ - πŸ“« For questions or collaboration, open an issue or contact the maintainer.
103
+ - βš–οΈ License: MIT (see LICENSE file for details)
104
+
105
+ ---
106
+
107
+ ## 🌠 Hugging Face Model Hub
108
+
109
+ To load from Hugging Face:
110
+
111
+ ```python
112
+ from transformers import AutoFeatureExtractor, TFModelForObjectDetection
113
+
114
+ model = TFModelForObjectDetection.from_pretrained("langutang/celestial-mini")
115
+ extractor = AutoFeatureExtractor.from_pretrained("langutang/celestial-mini")
116
+ ```
117
+
118
+ ---
119
+
120
+ Transform your edge AI projects with the power of **Celestial-Mini** πŸŒ