Tips and Traps¶
Do NOT use SQLite3 on network filesystems (NFS, SAMBA, etc).
.schemashow create statement of a tableYou can force query to keep the original order of rows by applying
order by rowid.SQLite3 supports full-text search by the FTS5 extension (since 3.9.0). It is suggested that you use the
porter
Tips on Reinforcement Learning
** Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Reinforcement Learning algorithms — an intuitive overview has a good overview of different approaches to RL. **
Courses & Tutorials
http://rail.eecs.berkeley.edu/deeprlcourse/
https://towardsdatascience.com/reinforcement-learning-q-learning-with-decision-trees-ecb1215d9131
Frameworks
The article A …
Tips on NLP
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
https://blog.floydhub.com/ is a great place for deep learning blogging.
Overview of NLP
Deep Learning for NLP: An Overview of Recent Trends Chapter 8 of the book (Performance of …
Garbage Collection in Python
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Hands on the Python Module Packaging
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Version Handling¶
Hands on the requests Module in Python
Comments¶
It is suggested that you use the requests module instead of urllib unless you want to have minimal 3rd-party dependencies.
Response.raise_for_statusis a convenient method for raising an exception corresponding to the HTTP status code.