austinsilveria commited on
Commit
a5be631
1 Parent(s): 2f9c62d

switch to streamlit port

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -115,4 +115,4 @@ with gr.Blocks(css=css) as iface:
115
  4. Applying an advanced index to a pinned tensor in PyTorch will return an unpinned copy of the indexed data, which means it needs to be recopied to pinned memory before it can be sent to the GPU. If we can override this default PyTorch behavior to allow direct CPU-GPU copying from a specified advanced index without intermediate copies, we should get a nice speedup.
116
  ''')
117
 
118
- iface.queue().launch(show_api=False)
 
115
  4. Applying an advanced index to a pinned tensor in PyTorch will return an unpinned copy of the indexed data, which means it needs to be recopied to pinned memory before it can be sent to the GPU. If we can override this default PyTorch behavior to allow direct CPU-GPU copying from a specified advanced index without intermediate copies, we should get a nice speedup.
116
  ''')
117
 
118
+ iface.queue().launch(server_port=8501, show_api=False)