1. 学ぶ
  2. /
  3. コース
  4. /
  5. Introduction to LLMs in Python

Connected

演習

Using the fine-tuned model

The model has been fine-tuned. Now you ready to use on some new data and generate some classifications. Let's see how well your fine-tuned model does at tagging new interactions as either low or high risk for churn.

Your fine-tuned model and the tokenizer have been loaded for you.

指示

100 XP
  • Tokenize the new data.
  • Pass the tokenized inputs into the fine-tuned model, disabling gradients.
  • Extract the new predictions.