-
Notifications
You must be signed in to change notification settings - Fork 2
Integrate DTW calculation in training loop #13
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
base: main
Are you sure you want to change the base?
Conversation
try: | ||
scores = [ | ||
self.validation_metric_calculator._pose_score(pred, ref) | ||
for pred, ref in zip(all_predictions_poses, all_references_poses) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
self.validation_metric_calculator.corpus_score
use_fast=True, | ||
default_distance=default_dtw_dist_val, | ||
), | ||
pose_preprocessors=[], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there is a processor called osmething like - "normalizeshoulders"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I used NormalizePosesProcessor(PoseProcessor) https://github.com/sign-language-processing/pose-evaluation/blob/e4704ba6bddd28699fd7bdf8bac350838f161b94/pose_evaluation/metrics/pose_processors.py#L54
|
… only over the valid (unpadded) frames of each reference sequence
Main changes:
|
No description provided.