-
-
Notifications
You must be signed in to change notification settings - Fork 786
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
update weights optimization #1791
base: develop
Are you sure you want to change the base?
update weights optimization #1791
Conversation
Merging this PR should fix #1789 |
@Lebourdais suggested that we set @clement-pages can you update your PR to make this change and also update the |
OK, I will update it. |
In the same way that is done for the speaker diarization task
…ages/pyannote-audio into fix-optimization-issue
optimizers = ( | ||
[optimizers] if not isinstance(optimizers, list) else optimizers | ||
) |
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.
optimizers = ( | |
[optimizers] if not isinstance(optimizers, list) else optimizers | |
) | |
optimizers = optimizers if isinstance(optimizers, list) else [optimizers] |
@@ -137,6 +139,7 @@ def __init__( | |||
task: Optional[Task] = None, | |||
n_sources: int = 3, | |||
use_wavlm: bool = True, | |||
wavlm_frozen: bool = False, |
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.
Did you double check that it does not break loading https://huggingface.co/pyannote/separation-ami-1.0?
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.
No, I will check it tomorrow.
Co-authored-by: Hervé BREDIN <[email protected]>
BREAKING: remove
finetune_wavlm
attributes from thePixIT
task, and replace it withwalm_frozen
inTotatonet
separation model, to be consistent with what is done for the segmentation model.