Skip to content

Instantly share code, notes, and snippets.

View ariG23498's full-sized avatar
🐢
Learning slowly

Aritra Roy Gosthipaty ariG23498

🐢
Learning slowly
View GitHub Profile
@ariG23498
ariG23498 / pil-wandb.ipynb
Created May 12, 2021 16:30
PIL wandb images
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ariG23498
ariG23498 / wandb-local-seg.ipynb
Last active May 19, 2021 08:02
wandb-local-seg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ariG23498
ariG23498 / tesseract-install.sh
Created June 16, 2021 10:35
This shell script when run in colab installs the tesseract version 4.1.1
apt install libleptonica-dev
apt update
apt install automake
apt install pkg-config
apt install libsdl-pango-dev
apt install libicu-dev
apt install libcairo2-dev
apt install bc
wget https://github.com/tesseract-ocr/tesseract/archive/refs/tags/4.1.1.zip
unzip -qq /content/4.1.1.zip
@ariG23498
ariG23498 / rgb-to-lab-color-space.ipynb
Created June 21, 2021 15:25
RGB to LAB color space
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ariG23498
ariG23498 / transformer_block.py
Last active March 16, 2022 07:01
Just a transformer block impelemented in TensorFlow Keras
class TransformerBlock(layers.Layer):
"""A generic Transformer block with MHSA and MLP layers.
Args:
config: The configuration of the architecture.
"""
def __init__(self, config, **kwargs):
super().__init__(**kwargs)
self.config = config
self.layer_norm1 = layers.LayerNormalization(
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ariG23498
ariG23498 / scratchpad.ipynb
Last active May 31, 2022 02:49
scratchpad
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.