andreped's picture
Setup demo app [no ci]
7c1e417 unverified
raw
history blame
No virus
404 Bytes
from src.gui import WebUI
def main():
print("Launching demo...")
# cwd = "/Users/andreped/workspace/LungTumorMask/" # local testing -> macOS
cwd = "/home/user/app/" # production -> docker
class_name = "tumor"
# initialize and run app
app = WebUI(model_name=model_name, class_name=class_name, cwd=cwd)
app.run()
if __name__ == "__main__":
main()