add pickle module back to plots.py
Browse files
plots.py
CHANGED
|
@@ -8,6 +8,7 @@ from word2vec import *
|
|
| 8 |
from sklearn.preprocessing import StandardScaler
|
| 9 |
import plotly.express as px
|
| 10 |
from sklearn.manifold import TSNE
|
|
|
|
| 11 |
|
| 12 |
|
| 13 |
def make_3d_plot_tSNE(vectors_list, target_word, time_slice_model):
|
|
|
|
| 8 |
from sklearn.preprocessing import StandardScaler
|
| 9 |
import plotly.express as px
|
| 10 |
from sklearn.manifold import TSNE
|
| 11 |
+
import pickle
|
| 12 |
|
| 13 |
|
| 14 |
def make_3d_plot_tSNE(vectors_list, target_word, time_slice_model):
|