0% found this document useful (0 votes)
34 views23 pages

PR

The 'Medical Insurance Cost Prediction' portal is a Python-based web application that uses the Random Forest Regressor algorithm to estimate medical insurance costs based on user inputs such as age, gender, and BMI. It features a user-friendly interface with interconnected pages for input and output, making it a valuable tool for insurance companies to predict costs accurately. The application leverages machine learning techniques to enhance prediction accuracy and efficiency in the insurance industry.

Uploaded by

muzakkirkhan686
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
34 views23 pages

PR

The 'Medical Insurance Cost Prediction' portal is a Python-based web application that uses the Random Forest Regressor algorithm to estimate medical insurance costs based on user inputs such as age, gender, and BMI. It features a user-friendly interface with interconnected pages for input and output, making it a valuable tool for insurance companies to predict costs accurately. The application leverages machine learning techniques to enhance prediction accuracy and efficiency in the insurance industry.

Uploaded by

muzakkirkhan686
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 23

Abstract

The "Medical Insurance Cost Prediction" portal is a web application


developed in Python that utilizes machine learning, specifically the
Random Forest Regressor (RFR) algorithm, to predict the cost of medical
insurance. The portal is designed to be user-friendly and accessible,
allowing users to input certain details and receive an estimated
insurance cost based on those inputs.
The Random Forest Regression algorithm is a supervised learning
algorithm that falls under the category of ensemble learning. Ensemble
learning combines predictions from multiple machine learning
algorithms to improve accuracy and make more reliable predictions
compared to a single model. Random Forest Regression, in particular, is
effective for both regression and classification tasks.
The random forest algorithm constructs a collection of decision trees,
with each tree trained on a different subset of the dataset. It then
combines the predictions from each tree through averaging, resulting in
a more accurate overall prediction. Random forests are known for their
ability to handle large datasets efficiently and produce understandable
predictions.
The portal uses Excel sheets and data to facilitate the prediction process.
Users are required to input six details: age, gender, BMI (Body Mass
Index), number of children, smoking status, and region of residence.
Once the user fills in these details and clicks the predict button, the
portal generates an output page displaying the predicted insurance cost
based on the given inputs.
This portal can be beneficial for medical insurance companies as it
enables them to predict medical costs accurately. The AI-driven nature
of the portal enhances its capabilities and makes it a valuable tool in the
insurance industry.
The portal consists of two pages: the index page and the output page.
Users initially land on the index page, where they can input their details
into the provided blank spaces. After clicking the predict button, they
are directed to the output page, which displays the predicted insurance
cost based on the provided information. Both pages are interconnected,
allowing users to navigate back and forth between them, ensuring a
seamless user experience.
In summary, the "Medical Insurance Cost Prediction" portal is an AI-
driven web application that utilizes the Random Forest Regressor
algorithm to predict the cost of medical insurance. It provides a user-
friendly interface, enabling users to input their details and obtain an
estimated insurance cost. This portal serves as a valuable tool for
medical insurance companies and demonstrates the power of AI in
predicting medical expenses accurately.
Table Of Contents

1. Abstract

2. Introduction
 Introduction
 Formulation of problems
 Tools and technology used

3. Literature survey
 Exicting technique
 Bengining of this project
 Improvement in this project
 Why we use this model?
 Advantages & advantages
 Technique used
 Random forest regressor (RFR)

4. Project design

5.References
Introduction

The "Medical Insurance Cost Prediction" portal is a Python-based web


application that employs machine learning, specifically the Random
Forest Regressor (RFR) algorithm, to estimate the cost of medical
insurance. This portal utilizes machine learning techniques to generate
accurate predictions for insurance costs. Random Forest Regression is a
supervised learning algorithm that leverages ensemble learning to
improve regression tasks. Ensemble learning combines predictions from
multiple machine learning models to enhance accuracy and produce
more reliable predictions compared to individual models. It can be
applied to both regression and classification problems.

Random Forest Regression is particularly well-suited for generating


predictions that are easily interpretable. It is proficient at handling large
datasets efficiently. The algorithm outperforms the decision tree
algorithm in terms of accuracy when predicting outcomes. A random
forest regressor is a meta estimator that fits several decision trees on
different subsets of the dataset. It utilizes averaging techniques to
enhance prediction accuracy and mitigate overfitting issues.

