mintheinwin commited on
Commit
ad24ba0
·
1 Parent(s): c66a1df

update app

Browse files
Files changed (3) hide show
  1. .gradio/certificate.pem +31 -0
  2. app.py +16 -8
  3. ticket-predictions.csv +3 -5
.gradio/certificate.pem ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ -----BEGIN CERTIFICATE-----
2
+ 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
31
+ -----END CERTIFICATE-----
app.py CHANGED
@@ -5,6 +5,7 @@ import pickle
5
  import pandas as pd
6
  from transformers import RobertaTokenizerFast, RobertaModel
7
 
 
8
  # Load label mappings
9
  with open("label_mappings.pkl", "rb") as f:
10
  label_mappings = pickle.load(f)
@@ -84,19 +85,26 @@ def clear_inputs():
84
  return "Enter Text", "", None, "", None
85
 
86
 
87
- # Custom CSS to Fix UI Scaling Issues
88
  custom_css = """
89
- .gradio-container { max-width: 1100px !important; margin: auto !important; }
90
- #title { text-align: center; font-size: 24px !important; font-weight: bold; }
91
- #predict-button, #clear-button { width: 100% !important; height: 50px !important; font-size: 18px !important; }
92
- #results-box { height: 320px !important; overflow-y: auto !important; background: #f9f9f9; padding: 10px; border-radius: 8px; }
93
  """
94
-
 
 
 
 
 
 
 
95
  # Gradio App UI
96
- with gr.Blocks(css=".gradio-container {max-width: 1100px; margin: auto;}") as app:
97
  gr.Markdown(
98
  """
99
- # Multi-Ticket AI Classification System
100
 
101
  **Supports:** Multi-line text input & CSV upload.
102
  **Output:** Text results & downloadable CSV file.
 
5
  import pandas as pd
6
  from transformers import RobertaTokenizerFast, RobertaModel
7
 
8
+ # Implement by MinTheinWin@3907578Y
9
  # Load label mappings
10
  with open("label_mappings.pkl", "rb") as f:
11
  label_mappings = pickle.load(f)
 
85
  return "Enter Text", "", None, "", None
86
 
87
 
88
+ # Custom CSS for Better UI Scaling
89
  custom_css = """
90
+ .gradio-container { max-width: 1400px !important; margin: auto !important; }
91
+ #title { text-align: center; font-size: 26px !important; font-weight: bold; }
92
+ #predict-button, #clear-button, #download-button { width: 100% !important; height: 55px !important; font-size: 18px !important; }
93
+ #results-box { height: 350px !important; overflow-y: auto !important; background: #f9f9f9; padding: 15px; border-radius: 10px; font-size: 16px; }
94
  """
95
+ custom_css1 = """
96
+ .gradio-container { max-width: 1400px !important; margin: auto !important; }
97
+ #title { text-align: center; font-size: 26px !important; font-weight: bold; }
98
+ #predict-button, #clear-button, #download-button { width: 100% !important; height: 55px !important; font-size: 18px !important; }
99
+ #results-box { height: 350px !important; overflow-y: auto !important; background: #f9f9f9; padding: 15px; border-radius: 10px; font-size: 16px; }
100
+ #download-csv-file input { height: 30px !important; font-size: 14px !important; padding: 5px !important; }
101
+ """
102
+ #".gradio-container {max-width: 1500px; margin: auto;}"
103
  # Gradio App UI
104
+ with gr.Blocks(css=custom_css1) as app:
105
  gr.Markdown(
106
  """
107
+ # AI Solution for Defect Ticket Classification
108
 
109
  **Supports:** Multi-line text input & CSV upload.
110
  **Output:** Text results & downloadable CSV file.
ticket-predictions.csv CHANGED
@@ -1,6 +1,4 @@
1
  Index,Description,Assigned Team,Team Email
2
- 1,Database queries not optimized for large datasets.,Code Review Team,[email protected]
3
- 2,User authentication fails when accessing restricted sections.,Functional Team,functional[email protected]
4
- 3,High CPU utilization leading to system overheating and slow performance.,Performance Team,performance[email protected]
5
- 4,System crashes due to misconfigured runtime environments.,Infrastructure Team,[email protected]
6
- 5,Unauthorized access detected in restricted sections of the application.,Security Team,[email protected]
 
1
  Index,Description,Assigned Team,Team Email
2
+ 1,Incorrect error handling in exception module.,Code Review Team,[email protected]
3
+ 2,Implement input sanitization to prevent injection attacks.,Code Review Team,codereview[email protected]
4
+ 3,Error Handling Needs Improvement,Code Review Team,codereview[email protected]