ejschwartz commited on
Commit
f406c8a
·
verified ·
1 Parent(s): 2b4f4cd

Increase duration to 120s

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ description = """
13
  This is a space for testing the [LLM4Decompile 6.7B V2 model](https://huggingface.co/LLM4Binary/llm4decompile-6.7b-v2). It expects to be given a decompiled function output by Ghidra. I simply copy and paste from the Ghidra GUI, but this is not the method recommended by the official model page, so YMMV.
14
  """
15
 
16
- @spaces.GPU
17
  def predict(input_asm):
18
  before = f"# This is the assembly code:\n"#prompt
19
  after = "\n# What is the source code?\n"#prompt
 
13
  This is a space for testing the [LLM4Decompile 6.7B V2 model](https://huggingface.co/LLM4Binary/llm4decompile-6.7b-v2). It expects to be given a decompiled function output by Ghidra. I simply copy and paste from the Ghidra GUI, but this is not the method recommended by the official model page, so YMMV.
14
  """
15
 
16
+ @spaces.GPU(duration=120)
17
  def predict(input_asm):
18
  before = f"# This is the assembly code:\n"#prompt
19
  after = "\n# What is the source code?\n"#prompt