Alexandra

Results 7 comments of Alexandra

I tried to still use Dashboards by downgrading Notebook to 5.5 but that didn't work because Dashboards installs the latest version of Notebook. Can you change which version gets installed...

Works, thank you! I had been changing the packages in the wrong order (uninstall/reinstall notebook as 5.5 and then install dashboard) and dashboard kept upgrading my notebook to 5.7. So...

Hi, I agree with @artidoro and would also love a `GenerationArguments` class that can be passed along with `Seq2SeqTrainingArgument` to `HfArgumentParser`. @gante that is also how I interpret this request.

Actually I ended up having issues with `GenerationConfig`* so I just pass the arguments directly to `generate(**config)`. Only reason it would be nice to pass generation parameters directly to the...

Update: I'm currently avoiding the issue by just using CPUs. However I did get further in fixing the issue: - Updated Theano to use the new gpu back-end - Set...

@brunocvs7 I ended up going in a different direction with my project and no longer needed to use this model. If you don't need the character-level encoding, I would suggest...

Nevermind, seems to be working when I pass in `max_tokens=max_source_positions` in `scripts/inference.py` ```python bart = BARTModel.from_pretrained( model_dir, checkpoint_file=model_file, data_name_or_path=bin_folder, gpt2_encoder_json=encoder_file, gpt2_vocab_bpe=vocab_file, max_source_positions=max_source_positions, max_tokens=max_source_positions ) ```