
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Jaisshree has Published 120 Articles

Jaisshree
698 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

Jaisshree
804 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

Jaisshree
159 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

Jaisshree
237 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

Jaisshree
650 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

Jaisshree
921 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

Jaisshree
526 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

Jaisshree
363 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

Jaisshree
1K+ 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

Jaisshree
645 Views
The power of machine learning has enabled us to predict rainfall with several algorithms, including Random Forest and XGBoost. There are no best algorithms for predicting rainfall, every algorithm has its advantages and disadvantages. The Random Forest is efficient with small datasets, while the XGboost is efficient with large datasets. ... Read More