1. 学习
  2. /
  3. 课程
  4. /
  5. Introduction to Deep Learning with PyTorch

Connected

练习

From regression to multi-class classification

The models you have seen for binary classification, multi-class classification and regression have all been similar, barring a few tweaks to the model.

Start building a model for regression, and then tweak the model to perform a multi-class classification.

说明 1 / 共 2 个

undefined XP
  • 1
    • Create a 4-layer linear network that takes 11 input features from input_tensor and produces a single regression output.
  • 2
    • Update the network provided to perform a multi-class classification with four outputs.