August 22, 2023

Tensor Standard NumPy like indexing Joining Tensor Multiplying Tensors ๐Ÿ‘‰๐Ÿผ In-place operations Operations with _ suffix are in place in-place operations save some memory but can be problematic while computing derivatives because of an immediate loss of history. Therefore, it is discouraged. Bridge with NumPy ๐Ÿ‘‰๐Ÿผ Any change in tensor will reflect in the corresponding […]

September 13, 2022

A quick reference to basic YAML syntax Lists All members of a list are lines beginning at the same indentation level starting with a “- ” (a dash and a space) Dictionary key: value (colon followed by a space) Complicated Data Structures Flow Connections It can be used to represent abbreviated data structures Boolean Use […]

August 29, 2022

โœ… ๐Ÿข โŒ ๐Ÿ‡ In the last few weeks, I have been involved in a lot of things at work and after analyzing at the end of the month I realized I did not do any meaningful work during this time. This made me recall an article, I read earlier this year, by Cal Newport […]

August 24, 2022

Old ways ๐Ÿ†š New Ways Hello ๐Ÿ‘‹๐Ÿฝ Here are two things that I pondered ๐Ÿ’ญ over the weekend. What do you want in life? A snippet from the Collaboration Fund newsletter blog by Morgan Housel (Author of the Psychology of Money) – โ€ฆ Fifty-four years agoโ€ฆ Sunday Times offered ยฃ5,000 to whoever could sail solo […]

April 29, 2021

Target Users If you use python and like having an organized computer – this article is for you ๐Ÿ‘‹๐Ÿฝ The data ๐Ÿ’ฟ in your mac ๐Ÿ’ป is spread around into downloads, desktop, etc.There is a python ๐Ÿ tool organize-tool which can help you declutter and organize all your data with a simple YAML configuration. The best part is that – you can also have […]

April 27, 2021

Created an app to to zero shot classification using huggingface ๐Ÿค— library. In this app, I created a simple streamlit app to try out the zero-shot-classification pipeline provided by HuggingFace. Please take a look at the code here https://github.com/ygivenx/zero-shot-classifier-app Or try it yourself by running Make sure your docker memory is set to over 6GB.docker pull ygivenx/zero-shot-appdocker run -it […]