Category: developer

Posts for developers

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 […]

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 […]