Spaces:
Runtime error
Runtime error
Reorganize layout: adjust column scales for tensor preview and info display
Browse files
app.py
CHANGED
|
@@ -373,9 +373,9 @@ with gr.Blocks(title="Hugging Face Model Weight Inspector") as demo:
|
|
| 373 |
with gr.Tabs():
|
| 374 |
with gr.Tab("Results"):
|
| 375 |
with gr.Row():
|
| 376 |
-
with gr.Column():
|
| 377 |
preview_output = gr.Markdown(label="Tensor Preview", elem_classes="tensor-preview")
|
| 378 |
-
with gr.Column():
|
| 379 |
info_output = gr.Markdown(label="Tensor Info")
|
| 380 |
download_output = gr.File(label="Download Tensor (.pt file)", elem_classes="compact-file")
|
| 381 |
log_output = gr.Textbox(
|
|
|
|
| 373 |
with gr.Tabs():
|
| 374 |
with gr.Tab("Results"):
|
| 375 |
with gr.Row():
|
| 376 |
+
with gr.Column(scale=3):
|
| 377 |
preview_output = gr.Markdown(label="Tensor Preview", elem_classes="tensor-preview")
|
| 378 |
+
with gr.Column(scale=1):
|
| 379 |
info_output = gr.Markdown(label="Tensor Info")
|
| 380 |
download_output = gr.File(label="Download Tensor (.pt file)", elem_classes="compact-file")
|
| 381 |
log_output = gr.Textbox(
|