f95c0ab527b5bf8a1c92d05e77d165f668435d22,underthesea/classification/bank/__init__.py,,,#,4

Before Change


sys.path.insert(0, dirname(__file__))

y_transform = joblib.load(join(dirname(__file__), "label.transformer.bin"))
x_transform = joblib.load(join(dirname(__file__), "tfidf.transformer.bin"))
estimator = joblib.load(join(dirname(__file__), "model.bin"))


def classify(X):

After Change


import sys
sys.path.insert(0, dirname(__file__))

bank_classification = {}

def classify(X):
    global bank_classification
    if "x_transform" not in bank_classification:
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 6

Instances


Project Name: undertheseanlp/underthesea
Commit Name: f95c0ab527b5bf8a1c92d05e77d165f668435d22
Time: 2018-07-23
Author: anhv.ict91@gmail.com
File Name: underthesea/classification/bank/__init__.py
Class Name:
Method Name:


Project Name: undertheseanlp/underthesea
Commit Name: 995682e2cb0699a39bdb0f7d2f8f5cc77f9cc6fb
Time: 2018-07-24
Author: anhv.ict91@gmail.com
File Name: underthesea/sentiment/bank/__init__.py
Class Name:
Method Name:


Project Name: dirty-cat/dirty_cat
Commit Name: f70e71d5c7fdc8e25391e54e74c3402fb323ad5c
Time: 2018-06-06
Author: pierreglaser@msn.com
File Name: examples/plot_employee_salaries.py
Class Name:
Method Name: