Please fix hosting on Hugging Face
#10
by
tcodin
- opened
When trying to run this in the provided notebook:
pipe = pipeline("text-generation", model="starvector/starvector-8b-im2svg", trust_remote_code=True)
It says there is no module named 'starvector.'
Then I cloned the repo and ran it on a Nvidia machine and created the model worker like this:
python -m starvector.serve.model_worker --host 0.0.0.0 --controller http://localhost:10000 --port 40000 --worker http://localhost:40000 --model-path starvector/starvector-8b-im2svg
It also failed and said it was unable to download the shards or load the pretrained model.
To me it looks like you removed the model from hugging face, it would be great if you guys could fix this!