asdfaman commited on
Commit
884b9f4
·
verified ·
1 Parent(s): f2dfdfc

Create constants.py

Browse files
Files changed (1) hide show
  1. constants.py +8 -0
constants.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import os
2
+
3
+ REPO_ID = "tech4humans/yolov8s-signature-detector"
4
+ FILENAME = "yolov8s.onnx"
5
+ MODEL_DIR = "model"
6
+ MODEL_PATH = os.path.join(MODEL_DIR, "model.onnx")
7
+ DATABASE_DIR = os.path.join(os.getcwd(), "db")
8
+ DATABASE_PATH = os.path.join(DATABASE_DIR, "metrics.db")