Aminfri commited on
Commit
273c754
·
verified ·
1 Parent(s): 095a179

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +25 -0
README.md ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: eniora/Juggernaut_XL_Ragnarok
3
+ pipeline_tag: text-to-image
4
+ tags:
5
+ - openvino
6
+ - openvino-export
7
+ ---
8
+
9
+ This model was converted to OpenVINO from [`eniora/Juggernaut_XL_Ragnarok`](https://huggingface.co/eniora/Juggernaut_XL_Ragnarok) using [optimum-intel](https://github.com/huggingface/optimum-intel)
10
+ via the [export](https://huggingface.co/spaces/echarlaix/openvino-export) space.
11
+
12
+ First make sure you have optimum-intel installed:
13
+
14
+ ```bash
15
+ pip install optimum[openvino]
16
+ ```
17
+
18
+ To load your model you can do as follows:
19
+
20
+ ```python
21
+ from optimum.intel import OVDiffusionPipeline
22
+
23
+ model_id = "Aminfri/Juggernaut_XL_Ragnarok-openvino"
24
+ model = OVDiffusionPipeline.from_pretrained(model_id)
25
+ ```