I’m looking to fine-tune using Google Colab. Any idea of how?
2 Likes
Hey! There are several ways to fine-tune in colab. You can either use the command line interface in colab (using the !
ipython directive), or do it through python calls.
The former (recommended) will look something like:
In [1]: !pip install --upgrade openai
In [2]: !openai tools fine_tunes.prepare_data -f <TRAINING_FILE>
In [3]: !openai api fine_tunes.create -h
...
7 Likes