playing around with gradio
Browse files
app.py
CHANGED
@@ -36,8 +36,15 @@ with demo:
|
|
36 |
gr.Button("New Tiger")
|
37 |
with gr.TabItem("Benchmark Information"):
|
38 |
gr.Dataframe(
|
39 |
-
headers=["
|
40 |
-
value=[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
)
|
42 |
|
43 |
demo.launch()
|
|
|
36 |
gr.Button("New Tiger")
|
37 |
with gr.TabItem("Benchmark Information"):
|
38 |
gr.Dataframe(
|
39 |
+
headers=["Parameter", "Value"],
|
40 |
+
value=[
|
41 |
+
["Transformers Version", "4.22.dev0"],
|
42 |
+
["TensorFlow Version", "2.9.1"],
|
43 |
+
["Pytorch Version", "1.11.0"],
|
44 |
+
["OS", "22.04 LTS (3090) / Debian 10 (others)"],
|
45 |
+
["CUDA", "11.6 (3090) / 11.3 (others)"],
|
46 |
+
["Is there code?", "Yes -- https://gist.github.com/gante/f0017e3f13ac11b0c02e4e4db351f52f"],
|
47 |
+
],
|
48 |
)
|
49 |
|
50 |
demo.launch()
|