Spaces:
Sleeping
Sleeping
Upload landmarkdiff/__init__.py with huggingface_hub
Browse files- landmarkdiff/__init__.py +38 -2
landmarkdiff/__init__.py
CHANGED
|
@@ -1,3 +1,39 @@
|
|
| 1 |
-
"""LandmarkDiff -
|
| 2 |
|
| 3 |
-
__version__ = "0.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""LandmarkDiff: Anatomically-conditioned latent diffusion for facial surgery simulation."""
|
| 2 |
|
| 3 |
+
__version__ = "0.3.0"
|
| 4 |
+
|
| 5 |
+
__all__ = [
|
| 6 |
+
"api_client",
|
| 7 |
+
"arcface_torch",
|
| 8 |
+
"audit",
|
| 9 |
+
"augmentation",
|
| 10 |
+
"benchmark",
|
| 11 |
+
"checkpoint_manager",
|
| 12 |
+
"cli",
|
| 13 |
+
"clinical",
|
| 14 |
+
"conditioning",
|
| 15 |
+
"config",
|
| 16 |
+
"curriculum",
|
| 17 |
+
"data",
|
| 18 |
+
"data_version",
|
| 19 |
+
"displacement_model",
|
| 20 |
+
"ensemble",
|
| 21 |
+
"evaluation",
|
| 22 |
+
"experiment_tracker",
|
| 23 |
+
"face_verifier",
|
| 24 |
+
"fid",
|
| 25 |
+
"hyperparam",
|
| 26 |
+
"inference",
|
| 27 |
+
"landmarks",
|
| 28 |
+
"log",
|
| 29 |
+
"losses",
|
| 30 |
+
"manipulation",
|
| 31 |
+
"masking",
|
| 32 |
+
"metrics_agg",
|
| 33 |
+
"metrics_viz",
|
| 34 |
+
"model_registry",
|
| 35 |
+
"postprocess",
|
| 36 |
+
"safety",
|
| 37 |
+
"synthetic",
|
| 38 |
+
"validation",
|
| 39 |
+
]
|