MaximoFN

Results 5 comments of MaximoFN

It is not a path problem, I have put the json in `./pretrained_model/wav2vec2-base-960h/`. I even added in `/usr/local/lib/python3.10/dist-packages/transformers/configuration_utils.py`, in line 659 this ``` with open(resolved_config_file, "r", encoding="utf-8") as reader: print(reader.read())...

I ran it in a docker which is documented here [https://github.com/maximofn/aniPortrait_docker](https://github.com/maximofn/aniPortrait_docker), in case you want to take a better look at it

I have the same problem, i use ``` curl -fsSL https://raw.githubusercontent.com/m1guelpf/plz-cli/main/install.sh | sh - ``` on Ubuntu 20.04 and get same error

Thank you, I fixed the error. The problem was that I was downloading the json like this `wget https://huggingface.co/facebook/wav2vec2-base-960h/blob/main/config.json` and now I download it like this `wget -q https://huggingface.co/facebook/wav2vec2-base-960h/raw/main/config.json`. That...