Skip to content

Commit

Permalink
[ADD][FEAT] Normalization method to config
Browse files Browse the repository at this point in the history
  • Loading branch information
wbenbihi committed Aug 21, 2022
1 parent 5700530 commit 1d85ff5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions config/config.default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ dataset:
output_size: 64
stacks: 3
heatmap_stddev: 5.
normalization: "FromZero"
sets:
test: true
validation: true
Expand Down
1 change: 1 addition & 0 deletions hourglass_tensorflow/utils/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ class HTFDatasetConfig(BaseModel):
output_size: int = 64
stacks: int = 4
heatmap_stddev: float = 10.0
normalization: Optional[str] = None
params: Optional[HTFDatasetParamsConfig] = Field(
default_factory=HTFDatasetParamsConfig
)
Expand Down

0 comments on commit 1d85ff5

Please sign in to comment.