Diksha2001 commited on
Commit
30b9ad3
·
verified ·
1 Parent(s): 12b2deb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +33 -29
app.py CHANGED
@@ -6,7 +6,7 @@ def run_pipeline(pdf_file, system_prompt, max_step, learning_rate, epochs, model
6
  # Construct job input
7
  data = {
8
  "input": {
9
- "pdf_file": pdf_file,
10
  "system_prompt": system_prompt,
11
  "max_step": max_step,
12
  "learning_rate": learning_rate,
@@ -26,39 +26,43 @@ def run_pipeline(pdf_file, system_prompt, max_step, learning_rate, epochs, model
26
  )
27
  stdout, stderr = process.communicate()
28
 
29
- if process.returncode != 0:
30
- return {"status": "error", "details": f"Handler failed: {stderr.strip()}"}
31
-
32
- # Parse the handler output
33
- try:
34
- handler_output = json.loads(stdout)
35
- if handler_output.get("status") == "success":
36
- # Extract relevant fields
37
- model_name = handler_output.get("model_name", "N/A")
38
- evaluation_results = handler_output.get("evaluation_results", {})
39
- semantic_score = evaluation_results.get("average_semantic_score", "N/A")
40
- bleu_score = evaluation_results.get("average_bleu_score", "N/A")
41
-
42
- return {
43
- "status": "success",
44
- "model_name": model_name,
45
- "evaluation_results": {
46
- "average_semantic_score": semantic_score,
47
- "average_bleu_score": bleu_score
48
- },
49
- }
50
- else:
51
- # Return error from handler
52
- return handler_output
53
-
54
- except json.JSONDecodeError:
55
- return {"status": "error", "details": f"Invalid JSON from handler: {stdout.strip()}"}
 
 
 
56
 
57
  except FileNotFoundError:
58
  return {"status": "error", "details": "Handler script not found"}
59
  except Exception as e:
60
  return {"status": "error", "details": str(e)}
61
 
 
62
  # Define Gradio interface
63
  with gr.Blocks(css='''
64
  .gradio-container {
@@ -132,7 +136,7 @@ with gr.Blocks(css='''
132
  # Layout structure with improved spacing
133
  with gr.Row():
134
  with gr.Column(scale=2):
135
- pdf_file = gr.Textbox(label="PDF Blob Name", placeholder="Enter the PDF file", value="finetuning_pipeline_testing_V1")
136
  with gr.Column(scale=3):
137
  system_prompt = gr.Textbox(label="System Prompt", placeholder="Enter system instructions or context", value="You are a helpful assistant that provides detailed information based on the provided text.")
138
  with gr.Column(scale=2):
 
6
  # Construct job input
7
  data = {
8
  "input": {
9
+ "pdf_file": pdf_file.name,
10
  "system_prompt": system_prompt,
11
  "max_step": max_step,
12
  "learning_rate": learning_rate,
 
26
  )
27
  stdout, stderr = process.communicate()
28
 
29
+ # Extract JSON object from the output
30
+ output_lines = stdout.splitlines()
31
+ handler_output = None
32
+ for line in output_lines:
33
+ try:
34
+ parsed_line = json.loads(line)
35
+ if isinstance(parsed_line, dict) and "status" in parsed_line:
36
+ handler_output = parsed_line
37
+ break
38
+ except json.JSONDecodeError:
39
+ continue
40
+
41
+ if handler_output is None:
42
+ return {"status": "error", "details": f"No valid JSON found in output: {stdout}"}
43
+
44
+ # Check the status in the parsed JSON
45
+ if handler_output.get("status") == "success":
46
+ # Extract and format the result
47
+ model_name = handler_output.get("model_name", "N/A")
48
+ processing_time = handler_output.get("processing_time", "N/A")
49
+ evaluation_results = handler_output.get("evaluation_results", {})
50
+
51
+ return {
52
+ "model_name": model_name,
53
+ "processing_time": processing_time,
54
+ "evaluation_results": evaluation_results
55
+ }
56
+ else:
57
+ # Return error details from the handler output
58
+ return handler_output
59
 
60
  except FileNotFoundError:
61
  return {"status": "error", "details": "Handler script not found"}
62
  except Exception as e:
63
  return {"status": "error", "details": str(e)}
64
 
65
+
66
  # Define Gradio interface
67
  with gr.Blocks(css='''
68
  .gradio-container {
 
136
  # Layout structure with improved spacing
137
  with gr.Row():
138
  with gr.Column(scale=2):
139
+ pdf_file = gr.File(label="Upload PDF File", file_types=[".pdf"]) # Updated to accept file uploads
140
  with gr.Column(scale=3):
141
  system_prompt = gr.Textbox(label="System Prompt", placeholder="Enter system instructions or context", value="You are a helpful assistant that provides detailed information based on the provided text.")
142
  with gr.Column(scale=2):