TheAverageDetective commited on
Commit
51d7fb0
·
verified ·
1 Parent(s): 6816e72

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +36 -0
README.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: other
5
+ license_name: flux-1-dev-non-commercial-license
6
+ license_link: LICENSE.md
7
+ extra_gated_prompt: By clicking "Agree", you agree to the [FluxDev Non-Commercial
8
+ License Agreement](https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md)
9
+ and acknowledge the [Acceptable Use Policy](https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/POLICY.md).
10
+ tags:
11
+ - text-to-image
12
+ - image-generation
13
+ - flux
14
+ - openvino
15
+ - openvino-export
16
+ pipeline_tag: text-to-image
17
+ base_model: black-forest-labs/FLUX.1-dev
18
+ ---
19
+
20
+ This model was converted to OpenVINO from [`black-forest-labs/FLUX.1-dev`](https://huggingface.co/black-forest-labs/FLUX.1-dev) using [optimum-intel](https://github.com/huggingface/optimum-intel)
21
+ via the [export](https://huggingface.co/spaces/echarlaix/openvino-export) space.
22
+
23
+ First make sure you have optimum-intel installed:
24
+
25
+ ```bash
26
+ pip install optimum[openvino]
27
+ ```
28
+
29
+ To load your model you can do as follows:
30
+
31
+ ```python
32
+ from optimum.intel import OVDiffusionPipeline
33
+
34
+ model_id = "TheAverageDetective/FLUX.1-dev-openvino"
35
+ model = OVDiffusionPipeline.from_pretrained(model_id)
36
+ ```