Update task_template.py
Browse files- task_template.py +5 -4
task_template.py
CHANGED
|
@@ -13,10 +13,11 @@ import torchvision.transforms as transforms
|
|
| 13 |
|
| 14 |
|
| 15 |
# config
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
| 20 |
|
| 21 |
BASE_URL = "http://35.192.205.84:80"
|
| 22 |
API_KEY = "YOUR_API_KEY_HERE"
|
|
|
|
| 13 |
|
| 14 |
|
| 15 |
# config
|
| 16 |
+
BASE = Path(__file__).parent
|
| 17 |
+
PUB_PATH = BASE / "pub.pt"
|
| 18 |
+
PRIV_PATH = BASE / "priv.pt"
|
| 19 |
+
MODEL_PATH = BASE / "model.pt"
|
| 20 |
+
OUTPUT_CSV = BASE / "submission.csv"
|
| 21 |
|
| 22 |
BASE_URL = "http://35.192.205.84:80"
|
| 23 |
API_KEY = "YOUR_API_KEY_HERE"
|