Varun-L commited on
Commit
6769d39
·
1 Parent(s): 7b3cca0
Files changed (2) hide show
  1. algo.py +5 -3
  2. app.py +5 -5
algo.py CHANGED
@@ -1,12 +1,12 @@
1
 
2
  description="""
3
  <h2>Purpose</h2>
4
- <p>This application is a Hearing Health Risk Assessment Tool. It uses a Lasso regression model trained on a dataset of hearing health indicators to predict the risk of hearing loss.
5
  The model achieved an accuracy of 87 percent accuracy during testing.
6
  The tool takes various inputs such as age, gender, and specific health indicators, and provides a risk assessment and recommendation based on the model's prediction.</p>
7
 
8
  <h2>Developed by</h2>
9
- <p>The project was led by Principal Investigator <b>Dr. Kanipakam Sunitha,</b> Assistant Professor at the Dept. of Law, SPMVV, Tirupati, and Co-Principal Investigator <b>Dr. N.V. Muthu Lakshmi,</b> Assistant Professor at the same institution. The project received financial support from the DST-CURIE-AI Center.</p>
10
 
11
  <h2>Description</h2>
12
  <p>The data set was collected from the children who are suffering from hearing impaired and taking training at special school. Children are from different areas of Andhra Pradesh and Telangana.</p>
@@ -14,6 +14,8 @@ The tool takes various inputs such as age, gender, and specific health indicator
14
 
15
  <p>The tool is designed to be user-friendly, with a simple interface for inputting information and receiving the risk assessment and recommendations. It serves as a valuable resource for assessing hearing health risks and taking necessary precautions or treatments. However, it's important to consult with a healthcare professional for a comprehensive evaluation. This tool is intended to supplement, not replace, professional medical advice.</p>
16
  <hr>
 
 
17
  """
18
 
19
 
@@ -36,5 +38,5 @@ If our work is beneficial for your research, please consider citing:
36
 
37
  📧 Get in Touch
38
  <br>
39
- If you have any queries, please feel free to contact Venkata Viswanath at <b>varun.codeq@gmail.com</b>.
40
  """
 
1
 
2
  description="""
3
  <h2>Purpose</h2>
4
+ <p>This application is a Predictive Model developed for finding severity of hearing Loss in children. It uses a Lasso regression model trained on a dataset of hearing health indicators to predict the risk of hearing loss.
5
  The model achieved an accuracy of 87 percent accuracy during testing.
6
  The tool takes various inputs such as age, gender, and specific health indicators, and provides a risk assessment and recommendation based on the model's prediction.</p>
7
 
8
  <h2>Developed by</h2>
9
+ <p>The project was led by Principal Investigator <b>Dr. Kanipakam Sunitha,</b> Assistant Professor, Dept. of Law, SPMVV, Tirupati, and Co-Principal Investigator <b>Dr. N.V. Muthu Lakshmi,</b> Assistant Professor, Dept. of Computer Science, SPMVV, Tirupati. The project received financial support from the DST-CURIE-AI Center, SPMVV, Tirupati.</p>
10
 
11
  <h2>Description</h2>
12
  <p>The data set was collected from the children who are suffering from hearing impaired and taking training at special school. Children are from different areas of Andhra Pradesh and Telangana.</p>
 
14
 
15
  <p>The tool is designed to be user-friendly, with a simple interface for inputting information and receiving the risk assessment and recommendations. It serves as a valuable resource for assessing hearing health risks and taking necessary precautions or treatments. However, it's important to consult with a healthcare professional for a comprehensive evaluation. This tool is intended to supplement, not replace, professional medical advice.</p>
16
  <hr>
17
+
18
+ <h2>A Predictive Model to Find Hearing Loss in Children Using Machine Learning Algorithms</h2>
19
  """
20
 
21
 
 
38
 
39
  📧 Get in Touch
40
  <br>
41
+ If you have any queries, please feel free to contact Dr.N.V.Muthu Lakshmi at <b> nvmuthulakshmi@gmail.com </b>.
42
  """
app.py CHANGED
@@ -67,12 +67,12 @@ interface = gr.Interface(
67
  gr.Number(label="Age"),
68
  gr.Radio(['Male', 'Female'], label="Gender"),
69
  gr.Radio(['Poor', 'BPL', 'Middle Class', 'Upper Class'], label="Economic Status"),
70
- gr.Radio(['Yes', 'No'], label="Any Known Genetic Hearing Loss in Family"),
71
  gr.Radio(['Yes', 'No'], label="Is the parent marriage a Consanguineous Marriage?"),
72
- gr.Radio(['Yes', 'No'], label="Any Prenatal Problems Leading to Hearing Loss"),
73
- gr.Radio(['Yes', 'No'], label="Any Postnatal Problems Leading to Hearing Loss"),
74
- gr.Radio(['Yes', 'No'], label="Any Complications During Birth Leading to Hearing Loss"),
75
- gr.Radio(['Yes', 'No'], label="Any Siblings with Hearing Problems"),
76
  gr.Number(label="Left Ear Hearing Loss Severity (in dB)"),
77
  gr.Number(label="Right Ear Hearing Loss Severity (in dB)")
78
  ],
 
67
  gr.Number(label="Age"),
68
  gr.Radio(['Male', 'Female'], label="Gender"),
69
  gr.Radio(['Poor', 'BPL', 'Middle Class', 'Upper Class'], label="Economic Status"),
70
+ gr.Radio(['Yes', 'No'], label="Any Known Genetic Hearing Loss in Family?"),
71
  gr.Radio(['Yes', 'No'], label="Is the parent marriage a Consanguineous Marriage?"),
72
+ gr.Radio(['Yes', 'No'], label="Any Prenatal Problems?"),
73
+ gr.Radio(['Yes', 'No'], label="Any Postnatal Problems?"),
74
+ gr.Radio(['Yes', 'No'], label="Any Complications During Birth?"),
75
+ gr.Radio(['Yes', 'No'], label="Any Siblings with Hearing Problems?"),
76
  gr.Number(label="Left Ear Hearing Loss Severity (in dB)"),
77
  gr.Number(label="Right Ear Hearing Loss Severity (in dB)")
78
  ],