openai-cookbook icon indicating copy to clipboard operation
openai-cookbook copied to clipboard

Visualizing_embeddings_in_2D - AttributeError: 'list' object has no attribute 'shape'

Open drnic opened this issue 1 year ago • 2 comments

When I run the examples/Visualizing_embeddings_in_2D.ipynb notebook, I get an error during tsne.fit_transform(matrix):

    791 def _check_params_vs_input(self, X):
--> 792     if self.perplexity >= X.shape[0]:
    793         raise ValueError("perplexity must be less than n_samples")

AttributeError: 'list' object has no attribute 'shape'

Is this a problem with library versions I have installed? A regression from newer versions?

image image

Sorry if this is a noob python/pandas library mismatch question.

drnic avatar Nov 25 '22 06:11 drnic