Skip to content

Instantly share code, notes, and snippets.

@AadityaJ
AadityaJ / base.py
Created October 1, 2016 20:07
Provides basics for later scikit learn interface implementation. File structure
"""
scikit learn interface for gensim for easy use of gensim with scikit-learn
"""
class BaseClass(object):
def __init__(self):
"""init"""
def run(self):
return 0