Jaisshree has Published 121 Articles

Implementing Neural Network using TensorFlow in Python

Jaisshree

Jaisshree

Updated on 07-Aug-2023 15:01:55

100 Views

Neural Network is a widely used concept in the field of Artificial Intelligence and is based on the structure of the human brain. A neural network works in layers, the simplest one being a sequential model where the input of the current layer is the output of the previous layer. ... Read More

Implement Deep Autoencoder in PyTorch for Image Reconstructionp

Jaisshree

Jaisshree

Updated on 07-Aug-2023 15:00:41

497 Views

Machine learning is one of the branches of artificial intelligence that involves developing Statistical models and algorithms that can enable a computer to learn from the input data and make decisions or predictions without being hard programmed. It involves training the ML algorithms with large datasets so that the machine ... Read More

Getting Started with Transformers

Jaisshree

Jaisshree

Updated on 07-Aug-2023 14:57:59

315 Views

Computer science and artificial intelligence's Natural Language Processing (NLP) branch focuses on how computers and human language interact. It entails the creation of models and algorithms that can analyze, comprehend, and produce human language. Numerous issues, including language translation, sentiment analysis, text summarization, speech recognition, and question-answering systems, are resolved ... Read More

Explaining the Language in Natural Language

Jaisshree

Jaisshree

Updated on 07-Aug-2023 14:51:20

54 Views

If you have ever talked with chatbots and used language translation tools, then you will know that these tools work exactly like a real human. This is possible because they use Natural Language Processing (NLP) techniques to understand the natural languages that humans use for communication. However, this is quite ... Read More

Classification of Text Documents using the Naive Bayes approach in Python

Jaisshree

Jaisshree

Updated on 07-Aug-2023 14:47:19

117 Views

Naive Bayes algorithm is a powerful tool that one can use to classify the words of a document or text in different categories. As an example, if a document has words like ‘humid’, ‘rainy’, or ‘cloudy’, then we can use the Bayes algorithm to check if this document falls in ... Read More

BLEU Score for Evaluating Neural Machine Translation using Python

Jaisshree

Jaisshree

Updated on 07-Aug-2023 14:44:10

411 Views

Using NMT or Neural Machine Translation in NLP, we can translate a text from a given language to a target language. To evaluate how well the translation is performed, we use the BLEU or Bilingual Evaluation Understudy score in Python. The BLEU Score works by comparing machine translated sentences ... Read More

What is Standardization in Machine Learning

Jaisshree

Jaisshree

Updated on 21-Jul-2023 13:56:50

427 Views

A dataset is the heart of any ML model. It is of utmost importance that the data in a dataset are scaled and are within a particular range, to provide accurate results. Standardization in machine learning , a type of feature scaling ,is used to bring uniformity to the datasets ... Read More

SPSA (Simultaneous Perturbation Stochastic Approximation) Algorithm using Python

Jaisshree

Jaisshree

Updated on 21-Jul-2023 11:28:02

328 Views

A simultaneous perturbation stochastic optimization algorithm (SPSA) finds the minimum of an objective function by simultaneously perturbing the objective function. Using SPSA, the objective function gradient is estimated by evaluating a small number of functions at random perturbations. It is particularly useful when the objective function is noisy, non-differentiable, ... Read More

Spaceship Titanic Project using Machine Learning in Python

Jaisshree

Jaisshree

Updated on 21-Jul-2023 11:26:13

231 Views

The original Titanic project in Machine learning is aimed at finding whether a person on the Titanic will survive or not. However, this project named the spaceship Titanic is a bit different. The problem statement here is that a spaceship has people going on a trip in space. ... Read More

Skin Cancer Detection using TensorFlow in Python

Jaisshree

Jaisshree

Updated on 21-Jul-2023 11:01:04

499 Views

Early detection of any disease, especially cancer, is very crucial for the treatment phase. One such effort made in this direction is the use of machine learning algorithms to detect and diagnose skin cancer with the help of a machine learning framework like Tensorflow. The traditional method of cancer ... Read More

Advertisements