loubnabnl HF staff commited on
Commit
0b13087
1 Parent(s): 29fd459

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -8,8 +8,8 @@ description = "This is a space to predict complexity of Java code with [CodeParr
8
 
9
  #add examples
10
  example = [
11
- ['import java.io.*;\nimport java.util.*;\n\npublic class C125 {\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader r = new BufferedReader(new InputStreamReader(System.in));\n\t\tString s = r.readLine();\n\t\tint n = new Integer(s);\n\t\tSystem.out.println("0 0 "+n);\n\t}\n}\n', 1],
12
- ['import java.util.*;\n\npublic class ehab4 {\n public static void main( String[] args ) {\n Scanner in = new Scanner( System.in );\n\tint a = 0, b = 0;\n\tSystem.out.println( "? 0 0 " );\n\tSystem.out.flush();\n\tint c = in.nextInt();\n\tfor ( int i = 29; i >= 0; i-- ) {\n\t System.out.println( "? " + ( a + ( 1 << i ) ) + " " + b );\n\t System.out.flush();\n\t int q1 = in.nextInt();\n\t System.out.println( "? " + a + " " + ( b + ( 1 << i ) ) );\n\t System.out.flush();\n\t int q2 = in.nextInt();\n\t if ( q1 == q2 ) {\n\t\tif ( c == 1 )\n\t\t a += ( 1 << i );\n\t\telse if ( c == -1 )\n\t\t b += ( 1 << i );\n\t\tc = q1;\n\t }\n\t else if ( q1 == -1 ) {\n\t\ta += ( 1 << i );\n\t\tb += ( 1 << i );\n\t }\n\t else if ( q1 == -2 )\n\t\treturn;\n\t}\n\tSystem.out.println( "! " + a + " " + b );\n\tSystem.out.flush();\n }\n}\n', 1]]
13
 
14
  # model to be changed to the finetuned one
15
  tokenizer = AutoTokenizer.from_pretrained("codeparrot/codeparrot-small-multi")
@@ -40,6 +40,7 @@ iface = gr.Interface(
40
  ],
41
  examples=example,
42
  layout="vertical",
 
43
  description=description,
44
  title=title
45
  )
 
8
 
9
  #add examples
10
  example = [
11
+ ['import java.io.*;\nimport java.util.*;\n\npublic class C125 {\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader r = new BufferedReader(new InputStreamReader(System.in));\n\t\tString s = r.readLine();\n\t\tint n = new Integer(s);\n\t\tSystem.out.println("0 0 "+n);\n\t}\n}\n'],
12
+ ['import java.util.*;\n\npublic class ehab4 {\n public static void main( String[] args ) {\n Scanner in = new Scanner( System.in );\n\tint a = 0, b = 0;\n\tSystem.out.println( "? 0 0 " );\n\tSystem.out.flush();\n\tint c = in.nextInt();\n\tfor ( int i = 29; i >= 0; i-- ) {\n\t System.out.println( "? " + ( a + ( 1 << i ) ) + " " + b );\n\t System.out.flush();\n\t int q1 = in.nextInt();\n\t System.out.println( "? " + a + " " + ( b + ( 1 << i ) ) );\n\t System.out.flush();\n\t int q2 = in.nextInt();\n\t if ( q1 == q2 ) {\n\t\tif ( c == 1 )\n\t\t a += ( 1 << i );\n\t\telse if ( c == -1 )\n\t\t b += ( 1 << i );\n\t\tc = q1;\n\t }\n\t else if ( q1 == -1 ) {\n\t\ta += ( 1 << i );\n\t\tb += ( 1 << i );\n\t }\n\t else if ( q1 == -2 )\n\t\treturn;\n\t}\n\tSystem.out.println( "! " + a + " " + b );\n\tSystem.out.flush();\n }\n}\n']]
13
 
14
  # model to be changed to the finetuned one
15
  tokenizer = AutoTokenizer.from_pretrained("codeparrot/codeparrot-small-multi")
 
40
  ],
41
  examples=example,
42
  layout="vertical",
43
+ theme="darkpeach",
44
  description=description,
45
  title=title
46
  )