Hi 👋

My name is Rajat

  • My tryst with computers started with a dream to build a website. Currently, I am working on my Master’s research in text-to-image and image-to-text generative diffusion models.

Machine Learning Glossary

Glossary of terms from Machine Learning, Computer Vision, Natural Language Processing, and Statistics.

February 11, 2020 Â· 4 min Â· Me

Default Arguments in Python

Python’s handling of default argument values is one of the few things that tends to create mistakes unknowingly (only once though). This horror story is from my personal experience. It took me an hour to debug my silly mistake of using mutable value as default argument in function. Its really difficult to find this type bugs in thousands of lines of code. Using Mutable Value as function argument def foo(numbers=[]): numbers....

January 11, 2017 Â· 2 min Â· Me