IterationMetric discussion
See original GitHub issueš Feature
Iād like to discuss a bit about your PR on IterationMetric (https://github.com/Project-MONAI/MONAI/pull/1488).
As far as I understand, the idea is to compute metric value on each iteration and āall gatherā everything on epoch ended ?
However, final list contains all metric values for a single epoch: [m1, m2, ..., mN]
.
@Nic-Ma, letās discuss here then.
Issue Analytics
- State:
- Created 3 years ago
- Comments:7 (4 by maintainers)
Top Results From Across the Web
Iteration Retrospective - Scaled Agile Framework
Agile teams collect and apply iteration metrics for visibility and to help ... Open a discussion and record the results under three headings....
Read more >Metrics for Iteration Summary Reports - Scrum Expert
The Iteration Statistics Summary displays three sections of data (user stories, user stories points and velocity) at three different stage ofĀ ...
Read more >Iteration Management ā Post #10 ā Metrics - Jon Kruger
In my opinion, all this is going to do is distract the team from the goal of delivering quality, working software. Now they...
Read more >Five agile metrics you won't hate - Atlassian
How to use agile metrics. Learn about sprint burndown, epic and release burndown, velocity, control charts & the cumulative flow diagram.
Read more >Agile Metrics: The 15 That Actually Matter for Success - Plutora
The more iterations, the more precise the forecast. The unit of measurement is hours or story points. Velocity also determines the ability of...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Hi @sdesrozis ,
Yes, thatās the expected behavior, you can use an algorithm(function or callable class) as arg or define subclass.
Thanks.
Hi @vfdev-5 ,
Here is the following PR to consume the metrics output: https://github.com/Project-MONAI/MONAI/pull/1497 Itās still under review. The idea is to save metric details into
engine.state
, then other handlers can save it to file or visualize somewhere.Thanks.