mgupta70 commited on
Commit
a2737a0
1 Parent(s): 8cb1e7a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -7
app.py CHANGED
@@ -39,17 +39,14 @@ Knowledge Center at Penta Building Group
39
  """
40
 
41
  description = """
42
- This program is designed to answer questions based on the documentation of 'Lessons Learned' at The Penta Building Group, USA. Lessons Learned captures significant events that happened during a project or an initiative. It includes assessment of what worked well and what did not. This helps an organization to avoid repeating mistakes and improve their decision-making process using their own data. \n
43
- The idea of this project is to build an ‘AI’ program which by reading through documentation of a company’s projects of the last 10-30 years would consolidate its learning in one place. This ‘intelligent’ program can now assist a PE/PM/anyone in taking decisions which is reflective of the company’s previous experiences and its possible benefits and repercussions.\n
44
- The current documentation of Lessons Learned used for this program includes some experiences of Penta in walkway construction, demolition activities, ADA compliance, Fireproofing, etc.
45
-
46
-
47
  """
48
 
49
 
50
 
51
  article = """Your feedback matters!If you like it, contact us at mgupta70@asu.edu.
52
- Limitations:\n1. Current version of program is built upon a very limited size of data. So, it will not be able to respond to many queries related to construction industry. Also, if the subject of discussion is not present in detail in the training documents, one can expect a brief response.\n
53
  2. In case response includes numbers like building codes/year, it is generally recommended to double-check the sanity of building code or any number provided by our program. However, we think that the performance of the model in this regard can easily be improved by increasing the size of database.
54
  """
55
 
@@ -63,5 +60,5 @@ gr.Interface(
63
  examples=[["Which code is to be used while planning a pedestrian walkway?"], ["How to determine the exact location of existing underground lines?"], ['What one should do to avoid struck-by hazard incidents?']]
64
  ).launch()
65
 
66
- import gradio as gr
67
 
 
39
  """
40
 
41
  description = """
42
+ The idea of this project is to build an ‘AI’ program which by reading through documentation of a company’s projects of the last 10-30 years would consolidate its learning in one place. This ‘intelligent’ program can now assist a PE/PM/anyone in taking decisions which is reflective of the company’s previous experiences and its possible benefits and repercussions.\n\n\n
43
+ <p><b>This program </b><p> is designed to answer questions based on the documentation of 'Lessons Learned' at The Penta Building Group, USA. Lessons Learned captures significant events that happened during a project or an initiative. It includes assessment of what worked well and what did not. This helps an organization to avoid repeating mistakes and improve their decision-making process using their own data. The current documentation of Lessons Learned used for this program includes some experiences of Penta in walkway construction, demolition activities, ADA compliance, Fireproofing, etc.
 
 
 
44
  """
45
 
46
 
47
 
48
  article = """Your feedback matters!If you like it, contact us at mgupta70@asu.edu.
49
+ \nLimitations:\n1. Current version of program is built upon a very limited size of data. So, it will not be able to respond to many queries related to construction industry. Also, if the subject of discussion is not present in detail in the training documents, one can expect a brief response.\n
50
  2. In case response includes numbers like building codes/year, it is generally recommended to double-check the sanity of building code or any number provided by our program. However, we think that the performance of the model in this regard can easily be improved by increasing the size of database.
51
  """
52
 
 
60
  examples=[["Which code is to be used while planning a pedestrian walkway?"], ["How to determine the exact location of existing underground lines?"], ['What one should do to avoid struck-by hazard incidents?']]
61
  ).launch()
62
 
63
+
64