2019.12.16(pm): How to Change Jupyter notebook Initial Path Settings

When using the Jupyter notebook, the initial path is often C: \ Users \ USERNAME. In this case, It is difficult to manage python code, and C drives become a mess. So users run Jupyter notebook, go to Desktop, create a new folder and work on it. Because doing this repetitive task every time is …

2019.12.15(pm): Virtual Environment Management with Anaconda

If you are using anaconda, you will see that the command is set to base and root. Virtual environment management is essential and important when using Python. Today, let’s look at how to create and manage virtual environments in Anaconda. Here are the commands: To check your Python version, use the bleow command to check …

2019.12.08(pm): Multi-Layer Perceptron

Perceptron has the limitation that it can only handle situations where linear separation is possible. The problem of XOR classification is that the perceptron has a 75% accuracy rate because one sample is wrong no matter which decision line is used. In 1969, Marvin Minsky’s Perceptrons, the father of artificial intelligence, revealed this fact, and …