Gennaro Vaccaro

Results 13 comments of Gennaro Vaccaro

@Ki6an I'm unable to install fastt5 (latest version) for this error: `ERROR: No matching distribution found for onnxruntime==1.10.0` I can only install the version 0.0.5 of fastt5.

@maxreciprocate Regarding the dataset and train, I use this train() code: ``` trlx.train( samples = [(text,output) for text,output in zip(ttv_ds['train']['text'],ttv_ds['train']['output'])], rewards = labels, eval_prompts=ttv_ds['validation']['text'][:16], config = config, ) ``` Where:...

@PhungVanDuy I'm using the standard configuration of `ppo_config_cnn_daily.yml` (the pipeline or trainer in this file). As code i'm using [this](https://github.com/CarperAI/trlx/blob/main/examples/summarize_daily_cnn/t5_summarize_daily_cnn.py) code (the only difference is that I'm using my own...