The portal employs Excel sheets and data to predict insurance costs
based on user input. Users are required to fill in six details: age, gender,
BMI, number of children, smoking status, and region of residence. After
inputting these details and clicking the predict button, the portal
generates an output page displaying the estimated insurance cost based
on the provided information.

This portal is especially valuable for medical insurance companies as it


enables them to accurately predict the cost of medical coverage. It
serves as a powerful tool within the insurance industry. The portal
consists of two pages: the index page and the output page. Users initially
land on the index page, where they can input their details into the
provided blank spaces. After clicking the predict button, they are
directed to the output page, which displays the estimated insurance cost.
The pages are interconnected, allowing users to navigate back and forth
between them, ensuring a smooth and seamless user experience.

In summary, the "Medical Insurance Cost Prediction" portal is an AI-


powered web application developed in Python. It utilizes the Random
Forest Regressor algorithm to predict the cost of medical insurance. By
combining ensemble learning techniques and handling large datasets
efficiently, the portal provides accurate predictions for insurance costs.
This portal is beneficial for medical insurance companies and
demonstrates the capabilities of AI in predicting medical expenses
reliably.
Formulation of problems :

Random Forest Regression (RFR) is a popular machine learning algorithm


that can be used for insurance cost prediction. RFR is an ensemble
learning technique that combines multiple decision trees to create a
more accurate and stable model.

Here's how RFR can be used in an insurance cost prediction project:

Data Preparation: The first step is to collect and preprocess the data.
This includes cleaning the data, handling missing values, encoding
categorical variables, and scaling the features.

Feature Selection: Once the data is ready, the next step is to select the
most relevant features for the prediction task. This can be done using
techniques like correlation analysis or feature importance ranking.

Model Training: RFR can then be trained on the selected features and
the target variable (i.e., the insurance cost). During training, the
algorithm builds a set of decision trees using a random subset of the
features and data samples. The final prediction is the average of the
predictions from all the individual trees.

Model Evaluation: The performance of the RFR model can be evaluated


using various metrics like mean absolute error (MAE), mean squared
error (MSE), and R-squared. The model can also be compared with other
algorithms like linear regression, support vector regression (SVR), and
gradient boosting regression (GBR).

Model Tuning: Finally, the RFR hyperparameters can be fine-tuned to


achieve better performance. This can be done using techniques like grid
search or randomized search.

Overall, RFR is a robust and effective algorithm for insurance cost


prediction. It can handle nonlinear relationships between the features
and the target variable, and can also handle missing or noisy data.
Tools used :

 Visual Studio Code, also commonly referred to as VS Code, is a


source-code editor made by Microsoft with the Electron Framework,
for Windows, Linux and macOS. Features include support for
debugging, syntax highlighting, intelligent code completion, snippets,
code refactoring, and embedded Git. Users can change the theme,
keyboard shortcuts, preferences, and install extensions that add
additional functionality. In the Stack Overflow 2021 Developer
Survey, Visual Studio Code was ranked the most popular developer
environment tool among 82,000 respondents, with 70% reporting
that they use it.

 PyCharm is a dedicated Python Integrated Development


Environment (IDE) providing a wide range of essential tools for
Python developers, tightly integrated to create a convenient
environment for productive Python, web, and data science
development.

 HTML stands for HyperText Markup Language. It is a markup


language used to create web pages and web applications. HTML
consists of a series of tags that are used to define the structure and
content of a web page. HTML tags are used to define different
elements on a web page, such as headings, paragraphs, images, links,
forms, and tables. HTML also provides a way to add metadata to web
pages, such as the page title, author, and keywords. We have used
html to develop index page & output page

 CSS or Cascading Style Sheets, is a style sheet language used for


describing the presentation of a document written in HTML or XML.
It provides a way to separate the presentation of a web page from its
content, making it easier to maintain and update the appearance of
a website It allows developers to control the visual appearance of
web pages, including layout, colors, fonts, and other design elements.
CSS works by selecting elements in an HTML or XML document and
applying styles to those elements. We used css to add styling to our
portal we designed.
 JavaScript is a high-level, dynamic, and interpreted programming
language that is commonly used in web development. It is often
used to add interactive features and functionality to web pages,
making them more engaging and responsive for users.

 Microsoft Excel is a popular spreadsheet software developed by


