Spaces:
Build error
Build error
fix path
Browse files- modelconfig.py +62 -0
modelconfig.py
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from collections import OrderedDict
|
| 2 |
+
|
| 3 |
+
from spiga.data.loaders.dl_config import DatabaseStruct
|
| 4 |
+
|
| 5 |
+
MODELS_URL = {
|
| 6 |
+
"wflw": "https://drive.google.com/uc?export=download&confirm=yes&id=1h0qA5ysKorpeDNRXe9oYkVcVe8UYyzP7",
|
| 7 |
+
"300wpublic": "https://drive.google.com/uc?export=download&confirm=yes&id=1YrbScfMzrAAWMJQYgxdLZ9l57nmTdpQC",
|
| 8 |
+
"300wprivate": "https://drive.google.com/uc?export=download&confirm=yes&id=1fYv-Ie7n14eTD0ROxJYcn6SXZY5QU9SM",
|
| 9 |
+
"merlrav": "https://drive.google.com/uc?export=download&confirm=yes&id=1GKS1x0tpsTVivPZUk_yrSiMhwEAcAkg6",
|
| 10 |
+
"cofw68": "https://drive.google.com/uc?export=download&confirm=yes&id=1fYv-Ie7n14eTD0ROxJYcn6SXZY5QU9SM",
|
| 11 |
+
}
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
class ModelConfig(object):
|
| 15 |
+
|
| 16 |
+
def __init__(self, dataset_name=None, load_model_url=True):
|
| 17 |
+
# Model configuration
|
| 18 |
+
self.model_weights = None
|
| 19 |
+
self.model_weights_path = "./"
|
| 20 |
+
self.load_model_url = load_model_url
|
| 21 |
+
self.model_weights_url = None
|
| 22 |
+
# Pretreatment
|
| 23 |
+
self.focal_ratio = 1.5 # Camera matrix focal length ratio.
|
| 24 |
+
self.target_dist = 1.6 # Target distance zoom in/out around face.
|
| 25 |
+
self.image_size = (256, 256)
|
| 26 |
+
# Outputs
|
| 27 |
+
self.ftmap_size = (64, 64)
|
| 28 |
+
# Dataset
|
| 29 |
+
self.dataset = None
|
| 30 |
+
|
| 31 |
+
if dataset_name is not None:
|
| 32 |
+
self.update_with_dataset(dataset_name)
|
| 33 |
+
|
| 34 |
+
def update_with_dataset(self, dataset_name):
|
| 35 |
+
|
| 36 |
+
config_dict = {
|
| 37 |
+
"dataset": DatabaseStruct(dataset_name),
|
| 38 |
+
"model_weights": "spiga_%s.pt" % dataset_name,
|
| 39 |
+
}
|
| 40 |
+
|
| 41 |
+
if dataset_name == "cofw68": # Test only
|
| 42 |
+
config_dict["model_weights"] = "spiga_300wprivate.pt"
|
| 43 |
+
|
| 44 |
+
if self.load_model_url:
|
| 45 |
+
config_dict["model_weights_url"] = MODELS_URL[dataset_name]
|
| 46 |
+
|
| 47 |
+
self.update(config_dict)
|
| 48 |
+
|
| 49 |
+
def update(self, params_dict):
|
| 50 |
+
state_dict = self.state_dict()
|
| 51 |
+
for k, v in params_dict.items():
|
| 52 |
+
if k in state_dict or hasattr(self, k):
|
| 53 |
+
setattr(self, k, v)
|
| 54 |
+
else:
|
| 55 |
+
raise Warning("Unknown option: {}: {}".format(k, v))
|
| 56 |
+
|
| 57 |
+
def state_dict(self):
|
| 58 |
+
state_dict = OrderedDict()
|
| 59 |
+
for k in self.__dict__.keys():
|
| 60 |
+
if not k.startswith("_"):
|
| 61 |
+
state_dict[k] = getattr(self, k)
|
| 62 |
+
return state_dict
|