huggingface / audio-transformers-course

The Hugging Face Course on Transformers for Audio
Apache License 2.0
320 stars 98 forks source link

Check My Progress doesn't evaluate submission #151

Open vdyma opened 10 months ago

vdyma commented 10 months ago

Hi!

I just finished training a model for hands-on exercise of Unit 4. Since even DistilHuBERT can take hours to train, I used PEFT library and used LoRA to finetune the model. When finished, I pushed my model to hf hub using the command provided in the course, but slightly modified it to get rid of error I was getting. The provided command was: trainer.push_to_hub(**kwargs) I used: trainer.model.push_to_hub(**kwargs) This is the repository for the model: https://huggingface.co/ThreeBlessings/distilhubert-finetuned-gtzan. However when I try to check my progress with the Check My Progress space, it doesn't show any evaluation results for my model. The progress table stays with default values.

I thought maybe it has something to do with me pushing LoRA model, not the full version. So I merged the LoRA weights with the base model weights and pushed it to huggingface hub, resulting in this repository: https://huggingface.co/ThreeBlessings/distilhubert-finetuned-gtzan-merged. The Check My Progress space still didn't update after 24 hours.

I never modified kwargs that was provided in the course. What am I doing wrong? Is there something I'm missing here?