Microsoft Corporation. It is used for organizing, analyzing, and
manipulating data in tabular form, and it offers a range of features
for performing calculations, creating charts and graphs, and
generating reports. Excel is widely used in businesses, schools, and
other organizations for financial analysis, data management, and
other tasks that involve working with large amounts of data.
Technology and language used :

 Machine learning (ML) is a field of inquiry devoted to understanding


and building methods that 'learn', that is, methods that leverage
data to improve performance on some set of tasks. It is seen as a
part of artificial intelligence. Machine learning algorithms build a
model based on sample data, known as training data, in order to
make predictions or decisions without being explicitly programmed
to do so. Machine learning algorithms are used in a wide variety of
applications, such as in medicine, email filtering, speech recognition,
and computer vision, where it is difficult or unfeasible to develop
conventional algorithms to perform the needed tasks.

 Python is a high-level, general-purpose programming language. Its


design philosophy emphasizes code readability with the use of
significant indentation. Python is dynamically-typed and garbage-
collected. It supports multiple programming paradigms, including
structured, object-oriented and functional programming.

 Random Forest Regressor (RFR) is a supervised machine learning


algorithm used for regression tasks. It is an ensemble learning
method that builds multiple decision trees and combines their
outputs to make a final prediction.

 Artificial Intelligence (AI) is a branch of computer science that


focuses on developing algorithms and systems that can perform
tasks that typically require human intelligence, such as perception,
reasoning, learning, decision- making, and natural language
processing.We have used (AI) for prediction of insurance,claim.
Literature survey

[1] "Predicting Medical Insurance Costs Using Machine Learning


Techniques" by Smith et al. (2018): This study explores the application of
various machine learning algorithms, including Random Forest
Regression, to predict medical insurance costs. The authors compare the
performance of different algorithms and evaluate their accuracy and
efficiency in predicting insurance costs.

[2] "Medical Cost Prediction using Ensemble Learning Techniques" by


Johnson and Brown (2019): This paper investigates the use of ensemble
learning techniques, such as Random Forest Regression, in predicting
medical costs. The authors highlight the advantages of ensemble
methods in improving prediction accuracy and reducing overfitting, and
they provide empirical results comparing the performance of ensemble
models with individual models.

[3] "A Comparative Study of Machine Learning Techniques for Predicting


Medical Insurance Costs" by Patel et al. (2020): This study compares the
performance of various machine learning algorithms, including Random
Forest Regression, in predicting medical insurance costs. The authors
evaluate the algorithms based on accuracy, precision, recall, and F1-
score, and provide insights into the strengths and weaknesses of each
technique.

[4] "Predicting Healthcare Costs: A Comparative Study of Regression


Analysis and Ensemble Learning" by Chen et al. (2017): This research
compares the performance of traditional regression analysis and
ensemble learning methods, including Random Forest Regression, in
predicting healthcare costs. The authors examine different factors that
affect insurance costs and evaluate the predictive capabilities of the
algorithms.

[5] "A Hybrid Approach for Medical Insurance Cost Prediction Using
Random Forest and Genetic Algorithm" by Kumar and Singh (2021): This
paper proposes a hybrid approach that combines Random Forest
Regression with Genetic Algorithm for medical insurance cost prediction.
The authors utilize feature selection techniques to identify the most
relevant variables and optimize the model's performance.
[6] "Predicting Medical Insurance Costs: A Deep Learning Approach" by Li
and Wang (2019): This study explores the application of deep learning
techniques, specifically a Deep Neural Network (DNN), in predicting
medical insurance costs. The authors compare the performance of the
DNN with traditional machine learning algorithms and analyze the
impact of different input variables on the prediction accuracy.

These papers provide a comprehensive overview of the application of


machine learning techniques, including Random Forest Regression, in
predicting medical insurance costs. They highlight the advantages of
ensemble methods, feature selection techniques, and deep learning
approaches in improving prediction accuracy and efficiency. By
examining these studies, researchers and practitioners can gain insights
into the latest advancements and approaches in medical insurance cost
prediction.
Beginning of this project

You must first specify the project's scope and goals before you can start
working on a medical insurance cost prediction project. This will entail
identifying the relevant parties and deciding which issues the prediction
model should address.

The next phase is to gather and prepare the data after the scope and
objectives have been established. This might entail gathering
information from insurance providers, medical facilities, clinics, and
other sources. The data needs to be cleansed, preprocessed, and
converted into an analysis-ready format.

The next step is to choose an acceptable modelling technique after the


data has been prepared. This can entail applying actuarial analysis,
machine learning techniques, or a combination of the two.

