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

[Fix] fix a bug about validation of ava dataset #527

Merged
merged 6 commits into from
Jan 19, 2021
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,12 @@
total_epochs = 20
checkpoint_config = dict(interval=1)
workflow = [('train', 1)]
evaluation = dict(interval=1)
# Three avaiable key indicators for ava dataset
# 'Recall@0.5@100' 'AR@100' 'PascalBoxes_Precision/mAP@0.5IOU'
irvingzhang0512 marked this conversation as resolved.
Show resolved Hide resolved
evaluation = dict(
interval=1,
key_indicator='PascalBoxes_Precision/mAP@0.5IOU',
rule='greater')
log_config = dict(
interval=20, hooks=[
dict(type='TextLoggerHook'),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,12 @@
total_epochs = 20
checkpoint_config = dict(interval=1)
workflow = [('train', 1)]
evaluation = dict(interval=1)
# Three avaiable key indicators for ava dataset
# 'Recall@0.5@100' 'AR@100' 'PascalBoxes_Precision/mAP@0.5IOU'
evaluation = dict(
interval=1,
key_indicator='PascalBoxes_Precision/mAP@0.5IOU',
rule='greater')
log_config = dict(
interval=20, hooks=[
dict(type='TextLoggerHook'),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,12 @@
total_epochs = 20
checkpoint_config = dict(interval=1)
workflow = [('train', 1)]
evaluation = dict(interval=1)
# Three avaiable key indicators for ava dataset
# 'Recall@0.5@100' 'AR@100' 'PascalBoxes_Precision/mAP@0.5IOU'
evaluation = dict(
interval=1,
key_indicator='PascalBoxes_Precision/mAP@0.5IOU',
rule='greater')
log_config = dict(
interval=20, hooks=[
dict(type='TextLoggerHook'),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,12 @@
total_epochs = 20
checkpoint_config = dict(interval=1)
workflow = [('train', 1)]
evaluation = dict(interval=1)
# Three avaiable key indicators for ava dataset
# 'Recall@0.5@100' 'AR@100' 'PascalBoxes_Precision/mAP@0.5IOU'
evaluation = dict(
interval=1,
key_indicator='PascalBoxes_Precision/mAP@0.5IOU',
rule='greater')
log_config = dict(
interval=20, hooks=[
dict(type='TextLoggerHook'),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,12 @@
total_epochs = 20
checkpoint_config = dict(interval=1)
workflow = [('train', 1)]
evaluation = dict(interval=1)
# Three avaiable key indicators for ava dataset
# 'Recall@0.5@100' 'AR@100' 'PascalBoxes_Precision/mAP@0.5IOU'
evaluation = dict(
interval=1,
key_indicator='PascalBoxes_Precision/mAP@0.5IOU',
rule='greater')
log_config = dict(
interval=20, hooks=[
dict(type='TextLoggerHook'),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,12 @@
total_epochs = 20
checkpoint_config = dict(interval=1)
workflow = [('train', 1)]
evaluation = dict(interval=1)
# Three avaiable key indicators for ava dataset
# 'Recall@0.5@100' 'AR@100' 'PascalBoxes_Precision/mAP@0.5IOU'
evaluation = dict(
interval=1,
key_indicator='PascalBoxes_Precision/mAP@0.5IOU',
rule='greater')
log_config = dict(
interval=20, hooks=[
dict(type='TextLoggerHook'),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,12 @@
total_epochs = 20
checkpoint_config = dict(interval=1)
workflow = [('train', 1)]
evaluation = dict(interval=1)
# Three avaiable key indicators for ava dataset
# 'Recall@0.5@100' 'AR@100' 'PascalBoxes_Precision/mAP@0.5IOU'
evaluation = dict(
interval=1,
key_indicator='PascalBoxes_Precision/mAP@0.5IOU',
rule='greater')
log_config = dict(
interval=20, hooks=[
dict(type='TextLoggerHook'),
Expand Down
12 changes: 12 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

### master

**Highlights**

**New Features**

**Improvements**

**Bug and Typo Fixes**

- Fix a bug about ava dataset validation ([#527](https://github.com/open-mmlab/mmaction2/pull/527).

**ModelZoo**

### 0.10.0 (31/12/2020)

**Highlights**
Expand Down