Spaces:
Runtime error
Runtime error
Point model references at the mage-flow-community mirror
#10
by a7543 - opened
README.md
CHANGED
|
@@ -32,4 +32,4 @@ Choose **Mage-Flow-Turbo · Fast** (4 steps, CFG 1.0) or **Mage-Flow · Quality*
|
|
| 32 |
|
| 33 |
- Paper: [Mage-Flow: An Efficient Native-Resolution Foundation Model for Image Generation and Editing](https://huggingface.co/papers/2607.19064)
|
| 34 |
- GitHub: [microsoft/Mage](https://github.com/microsoft/Mage)
|
| 35 |
-
- Models: [Mage-Flow](https://huggingface.co/
|
|
|
|
| 32 |
|
| 33 |
- Paper: [Mage-Flow: An Efficient Native-Resolution Foundation Model for Image Generation and Editing](https://huggingface.co/papers/2607.19064)
|
| 34 |
- GitHub: [microsoft/Mage](https://github.com/microsoft/Mage)
|
| 35 |
+
- Models: [Mage-Flow](https://huggingface.co/mage-flow-community/Mage-Flow), [Mage-Flow-Turbo](https://huggingface.co/mage-flow-community/Mage-Flow-Turbo), [Mage-Flow-Edit](https://huggingface.co/mage-flow-community/Mage-Flow-Edit), [Mage-Flow-Edit-Turbo](https://huggingface.co/mage-flow-community/Mage-Flow-Edit-Turbo)
|
app.py
CHANGED
|
@@ -16,11 +16,11 @@ from mage_flow.pipeline import MageFlowPipeline
|
|
| 16 |
|
| 17 |
MODEL_VARIANTS = {
|
| 18 |
"turbo": {
|
| 19 |
-
"t2i": "
|
| 20 |
"t2i_steps": 4, "edit_steps": 4, "cfg": 1.0,
|
| 21 |
},
|
| 22 |
"quality": {
|
| 23 |
-
"t2i": "
|
| 24 |
"t2i_steps": 20, "edit_steps": 30, "cfg": 5.0,
|
| 25 |
},
|
| 26 |
}
|
|
@@ -131,10 +131,10 @@ with gr.Blocks(css=CSS) as demo:
|
|
| 131 |
"# Mage-Flow\n"
|
| 132 |
"Efficient Native-Resolution Foundation Model for Image Generation and Editing. "
|
| 133 |
"Enter a prompt to generate an image, or upload an image to edit it.\n\n"
|
| 134 |
-
"Models: [Mage-Flow](https://huggingface.co/
|
| 135 |
-
"[Mage-Flow-Turbo](https://huggingface.co/
|
| 136 |
-
"[Mage-Flow-Edit](https://huggingface.co/
|
| 137 |
-
"[Mage-Flow-Edit-Turbo](https://huggingface.co/
|
| 138 |
"[Paper](https://huggingface.co/papers/2607.19064) | "
|
| 139 |
"[GitHub](https://github.com/microsoft/Mage)"
|
| 140 |
)
|
|
|
|
| 16 |
|
| 17 |
MODEL_VARIANTS = {
|
| 18 |
"turbo": {
|
| 19 |
+
"t2i": "mage-flow-community/Mage-Flow-Turbo", "edit": "mage-flow-community/Mage-Flow-Edit-Turbo",
|
| 20 |
"t2i_steps": 4, "edit_steps": 4, "cfg": 1.0,
|
| 21 |
},
|
| 22 |
"quality": {
|
| 23 |
+
"t2i": "mage-flow-community/Mage-Flow", "edit": "mage-flow-community/Mage-Flow-Edit",
|
| 24 |
"t2i_steps": 20, "edit_steps": 30, "cfg": 5.0,
|
| 25 |
},
|
| 26 |
}
|
|
|
|
| 131 |
"# Mage-Flow\n"
|
| 132 |
"Efficient Native-Resolution Foundation Model for Image Generation and Editing. "
|
| 133 |
"Enter a prompt to generate an image, or upload an image to edit it.\n\n"
|
| 134 |
+
"Models: [Mage-Flow](https://huggingface.co/mage-flow-community/Mage-Flow), "
|
| 135 |
+
"[Mage-Flow-Turbo](https://huggingface.co/mage-flow-community/Mage-Flow-Turbo), "
|
| 136 |
+
"[Mage-Flow-Edit](https://huggingface.co/mage-flow-community/Mage-Flow-Edit), "
|
| 137 |
+
"[Mage-Flow-Edit-Turbo](https://huggingface.co/mage-flow-community/Mage-Flow-Edit-Turbo) | "
|
| 138 |
"[Paper](https://huggingface.co/papers/2607.19064) | "
|
| 139 |
"[GitHub](https://github.com/microsoft/Mage)"
|
| 140 |
)
|