Instructions to use starvector/starvector-8b-im2svg with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use starvector/starvector-8b-im2svg with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("starvector/starvector-8b-im2svg", dtype="auto") - Notebooks
- Google Colab
- Kaggle
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!