what is it?
#1
by
bghira
- opened
is this a small model made by the generative-models training kit?
it should be a part of the internal testing pipe
def test_inference(self):
model_id = "hf-internal-testing/tiny-stable-diffusion-xl-pipe"
pipeline = self.MODEL_CLASS.from_pretrained(model_id)
with tempfile.TemporaryDirectory() as tmp_dir:
pipeline.save_pretrained(tmp_dir)
pipeline = self.MODEL_CLASS.from_pretrained(tmp_dir)
do check: https://raw.githubusercontent.com/huggingface/optimum-intel/main/tests/openvino/utils_tests.py
Hi @ptx0, this is a small SDXL model randomly initialized that we are using for the optimum tests, added as hf-internal-testing/tiny-stable-diffusion-xl-pipe
didn't exist at the time but the latter can be used instead
echarlaix
changed discussion status to
closed