Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -218,15 +218,17 @@ with gr.Blocks(theme='gradio/soft') as demo:
|
|
218 |
gr.Markdown("This model is a ControlNet model using MediaPipe hand landmarks for control.")
|
219 |
|
220 |
gr.Markdown("""
|
221 |
-
|
222 |
|
223 |
-
|
224 |
-
|
|
|
225 |
|
226 |
-
|
227 |
|
228 |
-
|
229 |
-
|
|
|
230 |
""")
|
231 |
model_type = gr.Radio(["Standard", "Hand Encoding"], label="Model preprocessing", info="We developed two models, one with standard mediapipe landmarks, and one with different (but similar) coloring on palm landmards to distinguish left and right")
|
232 |
|
|
|
218 |
gr.Markdown("This model is a ControlNet model using MediaPipe hand landmarks for control.")
|
219 |
|
220 |
gr.Markdown("""
|
221 |
+
Standard Model can be found at [https://huggingface.co/Vincent-luo/controlnet-hands](https://huggingface.co/Vincent-luo/controlnet-hands)
|
222 |
|
223 |
+
Model using hand encoding can be found at [https://huggingface.co/MakiPan/controlnet-encoded-hands-130k/ ](https://huggingface.co/MakiPan/controlnet-encoded-hands-130k/)
|
224 |
+
|
225 |
+
Standard model Dataset can be found at [https://huggingface.co/datasets/MakiPan/hagrid250k-blip2](https://huggingface.co/datasets/MakiPan/hagrid250k-blip2)
|
226 |
|
227 |
+
Hand Encoding Dataset can be found at [https://huggingface.co/datasets/MakiPan/hagrid-hand-enc-250k](https://huggingface.co/datasets/MakiPan/hagrid-hand-enc-250k)
|
228 |
|
229 |
+
Standard preprocessing script can be found at [https://github.com/Maki-DS/Jax-Controlnet-hand-training/blob/main/normal-preprocessing.py](https://github.com/Maki-DS/Jax-Controlnet-hand-training/blob/main/normal-preprocessing.py)
|
230 |
+
|
231 |
+
Hand Encoding preprocessing script can be found at [https://github.com/Maki-DS/Jax-Controlnet-hand-training/blob/main/Hand-encoded-preprocessing.py](https://github.com/Maki-DS/Jax-Controlnet-hand-training/blob/main/Hand-encoded-preprocessing.py)
|
232 |
""")
|
233 |
model_type = gr.Radio(["Standard", "Hand Encoding"], label="Model preprocessing", info="We developed two models, one with standard mediapipe landmarks, and one with different (but similar) coloring on palm landmards to distinguish left and right")
|
234 |
|