Skip to content

Instantly share code, notes, and snippets.

View puliyadivinod's full-sized avatar
🎯
Focusing

Vinod Puliyadi puliyadivinod

🎯
Focusing
View GitHub Profile
@prhbrt
prhbrt / IMDB + TFIDF + LogReg.ipynb
Last active March 25, 2019 05:38
Notebook of TFIDF Logistic regression on IMDB sentiment dataset (provided by keras)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@hanneshapke
hanneshapke / track_celery.py
Created July 22, 2016 03:41
Decorator for Celery functions to measure the execution time and memory usage
import time
from memory_profiler import memory_usage
import logging
celery_logger = logging.getLogger('celery')
def track_celery(method):
"""