What This is an article that summarizes what I noticed and researched when learning machine learning using Chainer. It is written based on my understanding, so it may be incorrect. I will correct any mistakes.
Content
Jupiter Notebook It looks like the original development environment. It is provided by Google Colaboratory, one of the cloud services. It seems to work on the browser.
It refers to the timing of executing the program. Here, it seems to show the elapsed time from the execution of the program.
The return value will always be a float type Multiplication is possible for string type. Repeated output
The return value is bool type exa. Type (1 <2) => true
Line break \ n, tab \ t * Valid for print () function
There is a method to uppercase or lowercase. Variable str can be converted with str.upper (), str.lower ()
There is a method that allows you to insert a string into a string. .format ()
There is a way to refer from the end instead of the beginning, the last specifies [-1] for the index, returns [-2], [-3] Apparently there are a lot of features related to this list, so I will turn it next time
Recommended Posts