Negin Raoof

Results 2 issues of Negin Raoof

Hi, we are trying to reproduce table 1 results, using the [https://www.kaggle.com/datasets/xhlulu/flickrfaceshq-dataset-nvidia-resized-256px](url) FFHQ256 dataset. So calculating FID for the reconstructed inpainting images (first 500 images of the dataset), we see...

I am trying to use the HF model "mlfoundations/dclm-7b-it" for inference, simply using the code below: ``` model = AutoModelForCausalLM.from_pretrained("mlfoundations/dclm-7b-it") gen_kwargs = {"max_new_tokens": 500, "temperature": 0} output = model.generate(inputs['input_ids'], **gen_kwargs)...