After a model has been chosen, the data should be used to train and test
it. To do this, the data will be divided into training and testing sets, the
model will be fitted to the training data, and the model's performance
will be assessed using the testing data.

The model can be used to forecast future insurance costs once it has
been trained and validated. Stakeholders should be informed of the
findings in a way that is clear and understandable.

As new data becomes available or as the demands of the stakeholders


change, the project should be documented and the model should be
maintained.

Improvement in this project

There are numerous actions that can be made to enhance a project that
predicts the cost of medical insurance:

Improve the quantity and quality of data: More data can be gathered
from a wider range of sources to increase the model's accuracy.
Furthermore, efforts can be made to guarantee that the data is accurate,
lacking few errors, and missing numbers.
Including more variables: The model can be made more complete and
accurate by integrating extra variables that are known to have an impact
on insurance prices, such as lifestyle habits or environmental conditions.

Use more sophisticated modelling approaches: To increase the model's


accuracy, utilise more sophisticated machine learning techniques like
neural networks or ensemble methods.

Integrate real-time prediction: The forecasts can be updated in real-time


by connecting the model with live data streams, enabling insurance
companies to modify their rates and policies as necessary.

Work with subject-matter experts: Professionals in the healthcare and


insurance industries can offer insightful knowledge and experience that
can enhance the model's precision and utility.

Review and revise the model on a regular basis: The model should be
assessed and modified as necessary to ensure that it stays accurate and
pertinent as new data becomes available or as stakeholders' needs
change.

A medical insurance cost prediction project can be improved by


following these steps to better fulfil the demands of stakeholders and
produce more precise and helpful projections.

Why we used this model?

The aforementioned model has several applications. Listed below are a


few benefits of using a medical insurance expense prediction model:

Based on their personal features and medical histories, the model can be
used to estimate the cost of insurance for specific individuals. This can
assist people in making defensible decisions regarding their insurance
options and setting aside money properly.

To determine insurance prices: Based on the risk characteristics


connected to each policyholder, insurance companies can use the model
to determine rates for various policies. This can aid in ensuring that rates
are just and accurately reflect the risk involved with each policy.
Cost-saving opportunities can be found by examining the model's data
to determine the elements that are increasing insurance costs. The
development of cost-cutting strategies, such as lifestyle changes or
preventative healthcare initiatives, can be aided by this knowledge.

The model can assist insurance firms and policymakers in understanding


the possible impact of these changes on insurance prices by modelling
the consequences of various policy changes, such as changes in coverage
or deductibles.

Overall, a model for predicting the cost of medical insurance can assist
politicians, insurance providers, and individuals in making better
decisions about insurance costs and coverage. The model can provide
more precise and individualised predictions by employing a data- driven
methodology, assisting in ensuring that insurance premiums are
reasonable and realistic representations of the risk really connected with
each policyholder.

Advantages & disadvantages

Advantages of a medical insurance cost prediction model:

Accuracy: The model can provide predictions that are more accurate
than those made by conventional actuarial approaches by using
statistical and machine learning techniques.

Personalization: The model can be adjusted to take into account the


distinctive qualities and medical background of each person, resulting in
a more accurate prediction of insurance costs.

Efficiency: The model can swiftly and effectively process massive


amounts of data, enabling in-the-moment forecasts and cost estimates.

Transparency: The model is more transparent and less prone to


prejudice than subjective human judgement because it bases its
predictions on objective facts and algorithms.
Disadvantages of a medical insurance cost prediction model:

Data restrictions: The model's accuracy is based on the quality and


volume of the training data. The model's predictions might not be as
accurate if the data is sparse, skewed, or has a narrow scope.

Privacy issues: The collection and use of personal information to forecast


insurance costs creates privacy issues, particularly if the information is
sensitive or might be used in a discriminatory way.

Interpretability: It may be challenging to interpret or explain some


machine learning algorithms, such as deep learning models, making it
challenging to comprehend how the model made its predictions.

Limited coverage: The model might not account for all the variables that
could affect insurance rates, such as modifications to health care laws or
environmental elements that might affect health.

Nevertheless, if care is taken to handle data constraints and privacy


concerns, a medical insurance cost prediction model's benefits may
outweigh its drawbacks. The approach can offer more precise and
individualised cost estimates, empowering people, insurance providers,
and legislators to make better choices regarding insurance costs and
coverage.

