Using iris finetune
These docs are outdated! Please check out https://docs.titanml.co for the latest information on the TitanML platform. If there's anything that's not covered there, please contact us on our discord.
Short cut! If you'd rather use the GUI than the command line you can find the command builder on the web app at app.titanml.co
Remember to ensure you have the latest version of iris installed before running any command! You can check this by running pip install update titan-iris.
You can now fine-tune a model on a particular dataset on the TitanML platform by using iris finetune
. iris finetune
sends a request to the backend based on your specified model and dataset, along with some information about your desired task. For example:
This will fine-tune an ELECTRA Large model on the SQuAD v2 question-answering dataset using the default values for batch size, learning rate and number of training epochs (16, 2e-5 and 1, respectively). To specify your own values for these hyperparameters, you can include any or all of them as arguments:
Or in short form:
The same applies to sequence and token classification tasks:
Last updated