Stealing pages from the server...

I train machine to train model.
Iimport Own Modules in Jupyter Iimport Own Modules in Jupyter
Importing the module path in Jupyter notebook could be a real pain in the ass at times. In this article, I'll aim to explain how I establish a default system path for notebooks in order to avoid hidden configurations and make it easier to maintain a notebook or code.
2022-05-25
Equivalent WATCH Command in Windows Equivalent WATCH Command in Windows
In Linux, the watch command is extremely handy for running a command on a regular basis and displaying the results. This is particularly useful if you need to keep track of any changes in the output of a command that is run repeatedly. The watch command has no direct equivalent in Windows, however the while loop in Windows PowerShell or the for loops in a Windows command-line prompt (CMD) can achieve the same result.
2022-03-23
Run Octave Script from Command Line Run Octave Script from Command Line
Octave is an open-source replacement for MATLAB, a software and programming environment for numerical arithmetic and data analysis. Sometimes it's more convenient to run Octave scripts from the command line.
2021-12-24
Use SUBL Command in Windows Use SUBL Command in Windows
It's sometimes easier to edit a file from terminal by using Sublime Text, and yet it is not the default in Windows. This tutorial will show you how to use the command line to open files with Sublime Text in Windows.
2021-12-20
Render Pseudocode in Hexo Blog Render Pseudocode in Hexo Blog
pseudocode.js is a JavaScript library that typesets pseudocode beautifully to HTML. When I was trying to render the pseudocode in my tech blog, I struggled a lot. I tried loads of methods, but none of them worked. Finally, this one worked out, so I'd like to document it for future reference.
2021-09-21
Install RPM Files on Ubuntu Install RPM Files on Ubuntu
On Ubuntu, I will show you how to instal RPM packages. The design of Debian-based systems like Ubuntu and RedHat-based systems like CentOS is quite similar. There are, however, a few minor differences. For example, RPM files are used to represent software packages on RedHat-based systems, while DEB files are used on Debian-based systems. An RPM package can be installed in one of two ways, by converting the RPM file to a DEB file or by installing the RPM file directly. Both approaches are easy, but depending on the package being installed, installing RPM packages on a Debian-based system can cause problems.
2021-05-25
Busuanzi Unable to Display the Number of Visitors Busuanzi Unable to Display the Number of Visitors
When adding statistics to the number of people and visits to the Hexo blog, according to the standard process of writing, pushing the number of people and visits after running found that the number of people simply do not load. Looking through the information found that the reason, busuanzi because in 2018/10/12 its domain name expired, so the number of people can not be displayed.
2021-05-23
SSH into Google Colab SSH into Google Colab
Sometimes the code I write may not work in my local machine, however, it works in Google Colab. So, I wanna connect to Google Colab terminal using SSH.
2021-02-06
Prevent Colab from Disconnecting Prevent Colab from Disconnecting
Google Colab notebooks have an idle timeout of 90 minutes and absolute timeout of 12 hours. This means, if user does not interact with his Google Colab notebook for more than 90 minutes, its instance is automatically terminated. Also, maximum lifetime of a Colab instance is 12 hours.
2021-02-06
GitHub Pages from Zero to Hero GitHub Pages from Zero to Hero
The ability to classify music in an automated manner has become increasingly more important with the advent of musical streaming services allowing greater access to music. Spotify alone hit 100 million users in 2016, with other services provided by companies such as Apple, Soundcloud and YouTube. In addition, there are huge numbers of professional musicians, approximately 53,000 in the USA alone, as well as amateurs who are producing music which needs to be classified. With this quantity of music, it is unfeasible to classify genres without an automated method.
2021-01-25
Integrate Atom with Cmder Integrate Atom with Cmder
In this blog, I'll be sharing with you my programming setup for Atom and Cmder, and talking about the most useful tips in it.
2020-12-15
TensorFlow 2.0 Installation TensorFlow 2.0 Installation
TensorFlow makes people love and hate. It is an end-to-end open source platform for Machine Learning and Deep Learning. However, I always have trouble with installing TensorFlow a bunch of times. Thus I decide to share my experience in order to help others to solve this same problem.
2020-11-28