Duy commited on
Commit ·
c2d4e1e
1
Parent(s): 9c9a681
chore: update email to zestdapoet@gmail.com and push user changes
Browse files- .mailmap +2 -2
- AUTHORS.md +1 -1
- README.md +1 -1
- design_spec/system_spec.html +1 -1
- push_to_hf.sh +33 -0
.mailmap
CHANGED
|
@@ -1,2 +1,2 @@
|
|
| 1 |
-
Duy Hoang <
|
| 2 |
-
Duy Hoang <
|
|
|
|
| 1 |
+
Duy Hoang <zestdapoet@gmail.com> Claude Sonnet 4.6 <noreply@anthropic.com>
|
| 2 |
+
Duy Hoang <zestdapoet@gmail.com> Claude Opus 4.8 <noreply@anthropic.com>
|
AUTHORS.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
|
| 3 |
## Project Author
|
| 4 |
|
| 5 |
-
**Bảo Duy** - [
|
| 6 |
|
| 7 |
- GitHub: [@DuyhocAI](https://github.com/DuyhocAI)
|
| 8 |
- Assessment: Sotatek AI/Computer Vision Engineer Assessment (96 hours)
|
|
|
|
| 2 |
|
| 3 |
## Project Author
|
| 4 |
|
| 5 |
+
**Bảo Duy** - [zestdapoet@gmail.com](mailto:zestdapoet@gmail.com)
|
| 6 |
|
| 7 |
- GitHub: [@DuyhocAI](https://github.com/DuyhocAI)
|
| 8 |
- Assessment: Sotatek AI/Computer Vision Engineer Assessment (96 hours)
|
README.md
CHANGED
|
@@ -414,7 +414,7 @@ MIT License — see [LICENSE](LICENSE) for details.
|
|
| 414 |
|
| 415 |
## Author
|
| 416 |
|
| 417 |
-
**Bảo Duy** — [
|
| 418 |
|
| 419 |
- **GitHub:** [@DuyhocAI](https://github.com/DuyhocAI)
|
| 420 |
- **Project:** Sotatek AI/Computer Vision Engineer Assessment
|
|
|
|
| 414 |
|
| 415 |
## Author
|
| 416 |
|
| 417 |
+
**Bảo Duy** — [zestdapoet@gmail.com](mailto:zestdapoet@gmail.com)
|
| 418 |
|
| 419 |
- **GitHub:** [@DuyhocAI](https://github.com/DuyhocAI)
|
| 420 |
- **Project:** Sotatek AI/Computer Vision Engineer Assessment
|
design_spec/system_spec.html
CHANGED
|
@@ -1050,7 +1050,7 @@ pinned: false
|
|
| 1050 |
<footer>
|
| 1051 |
<p><strong>Zero-Shot Pattern Detection System</strong> · Sotatek AI/CV Engineer Assessment 2026</p>
|
| 1052 |
<p style="margin-top:6px;">Stack: OpenCV · PyTorch · DINOv2 ViT-S/14 · Qwen2-VL-2B · FastAPI · Docker · HuggingFace Spaces</p>
|
| 1053 |
-
<p style="margin-top:4px; color:#9ca3af;">Tác giả: <a href="mailto:
|
| 1054 |
</footer>
|
| 1055 |
|
| 1056 |
</main>
|
|
|
|
| 1050 |
<footer>
|
| 1051 |
<p><strong>Zero-Shot Pattern Detection System</strong> · Sotatek AI/CV Engineer Assessment 2026</p>
|
| 1052 |
<p style="margin-top:6px;">Stack: OpenCV · PyTorch · DINOv2 ViT-S/14 · Qwen2-VL-2B · FastAPI · Docker · HuggingFace Spaces</p>
|
| 1053 |
+
<p style="margin-top:4px; color:#9ca3af;">Tác giả: <a href="mailto:zestdapoet@gmail.com">zestdapoet@gmail.com</a> · Repo: <code>D:\Sotatek_Assessment\pattern-detection-bom</code></p>
|
| 1054 |
</footer>
|
| 1055 |
|
| 1056 |
</main>
|
push_to_hf.sh
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
|
| 3 |
+
# Push to HuggingFace Spaces
|
| 4 |
+
# Prerequisites: HF token configured in git credentials
|
| 5 |
+
|
| 6 |
+
echo "Setting up HuggingFace Space..."
|
| 7 |
+
|
| 8 |
+
# Add HF remote
|
| 9 |
+
git remote add huggingface https://huggingface.co/spaces/DuyhocAI/Pattern_detection_in_technical_drawings.git 2>/dev/null || \
|
| 10 |
+
git remote set-url huggingface https://huggingface.co/spaces/DuyhocAI/Pattern_detection_in_technical_drawings.git
|
| 11 |
+
|
| 12 |
+
echo ""
|
| 13 |
+
echo "Pushing code to HuggingFace Spaces..."
|
| 14 |
+
echo "You may be prompted to enter HF token"
|
| 15 |
+
echo ""
|
| 16 |
+
|
| 17 |
+
git push huggingface main
|
| 18 |
+
|
| 19 |
+
if [ $? -eq 0 ]; then
|
| 20 |
+
echo ""
|
| 21 |
+
echo "Push successful!"
|
| 22 |
+
echo ""
|
| 23 |
+
echo "HuggingFace will now:"
|
| 24 |
+
echo "1. Build Docker image (3-5 min)"
|
| 25 |
+
echo "2. Deploy to Space"
|
| 26 |
+
echo "3. Make it live at:"
|
| 27 |
+
echo " https://huggingface.co/spaces/DuyhocAI/Pattern_detection_in_technical_drawings"
|
| 28 |
+
echo ""
|
| 29 |
+
echo "Monitor the build here:"
|
| 30 |
+
echo " https://huggingface.co/spaces/DuyhocAI/Pattern_detection_in_technical_drawings/settings"
|
| 31 |
+
else
|
| 32 |
+
echo "Push failed - check authentication"
|
| 33 |
+
fi
|