1. 学习
  2. /
  3. 课程
  4. /
  5. Dimensionality Reduction in Python

Connected

练习

Fitting t-SNE to the ANSUR data

t-SNE is a great technique for visual exploration of high dimensional datasets. In this exercise, you'll apply it to the ANSUR dataset. You'll remove non-numeric columns from the pre-loaded dataset df and fit TSNE to this numeric dataset.

说明

100 XP
  • Drop the non-numeric columns from the dataset.
  • Create a TSNE model with learning rate 50.
  • Fit and transform the model on the numeric dataset.