Results 26 comments of zfhxi

## Problem: demo: ```python from sklearn.datasets import load_digits from MulticoreTSNE import MulticoreTSNE as TSNE from matplotlib import pyplot as plt digits = load_digits() embeddings = TSNE(n_jobs=4).fit_transform(digits.data) vis_x = embeddings[:, 0]...

> > Hello, my test code is as follow: > > ``` > > X1 = torch.randn([10, 2048]).cuda() > > X_emb = TorchTSNE(n_components=2, perplexity=100., n_iter=1000).fit_transform(X1) > > ``` > >...

I also want to know the answer.

hello, I also met this problem, have you solve it?

> @zfhxi would you like Bibnotes to store the related note in a folder that mirrors the structure found in Zotero? Actually, I would like Bibnotes generated folders that mirrors...

公式(10-28)推到中,西瓜书中已知了C_jk是XtX矩阵的第j行k列,南瓜书中怎么得出XtX的逆矩阵的j行k列是C_jk的倒数的?

> Hello! Thank you for sending this information! Could you send a link to your workspace so we can look at it? Only `wandb` employees will be able to view...

After hours of work, I've found this solution: ```python import os import argparse import subprocess import sys from git import Repo def restart_program(): p = subprocess.Popen([sys.executable] + sys.argv) p.wait() print("Fininshed...