PashaWNN commited on
Commit
6232724
·
1 Parent(s): 4d6197c

Fix gr.Dropdown default value

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -78,7 +78,7 @@ iface = gradio.Interface(
78
  (v.value.title(), v) for _, v in
79
  InternalStructureType.__members__.items()
80
  ],
81
- value=InternalStructureType.HOLLOW.value,
82
  )
83
  ],
84
  outputs=[gradio.Model3D()],
 
78
  (v.value.title(), v) for _, v in
79
  InternalStructureType.__members__.items()
80
  ],
81
+ value=InternalStructureType.HOLLOW.value.title(),
82
  )
83
  ],
84
  outputs=[gradio.Model3D()],