Deepen your technical knowledge
Learn and share the latest technology with community members in Webscale’s Engineering Education Program.
A Beginners Guide to SoftMax Regression Using TensorFlow
This article introduces basic softmax regression and its implementation in Python using TensorFlow to the learner. While implementing softmax regression in Python using TensorFlow, we will use the...
How to Build a Snake Game with JavaScript
The best way to learn any programming language is through hands-on projects. The Snake Game is a simple game you can make using the basics of JavaScript and HTML. The basic goal is to navigate a snake and eat as many apples as possible without touching the walls or...
How to Implement Drag and Drop File Upload in Next.js
It is a common requirement for web applications to be able to upload files to a server. This can be achieved using the HTML5 Drag and Drop API and the JavaScript FileReader API. The Drag and Drop API allows you to drag and drop files onto a web page and the FileReader...
Creating ChatBot Using Natural Language Processing in Python
A bot is a computer program that performs predetermined tasks automatically. Its goal is to perform human duties the same way humans do. In a nutshell, they mimic human behavior. In this tutorial, we will design a conversational interface for our chatbot using natural...
How to Build a Video Streaming Application using Spring Boot
Many popular applications in the world use some form of video streaming functionality. Implementing this feature can give you and your users a lot of creative...
The Best Way to Facilitate CSS Media Queries using SCSS Mixins
In web development, it is essential to build sites and applications that are user-friendly and visually appealing across every device. CSS media queries are...
Getting Started with Support Vector Regression in Python
Support Vector Regression (SVR) is a regression function that is generalized by Support Vector Machines - a machine learning model used for data...
Implementing RSA Encryption and Decryption in Python
Data encryption is an important practice used to protect data transfer on the internet. This helps prevent data sent on the internet from unauthorized access....
How to Implement K fold Cross-Validation in Scikit-Learn
The most typical strategy in machine learning is to divide a data set into training and validation sets. 70:30 or 80:20 could be the split ratio. It is the...
How to Generate Reports in a Spring Boot App Leveraging Jaspersoft
We use reports in our day-to-day activities. We may use them when we are purchasing products, services, or managing transactions. This includes summary...
Building a Vue 3 Application with JSON Server and Axios
Vue is a front-end JavaScript framework used to create single-page apps that run on the client-side. It can also be used to create full-stack applications by...
License Plate Detection And Recognition Using OpenCv And Pytesseract
License plate detection is identifying the part of the car that is predicted to be the number plate. Recognition is identifying the values that make up the...
A 3D Object Detection Solution for Everyday Objects
This tutorial will perform 3D object detection using the mediapipe library and python. We will be drawing a 3D bounding box around an object instead of the...