dimi1357

Results 7 comments of dimi1357

I found a temporal solution, add this to the start of `webui-user.bat` file (after `@echo off`): ``` @RD /S /Q "C:\\venv\Lib\site-packages\scipy" @RD /S /Q "C:\\venv\Lib\site-packages\scipy.libs" @RD /S /Q "C:\\venv\Lib\site-packages\scipy-1.10.0.dist-info" ```...

> > I found a temporal solution, add this to the start of `webui-user.bat` file (after `@echo off`): > > ``` > > @RD /S /Q "C:\\venv\Lib\site-packages\scipy" > > @RD...

> @dimi1357 out of curiosity, what does training this look like? This is my training loop: ```python x, encoder_attention_mask, y, decoder_attention_mask, _ = batch x = x.to(self.device) y = y.to(self.device)...

> Thanks for the Feature request and the in-detail code! I will think a bit more about how to implement this and get back to you! I forgot to add...

> @dimi1357 Did you finally make it work? Can you provide me the "full changes" in some way? I am also interested in using the GPT2 model as decoder. You...

> Hey @dimi1357 . So I think the Encoder Decoder roadmap is as follows: > > * In ~2 weeks, we will open-source a clean notebook showing how a `Bert2Bert`...

> Will finish the PR tomorrow then it should be pretty easy to do BERT2GPT2. Thanks for the implementation, I'm going to test it now.