github_sync / app.py
Wagtail
Update app.py
899caff unverified
raw
history blame contribute delete
424 Bytes
import gradio as gr
similar_app = "https://huggingface.co/spaces/sems/pose-think"
def greet(name):
return "Hello " + name + "!!"
description_string = """
Simple Demo app that should be developed into a Movement Assessment similar to the [posture analysis](https://huggingface.co/spaces/sems/pose-think).
"""
iface = gr.Interface(fn=greet, inputs="text", outputs="text", description=description_string)
iface.launch()