mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-27 02:30:17 +08:00
14 lines
263 B
Python
14 lines
263 B
Python
# Demo: (Dataframe) -> (Dataframe)
|
|
|
|
import gradio as gr
|
|
import numpy as np
|
|
import random
|
|
|
|
def transpose(matrix):
|
|
return matrix.T
|
|
|
|
gr.Interface(transpose,
|
|
gr.inputs.Dataframe(type="numpy", datatype="number", row_count=5, col_count=3),
|
|
"numpy"
|
|
).launch()
|