Terminal is absolutely important for every programmer. We have to be tremendously familiar with it. Here is the list of foremost keywords for using the terminal.
Continue reading “Using the Terminal”Author: rowialfata
Underfitting and Overfitting
It is a common problem for machine learning to overgeneralize or too specific on the training data. When a model is too generalize it is called underfitting. While when the model is too specific or follow the exact
Continue reading “Underfitting and Overfitting”Support Vector Machine (SVM)
Support Vector Machine (SVM) separates two classes by drawing a line that has maximize distance with the closest points. The plane being drawn is called hyperplane. SVM works with two steps:
Continue reading “Support Vector Machine (SVM)”How to Clone from Github?
Github is one of the most important platforms for programmer. However, it is not easy for beginner to understand it. So, here I will explain some crucial features in Github. One of which is Clone feature that we all absolutely need.
Continue reading “How to Clone from Github?”Importing Python File from Other Folder
Yesterday I am trying a simple machine learning project from Udacity. There are bunch of files provided and sometime we have to link one another through importing it. It got me frustrated when trying it repeatedly and still got the same error.
Continue reading “Importing Python File from Other Folder”Converting Code of Python 2 to Python 3
If you are beginner, it might be frustrating when you find a code in github or other sources that is written in Python 2 while you the python you have is version 3. Some of you might think to convert it manually (like what I did), but it going to be crazy to look thoroughly at hundreds or even thousands of lines of code.
Continue reading “Converting Code of Python 2 to Python 3”