Spaces:
Sleeping
Sleeping
Commit ·
2901d44
1
Parent(s): e9721d6
update
Browse files
main.py
CHANGED
|
@@ -62,9 +62,9 @@ def run():
|
|
| 62 |
fn=predict,
|
| 63 |
description=description,
|
| 64 |
inputs=[
|
| 65 |
-
gr.Textbox(lines=10, label="Bytes of Target Function (in hex)", value="
|
| 66 |
gr.Textbox(lines=10, label="Decompiled C Source Code", value="int foo() { return 42; }"),
|
| 67 |
-
gr.Textbox(label="Compiler", value="
|
| 68 |
gr.Textbox(label="Compiler Flags", value="-O2"),
|
| 69 |
],
|
| 70 |
outputs=[
|
|
|
|
| 62 |
fn=predict,
|
| 63 |
description=description,
|
| 64 |
inputs=[
|
| 65 |
+
gr.Textbox(lines=10, label="Bytes of Target Function (in hex)", value="b8 2a 00 00 00 c3"),
|
| 66 |
gr.Textbox(lines=10, label="Decompiled C Source Code", value="int foo() { return 42; }"),
|
| 67 |
+
gr.Textbox(label="Compiler", value="g++"),
|
| 68 |
gr.Textbox(label="Compiler Flags", value="-O2"),
|
| 69 |
],
|
| 70 |
outputs=[
|