pray commited on
Commit
9a12faf
·
1 Parent(s): fcf76ca

modify readme and add app.py

Browse files
Files changed (2) hide show
  1. README.md +12 -0
  2. app.py +15 -0
README.md CHANGED
@@ -1,3 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
  # Face Matcher - Duplicate Account Detection
2
 
3
  A face matching MVP for duplicate account detection using face embeddings and vector similarity search with Milvus Lite.
 
1
+ ---
2
+ title: Face Matcher - Duplicate Detection
3
+ emoji: 👤
4
+ colorFrom: blue
5
+ colorTo: purple
6
+ sdk: gradio
7
+ sdk_version: 4.0.0
8
+ app_file: app.py
9
+ python_version: 3.11
10
+ pinned: false
11
+ ---
12
+
13
  # Face Matcher - Duplicate Account Detection
14
 
15
  A face matching MVP for duplicate account detection using face embeddings and vector similarity search with Milvus Lite.
app.py ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """
3
+ Hugging Face Spaces entry point for Face Matcher application
4
+ """
5
+
6
+ import sys
7
+ from pathlib import Path
8
+
9
+ # Add src directory to Python path
10
+ sys.path.insert(0, str(Path(__file__).parent / "src"))
11
+
12
+ from face_matcher.ui.gradio_app import main
13
+
14
+ if __name__ == "__main__":
15
+ main()