Avishai Elmakies

Results 27 comments of Avishai Elmakies

I am having a similar issue with DDP. I think that the DDP isn't able to save all of the recoverables in time before it reaches a place he needs...

@TParcollet Thanks for the fast reply! I will admit I used someone's code who added the optimizers there so I thought it was fine. Is there a better location to...

[Code.zip](https://github.com/speechbrain/speechbrain/files/13953849/Code.zip) Those are the files I use. Emotion_finetune.py is the main file. Emotion is a package I created that has most of the logic for the finetuning

@TParcollet I added the code. In code.zip file(In my previous message) I will look at the 1.0, I used pip to download the library, but if v1 is more appropriate...

@TParcollet Do I need to use speechbrain v1 for that? Do you have an example?

@TParcollet I will try to explain what I want to do. I need to finetune a wavlm model on an emotion data. My main problem is that I want the...

I tried making the save on run on main thread but it still not working. ``` if stage == sb.Stage.VALID: old_lr, new_lr = self.hparams.lr_annealing(1 - stats["accuracy"]) sb.nnet.schedulers.update_learning_rate(self.optimizer, new_lr) old_lr_wav2vec2,new_lr_wav2vec2 =...

Hi I updated my code to v1 and after the refactoring this seems to work fine again! I would love if someone can look at issue #2340.

I tried to keep the API as similar as possible to ```llama``` and ```gamma```. they both put it third. isn't it kinda of a problem with AutoModel to have them...

about the forward call for the embedding layer. I think it has to take position ids as an argument. otherwise it will not work with packed sentences.