1. Introduction to XGBoost What is XGBoost? XGBoost stands for eXtreme Gradient Boosting. XGboost is the most widely used algorithm in machine learning, whether the problem is a classification or a regression problem. Even when it comes to machine learning competitions and hackathon, XGBoost is one of the excellent algorithms …
Read More »Speech to Text and Text to Speech
Speech to Text and Text to Speech Python Text to Speech¶ In [ ]: pip install pyttsx3 In [1]: import pyttsx3 engine = pyttsx3.init() engine.say("I will speak this text") engine.runAndWait() In [2]: import pyttsx3 engine = pyttsx3.init() text = "pyttsx3 is a text-to-speech conversion library in Python. Unlike alternative libraries, it works offline, and …
Read More »Text to Speech
Text to Speech Python Text to Speech (Pyttsx3)¶ https://pypi.org/project/pyttsx3/ In [ ]: pip install pyttsx3 In [2]: import pyttsx3 In [3]: engine = pyttsx3.init() engine.say("I will speak this text") engine.runAndWait() In [4]: engine = pyttsx3.init() engine.say("pyttsx3 is a text-to-speech conversion library in Python. Unlike alternative libraries, it works offline, and is compatible with both Python …
Read More »Build Own Alexa In Python
Build Own Alexa In Python Don’t Buy Alexa – Build Your Own ALEXA using Python¶ Alexa Has Only 2 Tasks:¶1. Listening¶Listening to your command is the most basic functionality of any virtual assistant, like: “Hey Alexa, play music,” “Hey Alexa, what’s the time?” Alexa has to listen to your command, …
Read More »Extract Keywords using Python
Extract Keywords using Python To extract keywords using Python, you can follow these steps conceptually: 1. Understanding Keyword Extraction:¶Keyword extraction is the process of identifying the most relevant or significant words and phrases from a text. These keywords often summarize the main topics or ideas in the text. The goal …
Read More »Handwriting Digit Recognition
Handwriting Digit Recognition Handwriting digit recognition typically involves using machine learning or deep learning models to classify handwritten digits, such as those found in the popular MNIST dataset. Here’s an overview of how it’s usually done: 1. Data Collection¶ MNIST Dataset: The most common dataset for digit recognition, containing 60,000 …
Read More »R DataFrame
15 R DataFrame R Tutorials by : Er Karan Arora : Founder & CEO – ITRONIX SOLUTIONS Data Frames Data Frames are data displayed in a format as a table. Data Frames can have different types of data inside it. While the first column can be character, the second and …
Read More »Cat Paste Functions
14 Cat Paste Function R Tutorials by : Er Karan Arora : Founder & CEO – ITRONIX SOLUTIONS 1: Cat function in R cat function in R will combine character values and print them to the screen or save them in a file directly. The cat function coerces its arguments …
Read More »Matrices
12 Matrices R Tutorials by : Er Karan Arora : Founder & CEO – ITRONIX SOLUTIONS Syntax The basic syntax for creating a matrix in R is − matrix(data, nrow, ncol, byrow, dimnames) Following is the description of the parameters used − data is the input vector which becomes the …
Read More »List
11 List R Tutorials by : Er Karan Arora : Founder & CEO – ITRONIX SOLUTIONS List is a data structure having components of mixed data types. A vector having all elements of the same type is called atomic vector but a vector having elements of different type is called …
Read More »
Machine Learning Tutorials, Courses and Certifications