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

collect-outputs util #1986

Merged
merged 26 commits into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
72e6ce0
💾 started collect-outputs util, would like to generate eval tables au…
jprokos26 Aug 25, 2023
f23e888
Merge branch 'develop' into collect-outputs
jprokos26 Aug 25, 2023
79453a2
Updating collect_outputs with develop changes
jprokos26 Aug 25, 2023
2ccce24
💾
jprokos26 Aug 29, 2023
68d0ac6
💾
jprokos26 Aug 29, 2023
d61c08b
quicksave, bones of parser done
jprokos26 Aug 31, 2023
784dbb6
removing duplicate old code
jprokos26 Aug 31, 2023
c74df63
working table output, parsers not complete
jprokos26 Aug 31, 2023
ca3f323
💾 no tide metrics
jprokos26 Aug 31, 2023
3340c98
complete carla implementation
jprokos26 Aug 31, 2023
2f6c5aa
💾 initial sleeper collection
jprokos26 Sep 1, 2023
87d2b01
💾 last column of table getting dropped, need to fix vertical bars
jprokos26 Sep 3, 2023
0b8bb41
poison attack implemented, need to fixup attack params
jprokos26 Sep 5, 2023
f0831b3
ignore symlinks when globbing
jprokos26 Sep 12, 2023
72dc9e4
working symlink hrefs in tables
jprokos26 Sep 12, 2023
f1851a1
removing py3.9 requirement
jprokos26 Sep 12, 2023
72e40b1
adding collect-utils documentation
jprokos26 Sep 12, 2023
8b8f2c2
adding collect-utils documentation
jprokos26 Sep 12, 2023
ebb6959
removing breakpoints
jprokos26 Sep 12, 2023
aa74e47
minor cleanup, change cleaned png to only look at poisoned ones
jprokos26 Sep 13, 2023
8319ae6
Remove absolute pathing from docs
jprokos26 Sep 13, 2023
e087ed9
prevent running armory runs from being cleaned
jprokos26 Sep 13, 2023
45454ec
addressing https://github.com/twosixlabs/armory/pull/1986\#discussion…
jprokos26 Sep 14, 2023
48f1efe
addressing https://github.com/twosixlabs/armory/pull/1986\#discussion…
jprokos26 Sep 22, 2023
723c810
add pgdpatch, addressing: https://github.com/twosixlabs/armory/pull/1…
jprokos26 Nov 14, 2023
23a11d3
updating docs
jprokos26 Nov 14, 2023
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
5 changes: 5 additions & 0 deletions armory/cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from armory.cli.tools.collect_outputs import collect_armory_outputs
from armory.cli.tools.generate_shapes import generate_shapes
from armory.cli.tools.log_current_branch import log_current_branch
from armory.cli.tools.plot_mAP_by_giou_with_patch_cli import (
Expand All @@ -13,4 +14,8 @@
plot_mAP_by_giou_with_patch_cli,
"Visualize the output of the metric 'object_detection_AP_per_class_by_giou_from_patch.'",
),
"collect-outputs": (
collect_armory_outputs,
"Convert runs from the output directory into tables",
),
}
Loading
Loading