Create PDF File From .txt File Using Python fpdf June 27, 2020cocyer In this tutorial, we will introduce the way to use python fpdf library to convert a .txt file to a pdf file. 1. [...]
Remove English Stop Words From Text Using Python NLTK June 26, 2020cocyer In this tutorial, we will introduce the way to remove english stop words from a text using python nltk. 1. Import library from [...]
Implement Linear Regression in Tensorflow June 21, 2020cocyer In this tutorial, we will introduce the way to implement linear regression in tensorflow, this is the basic of deep learning. 1. Import [...]
Tune Neural Network Hyperparameters Using Grid Search in Keras June 21, 2020cocyer In this tutorial, we will introduce how to tune neural network hyperparameters using grid search method in keras. 1. Import libraries import numpy [...]
Select Best Model in Machine Learning Using Grid Search June 21, 2020June 21, 2020cocyer In this tutorial, we will introduce how to use sklearn grid search method to find the best models in machine learning. 1. Import [...]
Select Random Element From Python List June 21, 2020cocyer In this tutorial, we will introduce the best way to select a random element from a python list. We will use python random [...]
Create and Use a Temporary File in Python June 21, 2020cocyer In this tutorial, we will introduce the way to create a temporary file in python, temporary file will be deleted if you close [...]
Extract Computer MAC Address Using Python June 21, 2020cocyer In this tutorial, we will introduce the way to extract a mac address of a computer using python. We will use python mac [...]
Read and Display an Image in a Window Using Python OpenCV June 21, 2020cocyer In this tutorial, we will introduce you how to read an image then show it in a window using python opencv. 1. Import [...]
Implement Linear Search in Python June 21, 2020cocyer In this tutorial, we will introduce the way to implement a linear search using python. What is linear search? Linear Search a search [...]