Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Doc] Refine algorithm readme with model performance table #1627

Merged
merged 13 commits into from
Oct 9, 2022
Prev Previous commit
update ipr configs
ly015 committed Oct 9, 2022
commit fc0de64e4be9765b138b61bc45e2ef89840da772
Original file line number Diff line number Diff line change
@@ -42,7 +42,10 @@
mean=[123.675, 116.28, 103.53],
std=[58.395, 57.12, 57.375],
bgr_to_rgb=True),
backbone=dict(type='ResNet', depth=50),
backbone=dict(
type='ResNet',
depth=50,
),
head=dict(
type='DSNTHead',
in_channels=2048,
Original file line number Diff line number Diff line change
@@ -31,7 +31,8 @@
type='IntegralRegressionLabel',
input_size=(256, 256),
heatmap_size=(64, 64),
sigma=2)
sigma=2.0,
normalize=True)

# model settings
model = dict(
@@ -41,7 +42,10 @@
mean=[123.675, 116.28, 103.53],
std=[58.395, 57.12, 57.375],
bgr_to_rgb=True),
backbone=dict(type='ResNet', depth=50),
backbone=dict(
type='ResNet',
depth=50,
),
head=dict(
type='DSNTHead',
in_channels=2048,