Skip to content

Instantly share code, notes, and snippets.

View vigneswaran-chandrasekaran's full-sized avatar
🤾‍♀️
Ad Astra per Aspera

Vigneswaran Chandrasekaran vigneswaran-chandrasekaran

🤾‍♀️
Ad Astra per Aspera
View GitHub Profile
@BBloggsbott
BBloggsbott / README.md
Last active September 19, 2019 05:08
A python script that will get the latest papers in machine learning from arxiv.org

Arxiv Scrapper (ML)

Install required packages

pip install -r requirements.txt

Run Scrapper

python arxiv_scrapper.py
@praateekmahajan
praateekmahajan / moving_mnist.py
Last active December 10, 2021 13:47 — forked from tencia/moving_mnist.py
Generate Moving MNIST dataset and save it as npz or jpeg. Commented and Python 3 Version of : https://gist.github.com/tencia/afb129122a64bde3bd0c
import math
import os
import sys
import numpy as np
from PIL import Image
###########################################################################################
# script to generate moving mnist video dataset (frame by frame) as described in
@jeremyjordan
jeremyjordan / sgdr.py
Last active December 4, 2023 13:41
Keras Callback for implementing Stochastic Gradient Descent with Restarts
from keras.callbacks import Callback
import keras.backend as K
import numpy as np
class SGDRScheduler(Callback):
'''Cosine annealing learning rate scheduler with periodic restarts.
# Usage
```python
schedule = SGDRScheduler(min_lr=1e-5,