Found 27104 Articles for Server Side Programming

Normalization vs Standardization

Pranavnath
Updated on 28-Jul-2023 17:56:46

290 Views

Introduction Normalization and standardization are two commonly utilized strategies in information per−processing, pointing to convert crude information into a reasonable arrange for investigation and modeling. These strategies play a crucial part in machine learning by progressing the properties of the information, such as its run, dissemination, and scale. Normalization includes scaling the information to a particular run, ordinarily between and 1, whereas protecting the relative connections between highlights. Standardization, on the other hand, centers the information on its cruelty and scales it to have a standard deviation of 1. In this article, we are going investigate the concepts of normalization ... Read More

Perceptron Algorithm for AND Logic Gate with 2-bit Binary Input

Pranavnath
Updated on 28-Jul-2023 17:55:12

3K+ Views

Introduction The Perceptron Algorithm, a foundation of artificial intelligence and machine learning, shapes the premise for different complex neural network designs. In this article, we investigate the application of the Perceptron Calculation to actualize the AND logic gate with 2−bit binary inputs. The AND gate, a principal parallel logic gate, produces a 1 yield as it were when both inputs are 1; something else, the yield is 0. Through a step−by−step clarification of the Perceptron Algorithm and Python code execution, we reveal how this calculation can be prepared to imitate the behavior of the AND gate. Understanding the AND Logic ... Read More

Basis Vectors in Linear Algebra in Machine Learning

Pranavnath
Updated on 28-Jul-2023 17:51:53

266 Views

Introduction Linear algebra forms the backbone of many machine learning algorithms, and one key concept within this field is that of basis vectors. In machine learning, basis vectors provide a powerful framework for representing and understanding complex data sets. By decomposing data into its constituents based on these vectors, we unlock new ways to extract meaningful patterns and make accurate predictions. This article explores the role of basis vectors in linear algebra's application to machine learning. Understanding how to leverage basis vectors empowers researchers and practitioners to push the boundaries of machine learning, ultimately leading us towards smarter technologies ... Read More

Performing Runs test of Randomness in Python

Pranavnath
Updated on 28-Jul-2023 17:35:52

488 Views

Introduction The concept of randomness plays a crucial part in different areas such as insights, cryptography, and simulation. Deciding whether a sequence of information is really irregular or shows a few basic designs is fundamental in numerous applications. One measurable test commonly utilized for this reason is the Runs test of randomness. In this article, we dig into the Runs test of randomness and illustrate how to perform it utilizing Python, a flexible programming language broadly utilized for factual examination. By leveraging the capable capabilities of Python and the scipy.stats module, able to efficiently apply the Runs test to ... Read More

Weighted Product Method in Multi Criteria Decision Making

Pranavnath
Updated on 28-Jul-2023 17:33:38

293 Views

Introduction Within the domain of decision−making, there are often multiple criteria that have to be considered at the same time. Whether it's selecting an unused item to dispatch, choosing a venture procedure, or making an individual choice, assessing and positioning choices based on different components can be a complex assignment. Multi−Criteria Decision Making (MCDM) strategies offer an organized approach to handling such issues. One such strategy is the Weighted Product Method (WPM), which gives an orderly way of consolidating preferences and weighting criteria to reach at the last choice. In this article, we'll dig into the complexities of the Weighted ... Read More

Python program to print all Strong numbers in given list

Saba Hilal
Updated on 08-Aug-2023 18:32:38

180 Views

A number is said to be a Strong number if the factorials of its individual digits are found and then added together and the total sum calculated is equal to the number itself. Here, in this Python article, using three different examples, the different methods of finding the Strong numbers if present in a list are given. In the Example 1, a list that contains the precalculated factorials of numbers are used for calculating the sum of factorials of all the present digits in a number while checking whether the selected number is strong or not. In example 2, the ... Read More

Python program to print all positive numbers in a range

Saba Hilal
Updated on 28-Jul-2023 18:13:28

392 Views

Sometimes the task is to select only the positive numbers from a given range. Here, in this Python article, first, the range is taken as input and then the negative as well as positive integers within this range are chosen. In this Python article, from these numbers only the positive numbers are then selected using the different methods in four different examples. In example 1, the positive numbers are picked and separated into another list. In the example 2, all the elements that are not positive are removed. In example 3, the sorted list is split up to zero and ... Read More

Deep Neural Net with forward and Back Propagation

Pranavnath
Updated on 28-Jul-2023 17:32:00

137 Views

Introduction Artificial intelligence and machine learning have experienced a transformation since to Deep Neural Networks (DNN), which have empowered exceptional progressions over a assortment of areas. In this article, we'll look at the thoughts of forward and backward propagation and how they relate to the advancement and advancement of advanced neural systems. Python librariеs likе TеnsorFlow havе incredibly streamlined thе execution of thе systеms, making thеm morе opеn to analysts and professionals. Approach 1 : Tensorflow In this approach, we utilize the control of the TensorFlow library to execute a profound neural arrange with forward and backpropagation. ... Read More

Python program to print all negative numbers in a range

Saba Hilal
Updated on 28-Jul-2023 18:10:20

239 Views

Sometimes the task is to select the negative numbers from a given range. Here, in this Python article, first, the range is taken as input and then the integers within this range are specified. From these numbers only the negative numbers are then selected using the different methods in 4 different examples. In example 1, the negative numbers are picked and separated into another list. In the example 2, all the elements that are not negative are removed. In example 3, the sorted list is split upto zero and only negatives are retained. In example 4, filter is used to ... Read More

How to check if URL Contain Certain String using PHP

Pradeep Kumar
Updated on 31-Jul-2023 11:40:45

3K+ Views

What is PHP? PHP (Hypertext Preprocessor) is a popular scripting language designed for web development. It is widely used for creating dynamic and interactive web pages. PHP code can be embedded directly into HTML, allowing developers to mix PHP and HTML seamlessly. PHP can connect to databases, process form data, generate dynamic content, handle file uploads, interact with servers, and perform various server-side tasks. It supports a wide range of web development frameworks, such as Laravel, Symfony, and CodeIgniter, which provide additional tools and features for building web applications. PHP is an open-source language with a large community, extensive documentation, ... Read More

Advertisements