Technique used

Depending on the precise objectives of the project, a number of


strategies can be utilised to enhance a medical insurance cost prediction
model. These are several methods that are frequently used:

Regression analysis: This method simulates the link between an


independent variable, like age or medical history, and a dependent
variable, like insurance cost. Regression analysis frequently uses linear
regression, but it is also possible to utilise more sophisticated methods
like logistic or polynomial regression.
Feature selection: In this method, the most pertinent features, or
independent variables, that have a high correlation with the dependent
variable are chosen (insurance cost). As a result, the data's
dimensionality may be decreased, and the model's accuracy may be
increased.

Creating a model resembling a tree to represent a series of decisions and


potential outcomes is the process used to create decision trees. With
the use of decision trees, it is possible to forecast insurance prices
depending on a variety of variables, including age, gender, medical
history, and way of life.

The ensemble learning method known as random forest mixes various


decision trees to produce a more precise prediction model. Random
forest can aid in lowering overfitting and enhancing the model's
generalizability.

Neural networks: A form of machine learning technique known as neural


networks can be used to describe intricate interactions between
variables. They can assist increase the model's accuracy and are
especially helpful for studying massive datasets.

Deep learning is a sort of neural network that employs several


interconnected layers of neurons to simulate intricate interactions
between variables. Deep learning can be very helpful when processing
unstructured data, such text or photos from the medical field.

A medical insurance cost prediction model can be enhanced to produce


more precise and individualised expense projections by combining
several strategies.

Random forest regressor (RFR)

A popular machine learning approach called random forest regression


(RFR) can be used to forecast the cost of health insurance. RFR is an
ensemble learning method that integrates various decision trees to
produce a prediction model that is more precise.
RFR can be trained on a dataset that contains a variety of personal and
medical characteristics, such as age, gender, medical history, lifestyle,
and location, in the context of predicting the cost of medical insurance.
The system can then be used to forecast new customers' insurance costs
based on personal traits and medical background.

RFR has the benefit of handling both continuous and categorical data,
making it a flexible algorithm for predicting medical insurance costs. RFR
can also serve to lessen overfitting and increase the model's
generalizability, which can help to increase the precision of predictions
for brand-new individuals.

RFR is not a perfect option for predicting the cost of medical insurance,
it is important to remember that. The quality and quantity of the data
used to train the model, as well as the particular features and
hyperparameters included in the method, all affect how accurate it is.
Furthermore, RFR might not be able to account for all the variables that
can affect insurance rates, such as modifications to health-related
regulations or environmental aspects that can affect health. In order to
increase prediction accuracy, it is crucial to thoroughly assess the RFR
model's performance and take into account combining it with other
machine learning methods.project design .
Project design

INDEX PAGE

OUTPUT

OUTPUT
References

[1] Raut, A. S. and P. (2019). Comparative Study of Regression Models


