This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def foo(func, *args, **kwargs): | |
| res = func(*args, **kwargs) | |
| return res["a key"]["in json"]["response"] | |
| class A: | |
| def __init__(self, api): | |
| super().__init__() | |
| self.api = api | |
| def get_x(self): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| processor = SpacyCleaner(chunksize=1000, workers=workers) | |
| docs = processor.transform(raw_docs) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import logging | |
| import matplotlib.pyplot as plt | |
| import numpy as np | |
| from matplotlib import cm | |
| from sklearn.datasets import fetch_20newsgroups | |
| from sklearn.model_selection import train_test_split | |
| from sklearn.preprocessing import LabelEncoder, StandardScaler | |
| from sklearn.model_selection import (RepeatedStratifiedKFold, cross_val_score, ) | |
| from sklearn.pipeline import Pipeline |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| labels = ["rec.autos", "rec.motorcycles", "rec.sport.baseball", "rec.sport.hockey"] | |
| raw_docs, y = fetch_20newsgroups(subset='all', return_X_y=True, categories=labels) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| docs_train, docs_test, y_train, y_test = train_test_split(docs, y, test_size=0.1, shuffle=True) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| processor = SpacyCleaner(chunksize=1000, workers=workers) | |
| docs = processor.transform(raw_docs) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| hdp_model = HDPModel(min_df=min_df, rm_top=rm_top) | |
| hdp_model.optim_interval = 5 | |
| for d in docs_train: | |
| hdp_model.add_doc(d) | |
| hdp_model.burn_in = 100 | |
| hdp_model.train(0, workers=workers) | |
| for i in range(0, 1000, 10): | |
| hdp_model.train(10, workers=workers) | |
| print('Iteration: {}\tLog-likelihood: {}\tNum. of topics: {}'.format(i, hdp_model.ll_per_word, hdp_model.live_k)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| vectorizer = TomotopyLDAVectorizer(num_of_topics=num_of_topics, | |
| workers=workers, min_df=min_df, | |
| rm_top=rm_top) | |
| x_train = vectorizer.fit_transform(docs_train) | |
| x_test = vectorizer.transform(docs_test) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def plot_topic_clusters(ax, x2d, y, labels): | |
| ax.set_aspect("equal") | |
| colors = cm.get_cmap("Spectral", len(labels)) | |
| for i, l in enumerate(labels): | |
| c = colors(i / len(labels)) | |
| ax.scatter(x2d[y == i, 0], x2d[y == i, 1], color=c, label=l, alpha=0.7) | |
| ax.grid() | |
| ax.legend() | |
| ax.set(adjustable='box', aspect='equal') | |
| return ax |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| folds = RepeatedStratifiedKFold(n_splits=10, n_repeats=10) | |
| vectorizer = TomotopyLDAVectorizer(num_of_topics=15, workers=workers, min_df=min_df, | |
| rm_top=rm_top) | |
| clf = SVC() | |
| pca = PCA(n_components=0.95) | |
| pipe = Pipeline([("vectorizer", vectorizer), ("scalar", StandardScaler()), | |
| ("classifier", clf)]) | |
| results = cross_val_score(pipe, docs, y_true, cv=folds, n_jobs=2, verbose=1, |
OlderNewer