Seelan
Seelan
**CS 6601 Artificial Intelligence** Instructor: Thad Starner Course Page: [Link](https://www.omscs.gatech.edu/cs-6601-artificial-intelligence) This is my second year in the OMS program and CS6601 proved to be way more serious than the [previous...
**Audio pre-processing for Machine Learning: Getting things right** For any machine learning experiment, careful handling of input data in terms of cleaning, encoding/decoding, featurizing are paramount. When it comes to...
**CS 7646 Machine Learning For trading** Instructor(s): David Byrd / David Joyner / Tucker Balch Course Page: [Link](http://quantsoftware.gatech.edu/CS7646_Fall_2019) This was my third OMS course after [Robotics - AI Techniques](https://github.com/scarecrow1123/blog/issues/6) and...
Python's `logging` module provides a list of super [useful handlers](https://docs.python.org/3/howto/logging.html#useful-handlers) to handle/redirect log messages to required target destinations. For instance `FileHandler` sends the messages to a file, `DatagramHandler` sends to...
### CS 7638 Robotics - AI Techniques Instructor(s): [Jay Summet](https://www.omscs.gatech.edu/cs-7638-artificial-intelligence-robotics) / [Sebastian Thrun](https://en.wikipedia.org/wiki/Sebastian_Thrun) Course Page: [Link](https://www.omscs.gatech.edu/cs-7638-artificial-intelligence-robotics) This happened to be my second OMS course following [KBAI](https://github.com/scarecrow1123/blog/issues/3). Previously known as AI...
I found [Jsonnet](https://jsonnet.org/) through AllenNLP. Hence a few words on that first. We use [AllenNLP](https://github.com/allenai/allennlp) for writing our Deep Learning experiments in our team. It is primarily built for doing...
### Online Master of Science Computer Science (OMSCS) Georgia Tech(GT) introduced their [Online Master's program](http://www.omscs.gatech.edu/) way back in 2014 IIRC. I remember reading one of the early Hacker News(HN) threads...
### CS7637 Knowledge-Based AI - Cognitive Systems (KBAI) - Spring '19 Instructor: [Prof David Joyner](https://twitter.com/DrDavidJoyner) Course Page: [Link](http://lucylabs.gatech.edu/kbai/) I [applied for OMSCS in 2018 and joined the Spring '19 batch](https://github.com/scarecrow1123/blog/issues/2)....
EAFP - Easier to Ask for Forgiveness than Permission LBYL - Look Before You Leap These are two different ways to do control flow. LBYL style pertains to writing `if/else`...