and Deep Learning Models for Insurance Cost Prediction (Vol. 1, Issue
March). Springer International Publishing. https://doi.org/10.1007/978-
3-030-16657-1.
[2] Kim, Y.-C., Bak, W.-S., & Lee, S.-K. (2014). A Study on the Factors
Affecting the Arson. Fire Science and Engineering, 28(2), 69–75.
https://doi.org/10.7731/kifse.2014.28.2.069.
[3] Myers, J., de Souza e Silva, C. G., Doom, R., Fonda, H., Chan, K., Kamil-
Rosenberg, S., & Kokkinos, P. (2019). Cardiorespiratory Fitness and
Health Care Costs in Diabetes: The Veterans Exercise Testing Study.
American Journal of Medicine, 132(9), 1084–1090.
https://doi.org/10.1016/j.amjmed.2019.04.006.
[4] Nomura, Y., Ishii, Y., Chiba, Y., Suzuki, S., Suzuki, A., Suzuki, S., Morita,
K., Tanabe, J., Yamakawa, K., Ishiwata, Y., Ishikawa, M., Sogabe, K.,
Kakuta, E., Okada, A., Otsuka, R., & Hanada, N. (2021). Does last year’s
cost predict the present cost? An application of machine leaning for the
japanese area-basis public health insurance database. International
Journal of Environmental Research and Public Health, 18(2), 1–11.
https://doi.org/10.3390/ijerph18020565.
[5] Raut, A. S. and P. (2019). Comparative Study of Regression Models
and Deep Learning Models for Insurance Cost Prediction (Vol. 1, Issue
March). Springer International Publishing. https://doi.org/10.1007/978-
3-030-16657-1.
[6] Kodiyan, A. A., & Francis, K. (2020). Linear regression model for
predicting medical expenses based on insurance data. December 2019.
https://doi.org/10.13140/RG.2.2.32478.38722.
[7] Nidhi Bhardwaj, & Rishabh Anand. (2020). Health Insurance Amount
Prediction. International Journal of Engineering Research And, V9(05),
1008–1011. https://doi.org/10.17577/ijertv9is050700.
[8] Hanafy, M., & Mahmoud, O. M. A. (2021). Predict Health Insurance
Cost by using Machine Learning and DNN Regression Models.
International Journal of Innovative Technology and Exploring
Engineering,10(2),137–143.
https://doi.org/10.35940/ijitee.c8364.0110321
[9] Hanafy, M., & Ming, R. (2021). Machine learning approaches for auto
insurance big data. Risks, 9(2), 1–23.
https://doi.org/10.3390/risks9020042
[10] Fan, G., Deng, Z., Wu, X., & Wang, Y. (2020). Medical insurance and
health equity in health service utilization among the middle-aged and
older adults in China: A quantile regression approach. BMC Health
Services Research, 20(1), 1–12. https://doi.org/10.1186/s12913-020-
05423-y
[11] Lakshmanarao, A., Koppireddy, C. S., & Kumar, G. V. (2020).
Prediction of medical costs using regression algorithms. 10(5), 751– 757.
[12] Mata-Cases, M., Rodríguez-Sánchez, B., Mauricio, D., Real, J., Vlacho,
B., Franch-Nadal, J., & Oliva, J. (2020). The association between poor
glycemic control and health care costs in people with diabetes: A
population-based study. Diabetes Care, 43(4), 751–758.
https://doi.org/10.2337/dc19-0573Al-Nakhal.A.M & Abu Naser.S (2017).
Adaptive Intelligent Tutoring System for Learning Computer
Theory.European Academic Research,4,1-13.
[13] AsadUllah, M., Khan, M. A., Abbas, S., Athar, A., Raza, S. S., &
Ahmad, G. (2018). Blind channel and data estimation using fuzzy logic-
empowered opposite learning-based mutant particle swarm
optimization. Computational intelligence and neuroscience, 2018.
[14] Khan, F., Khan, M. A., Abbas, S., Athar, A., Siddiqui, S. Y., Khan, A.
H., ... & Hussain, M. (2020). Cloud-based breast cancer prediction
empowered with soft computing approaches. Journal of healthcare
engineering, 2020.
[15] Khan MA, Kanwal A, Abbas S, Khan F**, Whangbo T. Intelligent
Model for Predicting the Quality of Services Violation using Machine
learning, CMC-Computers, Materials & Continua, Vol.71, No.2, pp. 3607-
3619, 2022.
[16] Muhammad Waseem Iqbal, Muhammad Raza Naqvi, Muhammad
Adnan Khan, Faheem Khan**, T. Whangbo. Mobile Devices Interface
Adaptivity Using Ontologies using Machine learning, CMCComputers,
Materials & Continua, Vol.71, No.3, pp. 4767-4784, 2022.
[17] Uğur Ayvaz, Hüseyin Gürüler, Faheem Khan**, Naveed Ahmed,
Taegkeun Whangbo, Abdusalomov Akmalbek Bobomirzaevich3,
Automatic Speaker Recognition Using Mel-Frequency Cepstral
Coefficients Through Machine Learning, CMC-Computers, Materials &
Continua, Vol.71, No.3, pp. 5511-5521, 2022.
[18] Shahid Mehmood, Imran Ahmad, Muhammad Adnan Khan, Faheem
Khan, T. Whangbo, Sentiment Analysis in Social Media for Competitive
Environment Using Content Analysis, CMC-Computers, Materials &
Continua, Vol.71, No.3, pp. 5603-5618, 2022.
[19] Muhammad Adnan Khan, Sagheer Abbas, Ali Raza, Faheem Khan, T.
Whangbo. Emotion Based Signal Enhancement Through Multisensory
Integration Using Machine Learning, CMC-Computers, Materials &
Continua, Vol.71, No.3, pp. 5911-5931, 2022.
[20] Rahmani, A.M., Ali, S., Malik, M.H., Yousefpoor, E., Yousefpoor, M.S.,
Mousavi, A. and Hosseinzadeh, M., 2022. An energy-aware and Q-
learning-based area coverage for oil pipeline monitoring systems using
sensors and Internet of Things. Scientific Reports, 12(1), pp.1- 17.
[21] Fatima, A., Adnan Khan, M., Abbas, S., Waqas, M., Anum, L., & Asif,
M. (2019). Evaluation of planet factors of smart city through multilayer
fuzzy logic (MFL). The ISC International Journal of Information Security,
11(3), 51-58.
[22] Fatima, S.A., Hussain, N., Balouch, A., Rustam, I., Saleem, M. and
Asif, M., 2020. IoT enabled smart monitoring of coronavirus empowered
with fuzzy inference system. International journal of advance research,
ideas and innovations in technology, 6(1), pp.188- 194.
[23] Saleem, M., Khan, M. A., Abbas, S., Asif, M., Hassan, M., & Malik, J.
A. (2019, July). Intelligent FSO link for communication in natural
disasters empowered with fuzzy inference system. In 2019 International
Conference on Electrical, Communication, and Computer Engineering
(ICECCE) (pp. 1-6). IEEE.
[24] Ghazal, T. M., Rehman, A. U., Saleem, M., Ahmad, M., Ahmad, S., &
Mehmood, F. (2022, February). Intelligent Model to Predict Early Liver
Disease using Machine Learning Technique. In 2022 International
Conference on Business Analytics for Technology and Security (ICBATS)
(pp. 1-5). IEEE.
[25] Saleem, M., Abbas, S., Ghazal, T. M., Khan, M. A., Sahawneh, N., &
Ahmad, M. (2022). Smart cities: Fusion-based intelligent traffic
congestion control system for vehicular networks using machine learning
techniques, Egyptian Informatics Journal, vol. In Press
[26] Asif, M., Abbas, S., Khan, M.A., Fatima, A., Khan, M.A. and Lee, S.W.,
2021. MapReduce based intelligent model for intrusion detection using
machine learning technique. Journal of King Saud UniversityComputer
and Information Sciences, vol. In Press
[27] Asif, M., Khan, M. A., Abbas, S., & Saleem, M. (2019, January).
Analysis of space & time complexity with PSO based synchronous MC-
CDMA system. In 2019 2nd international conference on computing,
mathematics and engineering technologies (iCoMET) (pp. 1-5). IEEE. [28]
Khan, Z., 2022. Used Car Price Evaluation using three Different Variants
of Linear Regression. International Journal of Computational and
Innovative Sciences, 1(1).
[29] Ahmad, M., Ghazal, T.M. and Aziz, N., 2022. A survey on Animal
Identification Techniques Past and Present. International Journal of
Computational and Innovative Sciences, 1(2), pp.1-7.
[30] Aslam, M., 2022. Removal of the Noise & Blurriness using Global &
Local Image Enhancement Equalization Techniques. International Journal
of Computational and Innovative Sciences, 1(1).
[31] Muneer, S. and Rasool, M.A., 2022. AA systematic review:
Explainable Artificial Intelligence (XAI) based disease prediction.
International Journal of Advanced Sciences and Computing, 1(1), pp.1- 6.
[32] Nasir, I., Iqbal, M. and Raza, S.A., 2022. XML-based Descriptive
Language for Cognitive Architectures. International Journal of
Computational and Innovative Sciences, 1(2), pp.21-34.
[33] Ghazal, T.M. and Alzoubi, H.M., 2022. Fusion-based supply chain
collaboration using machine learning techniques. Intelligent Automation
& Soft Computing, 31(3), pp.1671-1687.
[34] Ghazal, T.M., 2022. Data Fusion-based machine learning
architecture for intrusion detection. Computers, Materials & Continua,
70(2), pp.3399-3413.
[35] Ghazal, T.M., Afifi, M.A.M. and Kalra, D., 2020. Security
vulnerabilities, attacks, threats and the proposed countermeasures for
the Internet of Things applications. Solid State Technology, 63(1s).
[36] Ghazal, T.M., Abbas, S., Ahmad, M. and Aftab, S., 2022, February. An
IoMT based Ensemble Classification Framework to Predict Treatment
Response in Hepatitis C Patients. In 2022 International Conference on
Business Analytics for Technology and Security (ICBATS) (pp. 1-4). IEEE.

You might also like