Ali Tehrani
Ali Tehrani
Drew, Thanks for your reply. I've already installed llvm-5.0 and produced llvm ir via JLang. but those *.ll files were not compatible with other llvm-based tools. I've tried this. That's...
Thanks. Drew, since you are an expert in this area, do you have any recommendations on generating LLVM IR for java programs? I searched a lot in this area to...
> > Could you share a reproducer? If you have `os.environ["TOKENIZERS_PARALLELISM"] = "1" ` ( in python) or if you have the correct ray package for rust / depends on...
Hi, Is there any way to specify `decoder_start_token_id` during training as well? Like ``` outputs = model( input_ids=batch["input_ids"], attention_mask=batch["attention_mask"], labels=batch["labels"], decoder_start_token_id=decoder_start_token_id, ) loss = outputs.loss ``` Each batch may require...
Gotcha! I was a bit confused by the warning saying `The decoder_input_ids are now created based on the "labels", no need to pass them yourself anymore.` when using EncoderDecoderModel. So...