Hitesh Kumar Rinhayat,
Vishakha Tomar,
Krishna Nayak,
- Assistant Professor, Department of Computer Science and Engineering, Vidhyapeeth Institute of Science and Technology, Bhopal, Madhya Pradesh, India
- Assistant Professor, Department of Computer Science and Engineering, Vidhyapeeth Institute of Science and Technology, Bhopal, Madhya Pradesh, India
- Assistant Professor, Department of Computer Science and Engineering, Vidhyapeeth Institute of Science and Technology, Bhopal, Madhya Pradesh, India
Abstract
The rapid development of Internet technology has resulted in a rapidly changing and intricate digital environment that requires new methods for organizing and evaluating online data. This study examines the use of machine learning (ML) in web data mining, focusing on its ability to extract relevant insights from huge amounts of online data. Web data mining, which is divided into three categories: content mining, structure mining, and use mining, uses machine learning algorithms to efficiently handle both unstructured and structured data. Supervised, unsupervised, semi-supervised, and reinforcement- learning approaches are critical in solving a wide range of difficulties, including recommendation systems, sentiment analysis, fraud detection, and cybersecurity. Emerging concepts, such as deep learning, privacy-preserving data mining, and conversational AI, demonstrate ML’s potential to transform web interactions while maintaining ethical principles and user privacy. By incorporating these breakthroughs, web data mining serves as a foundation for smart decision-making and user-centric applications throughout the digital age.
Keywords: Machine learning, web data mining, deep learning, privacy-preserving, recommendation systems, natural language processing
[This article belongs to International Journal of Data Structure Studies ]
Hitesh Kumar Rinhayat, Vishakha Tomar, Krishna Nayak. A Review of Machine Learning Applications in Web Data Mining. International Journal of Data Structure Studies. 2025; 03(01):39-47.
Hitesh Kumar Rinhayat, Vishakha Tomar, Krishna Nayak. A Review of Machine Learning Applications in Web Data Mining. International Journal of Data Structure Studies. 2025; 03(01):39-47. Available from: https://journals.stmjournals.com/ijdss/article=2025/view=0
References
- Guo H. Research on web data mining based on topic crawler. J Web Eng. 2021 Jun; 20(4): 1193–206.
- Dogan A, Birant D. Machine learning and data mining in manufacturing. Expert Syst Appl. 2021 Mar 15; 166: 114060.
- Sarker IH. Machine learning: Algorithms, real-world applications and research directions. SN Comput Sci. 2021 May; 2(3): 160.
- Mali Y, Upadhyay T. Fraud Detection in Online Content Mining Relies on the Random Forest Algorithm. SciWaveBulletin. 2023 Jul 15; 1(3): 13–20.
- Mahesh B. Machine learning algorithms-a review. Int J Sci Res. 2020 Jan 5; 9(1): 381–6.
- Yağcı M. Educational data mining: prediction of students’ academic performance using machine learning algorithms. Smart Learn Environ. 2022 Mar 3; 9(1): 11.
- Zaki MJ, Meira Jr W, Meira W. Data mining and machine learning: Fundamental concepts and algorithms. Cambridge: Cambridge University Press; 2020 Jan 30.
- Fancy LS, Rajamurugan A. A Review on Basics in Web Mining. Int J Adv Res Comput Commun Eng. 2014 Nov; 3(11): 8429–8432.
- Pamuji A. Investigation of the Dark Web Illegal Activities using Data Mining Approach. Bulletin of Computer Science and Electrical Engineering. 2023 Jun 28; 4(1): 37–48.
- Wang S, Cao J, Philip SY. Deep learning for spatio-temporal data mining: A survey. IEEE Trans Knowl Data Eng. 2020 Sep 22; 34(8): 3681–700.
- Kumar TS. Data mining based marketing decision support system using hybrid machine learning algorithm. J Artif Intell. 2020 Aug 28; 2(03): 185–93.
- Mathew A, Amudha P, Sivakumari S. Deep learning techniques: an overview. Advanced Machine Learning Technologies and Applications: Proceedings of AMLTA 2020. 2021; 599–608.
- Pramod A, Naicker HS, Tyagi AK. Machine learning and deep learning: Open issues and future research directions for the next 10 years. Computational analysis and deep learning for medical care: Principles, methods, and applications. Wiley; 2021 Jul 28; 463–90.
- Campos Macias N, Düggelin W, Ruf Y, Hanne T. Building a technology recommender system using web crawling and natural language processing Technology. Algorithms. 2022 Aug 3; 15(8): 272.
- Hewage UH, Sinha R, Naeem MA. Privacy-preserving data (stream) mining techniques and their impact on data mining accuracy: a systematic literature review. Artif Intell Rev. 2023 Sep; 56(9): 10427–64.
- Dodda SB, Maruthi S, Yellu RR, Thuniki P, Reddy SR. Conversational AI-Chatbot Architectures and Evaluation: Analyzing architectures and evaluation methods for conversational AI systems, including chatbots, virtual assistants, and dialogue systems. Australian Journal of Machine Learning Research & Applications (AJMLRA). 2021; 1(1): 13–20.
| Volume | 03 |
| Issue | 01 |
| Received | 14/02/2025 |
| Accepted | 16/02/2025 |
| Published | 10/03/2025 |
| Publication Time | 24 Days |
async function fetchCitationCount(doi) {
let apiUrl = `https://api.crossref.org/works/${doi}`;
try {
let response = await fetch(apiUrl);
let data = await response.json();
let citationCount = data.message[“is-referenced-by-count”];
document.getElementById(“citation-count”).innerText = `Citations: ${citationCount}`;
} catch (error) {
console.error(“Error fetching citation count:”, error);
document.getElementById(“citation-count”).innerText = “Citations: Data unavailable”;
}
}
fetchCitationCount(“10.37591/IJDSS.v03i01.0”);

