"""
id_col_name = features.columns[0]
tsne_kwargs["n_components"] = dims
print("t-SNE: Reducing features to {} dimensions".format(dims))
After Change
"""
// Use the provided tsne arguments on top of the defaults above
kwargs = DEFAULT_TSNE_KWARGS.copy()
for key, val in tsne_kwargs.items():
kwargs[key] = val
print("[Custom TSNE argument - {}: {}]".format(key, val))
id_col_name = features.columns[0]