Shivanand Roy

Results 14 comments of Shivanand Roy

T5 models are text to text models & they expect `source_text` and `target_text` to be a string. I would suggest to make sure your dataframe has values in string format....

@rahat10120141 : How does your `train_df` looks like before feeding to model?

fixed in #13 ```python # pip install simplet5 from simplet5 import SimpleT5 model = SimpleT5() ``` Thanks for pointing out

I will include wandb integration in the next release !!

@Sripaad Sorry for late reply. Now, SimpleT5 (latest pre-release) supports all the pytorch-lightning supported loggers ``` !pip install wandb from pytorch_lightning.loggers import WandbLogger wandb_logger = WandbLogger(project="simplet5") ``` ``` from simplet5...

@somakaushik98 : Please update the requirements.txt file, as LongT5 is implemented in the latest version of transformers

@experimarketing : Right now, it only works with T5 and mT5 on single GPU. I was away from the development for a couple of months. So, I didn't upgrade it...

@experimarketing : I'm afraid, It won't!

@z-arabi Currently this repository doesn't support finetuning. But good point - I will make some time to integrate fine tuning available.