text
stringlengths
1.71k
2.02k
toptentips-text_0.wav|I'm going to walk you through 10 quick tips for fine tuning. For each of those, I'll point you to one or two trellis videos on YouTube and also point you to the right branch if you're working out of the trellis advanced fine tuning repository. Tip number one is to start with a small model. I recommend starting with something like Lama 3 8B or Phi 3 Mini. And the reason is because fine tuning is about experimentation and you want to be able to try many things quickly. If you start off with Lama 3 8 or 70B, it's going to take you much more time in order to test out what's working and what's not. You can always start small and scale up later. The video I recommend here is memorization. This one, I use a relatively small model as I do in many of my fine tuning tutorials, just because it's quicker to learn fast. Tip number two is to use LoRa or QLoRa. I don't recommend starting off with full fine-tuning for a few reasons. First of all, LoRa and QLoRa allow you to start with fewer GPUs or a smaller GPU. That's going to make iteration faster. But for small datasets, the performance might even be better than full fine-tuning because full fine-tuning can tend to overfit. So I'd recommend even if you eventually want to do full fine-tuning, start off with LoRa or QLoRa and try to get it working before you want to spend more on GPU rental and more of your time. The video here if you want to pick out the right LoRa parameters is a live stream on how to pick LoRa parameters. And if you're working out of the Trellis repo, you can check out the Unsloth branch for the fastest fine-tuning on a single GPU using LoRa or QLoRa. Tip number three is to create 10 manual test questions.|1
toptentips-text_1.wav|So you want to create 10 question answer pairs and use those to choose which base model is going to perform best. So just by running those on different base models, you can see which one is going to give you the best baseline for starting off your fine tuning. Then after you do any training run, you want to run that manual test. and just evaluate whether the model is doing well. This gives you probably a better sense than solely looking at the eval and training loss during the fine-tuning process. This is what I do in this memorization video as well, which you can check out on YouTube, and you'll see in the memorization scripts how I allow you to set up this manual dataset. That's also possible in the unsloth branch and the multi-GPU branch, which I'll get to later. Tip number four is to create data sets manually. Yes, I know this is a bit of work, but I think it's underrated. When you manually curate a data set like I did for the trellis function calling data set, it lets you appreciate exactly which rows of data are needed to get the performance that you need. You can, of course, use Python and chat GPT to help automate some of this and generate rows. But I think the manual touch does allow you a better understanding, which will allow you to get performance faster. Here, you can check out the function calling v3 branch, and also the unslot and multi-GPU branches of the advanced fine-tuning repo. Tip number five is to start off training with a small number of rows. In fact, I always run training first with just one row of data to check that my training pipeline is working correctly and I don't run out of memory. Then I'll move to training on 100 rows, then 1,000. And I'm checking all the time whether my performance is actually improving or whether just my dataset design is completely off.|1
toptentips-text_2.wav|If you do want to automate a little more how you generate synthetic data sets, you can check out this video here on data set preparation with LLMs. Tip number six is always use a validation data set. If you don't have one, you can just split off 10 to 20% of your training data set. You want to be checking your training loss as you progress along the process. Make sure it's not too bumpy and your learning rate is not too high or your batch size or virtual batch size is too small. You also want to check your validation loss, and this should be monotonically decreasing in a smooth way. If it's ever upticking, that means you might be overfitting and you're training for too many epochs, or you may not have enough data. Here, I recommend the Trellis repo branches of Unsloth or MultiGPU. They each allow you to split off validation, split from your base training set. This is something you can also do easily using Hugging Face datasets if you check out their documentation. Tip number seven is to try to start training on just one GPU. Again, this allows you to iterate faster. If you really need to increase VRAM, say from what is on a T4 with Colab, then consider paying maybe 70 cents an hour for a 48 GB GPU like an A6000 or an A100 for 80 GB of VRAM. I think you're better off to just fit it on one GPU, because when you move to multi GPU, you have data that's moving between them, the training becomes more complicated, it's easier to make mistakes, and it can be slower in some ways. Also, on one GPU, you can use unsloth, which gives you a 2x speed up. So that's quite beneficial if you can just focus on keeping things simple, until you've at least got a training approach that's working well, and you're happy to then spend the time and money to scale up.|1
toptentips-text_3.wav|Something I should mention as well is that you can waste a lot of time with installations and getting stuck in getting set up for fine tuning. One way around that is to use an image or a template that sets up your CUDA and PyTorch to a specific version. I've got a one-click template here for RunPod, and you can use that to consistently have the same environment on which to install the final packages you need for fine tuning. Tip number eight is to use weights and biases. This is a tool that allows you to track the losses and the rewards as you move through your training run. You can include this in a script with pip install wandb, then set the environment variable for wandb project to a project name. And this will create a folder basically within which you can have multiple runs of run name. And the way you set the run name is in the training arguments by passing in the run name. Here you would set the run name like one epoch and constant scheduler or whatever you want to call it. And you also need to set up report to wand b weights and biases. This is supported in the Onslaught and the multi-GPU branches and also in many of the Jupyter notebooks that are throughout all the branches of the advanced fine-tuning repo. Before I move to tips 8 and 9, I want to comment on scaling up. So I've talked about starting with a low number of rows, starting with LoRa or QLoRa, and starting with a small model. Well, here's the order you want to scale up in. Start by increasing the rows of data on a small model, then move QLoRa to LoRa. If you really want to try full fine tuning, test it out on a small model and see if it really improves performance. Then, as a very last step, you can think about moving to a larger model where it's going to take more time and money to get in that final result.|1
toptentips-text_4.wav|There are two videos of relevance here. If you want to understand the pros and cons of full fine-tuning versus QLORA or LoRa, take a look at this video. And if you want to understand the complexities of doing multi-GPU training, check out multi-GPU fine-tuning. Moving to two last tips, tip number nine is to use unsupervised fine tuning. This can be useful if you have a large data set. I'm going to say larger than 10,000 rows of data. Here, you'll need to use Python scripts in order to clean up, say, repeated characters or too much new lines. You can also use language models in order to clean up the data set chunk by chunk. The video of relevance here is the Wikipedia video I made, where I first extract data from Wikipedia, clean it, and then use it for fine tuning. Last of all, my tip number 10 is to do preference fine-tuning. This is where you have a data set with chosen, which are better or preferred responses, and rejected, which are the responses to the same prompts but are of lower quality. You might have a set of data like this if you have production data from customers or from a chatbot. You may have some conversational data that you consider of good quality. You may even have corrected or annotated versions of those conversations where you've improved the assistance responses. That's going to be ideal as your chosen dataset. And you can always generate a rejected or lower quality dataset just by putting the same prompts into a language model and seeing what generic response it comes back with. So this approach here, called ORPO, or Odds Ratio Preference Optimization, it allows you to do both SFT, supervised fine-tuning, and preference fine-tuning at once. The preference fine-tuning will move your model to give responses more like your chosen answers and less like your rejected answers, which is useful if you want to do some fine-tuning for tone or style, or if you want to make some corrections where the model's giving a response you don't quite like.|1
toptentips-text_5.wav|Here I recommend the Orpo YouTube video, and there's also a branch by that name in Advanced Fine Tuning. Orpo is also supported in the Unslot branch, where there's a Python Jupyter notebook and also just a Python.py script you can run. And Orpo is supported as an option in the Multi-GPU branch too. So to recap these 10 tips, start with a small model, use LoRa or QLoRa, not full fine-tuning. Always create 10 manual test questions or maybe a few more. Remember that manual data sets are probably underrated. You can always get a little bit of help from Python or from chat GPT. Start training on a small number of rows, even just one row to test the pipeline, but then 100, and make sure it's having a good effect before you decide to scale up. Make sure you know that the data type and the data set that you've set up is actually the right one. Number six, always use a validation set. Just split one off from a training set if you don't have one. Number seven, try to just start training on one GPU. Number eight, use weights and biases for tracking. And when you're scaling from small to large, increase first the rows, then move to using more VRAM with LoRa instead of QLoRa or full fine tuning instead of LoRa. By the way, there's a factor of four roughly in VRAM difference between each of those. So LoRa is about four times QLoRa and full fine tuning is about four times. LoRa, or even more in some cases. And last of all, increase to a larger model size only at the very end of your training process when you think you have a pipeline that's working well. Then for advanced tips, consider doing unsupervised fine-tuning if you have a large amount of data, only if you have a large amount of data, I'd say.|1
toptentips-text_6.wav|And last of all, you can consider preference fine-tuning, in which case I'd recommend using ORPL, which will do supervised fine-tuning and odds ratio preference optimization. at the same time. Now, this approach here I've talked about for language models, but it also works for video and speech or images, multimodal models. So you can check out this video here on multimodal text plus image, where I prepare a data set and bring it through fine tuning. And likewise, for this speech to text model, where I prepare a data set and bring it through fine tuning. There are specific repos for multimodal. That's the vision repository here. And there's a repo for transcription. And this LLMs repo is the advanced fine-tuning repo I've been talking to date in or up until now in this presentation. I've laid out here all of the playlists that are relevant depending on what you need. So there are four different sections, four playlists and four repositories that go with them. There's the LLM fine tuning playlist, which is all about fine tuning language models. Then there's a repo for that advanced fine tuning. There's the vision playlist, which is for multimodal models and repo link. There's a video on transcription and a repo link. And then there are many videos on server setup. That's if you want to deploy your own custom model, either on a server that will sleep or start up when you need it to run, that's called serverless, or a server that's always on if you're using something like TGI or VLLM through a service like RunPod or Vast AI. And so here is the link for this. I'll note as well that within this repo, there's some scripts that allow you to redact information, personally identifiable information like names, emails, or credit card numbers before you send the data to a third-party LLM.|1
toptentips-text_7.wav|And there are also scripts on function calling inference and speed test too. I'll talk a little more about those just at the end of this video. Last of all, these repos, of which there are four, they're available for purchase individually, but you can also now buy a repo bundle, which will give you lifetime access to all four of these repositories, which includes any future updates made to those repos. You can purchase that all together now as a bundle. This very last section of the video is for those who have purchased lifetime access to one of the Trellis repositories, but I'll just put it part of this public video because it will give a sense of what's in these repositories for those of you who might be interested to purchase lifetime membership later. The first repo is the advanced fine-tuning repo, and this is split into branches according to function. They are all listed here roughly in the order that they have been released. Now, a few of the branches that I'll highlight are, first of all, the Wikipedia branch, which is for unsupervised fine-tuning and data cleaning. If you do want to do ORPO, you have the ORPO branch here. And if you want to prepare data, you can do so with the help of a language model. This is done in the memorization branch, where you can set up some data generation based on PDF content. And likewise, if you go to the supervised fine tuning branch, there is also a script or multiple scripts for generating Q&A data from a base data set right there. Then there are two important branches here, unsloth and multi-GPU. The unsloth branch allows you to run fine tuning in either a notebook or as a Python script. Whereas the multi-GPU branch allows you to run Python scripts that will deploy multi-GPU training that's fully shared data parallel or distributed data parallel.|1
toptentips-text_8.wav|Now I'll briefly show you each of those two main branches. So here we'll go into the unsloth branch. The way that you run training in this Unslot branch is by setting up the configuration in a config file. I've also got a config file that you can use here if you want to do some function calling fine tuning. And once you have your configuration set up, you can run the test.py in order to run a set of test questions that you've manually generated, or you can run questions from validation or test split of a data set. Then when you want to train your model, you simply run train.py, or you can run it step by step in a Python Jupyter notebook. Now, the notebook is recommended if you want to go through the training the first time, you can see step by step what's happening and easily print out things at intermediate points. But when you've got your script honed, it can be a lot faster to run a Python script. And that's why I have made this script available, which you just run from the command line and it will go through everything within the training. Just to give you a sense of how you configure the training and test setup, you'll set a model slug. You will then set some parameters, like whether you want to fine tune in 4-bit, what data type you want to use, depending on your GPU. You can then choose a data set, say for function calling, or if you want to memorize some data, like on the rules of TouchRugby. Here, you can set up your testing. You can decide to test either from a set of messages that you have prepared manually, or you can use the training, or you can use the validation split of a test set that's on Hugging Face by setting use data set to test equal to true right here. Next, you set up your training and validation splits.|1
toptentips-text_9.wav|Here I've selected a main branch for training, and I've selected the training split. You can fix a max number of rows here. This will save you time if you just want to download and run on, say, 100 rows instead of on a massive dataset. Now, I spoke earlier about generating a validation set. You can either download from a split that's on Hugging Face called test or validation, but you can also generate a validation split from the train split. If you just set this to true, it will sequester 20% of the training data to use as validation. Next up is the LoRa configuration. You have all the regular LoRa parameters you'll see here. Check out the live stream video on choosing LoRa parameters if you want to know more. You can set LoRa or LoRa alpha and also rank stabilize LoRa, set that to true or false. Here you've got some Weights and Biases project configurations. You set the project name, and then for each run, you can use a different name here for running in Weights and Biases. You can set up your HuggingFace username. This will be used when pushing models to Hub. Now there's a more advanced technique here where you can decide to train on completions only. This means that you will only be considering the loss on the answer portion, not on the prompt or question portion. And this can be useful if your answers are quite short and you don't want the loss on all of the prompts to kind of crowd out or cloud out the information or the signal that's coming from training on the response or the answer. So you set the completions to true here. Sometimes I use this for function calling, fine tuning. And then you need to let the model know where your answer is starting. So in Elamit 3 model, the answer will start after assistant and header ID. In Elamit 2 model, it will start after inst.|1
toptentips-text_10.wav|And then I think this is maybe a chat ML format. the answer will start after I am start assistant. So this allows the training loop to check within your prompt. It will check for where this start of the assistance answer is, and then it will only look at the loss after that point. After this, there are some standard parameters like setting the training batch size, the validation batch size, the gradient accumulation, whether you want to run a validation set or not. the number of epochs, the learning rate, an output directory for your training model and results, whether you want to train with BrainFloat 16 or not. You can set your scheduler. You can decide whether to save the model at a certain number of steps of training. set your max sequence length, gradient checkpointing, and whether to use re-entrancy, which allows you to speed up the training. Next, you can decide whether you want to use ORPO or not. By default, I've got that set to false. If you're using ORPO, you need a column that's called chosen and one called rejected. and you can set your max prompt length and then the beta. The beta basically weighs how much of the preference fine-tuning, what's the importance of that loss relative to the standard SFT loss. Remember, ORPL does two things in one. It does SFT and it does preference fine-tuning in one. So if you have this at 0.2, it's kind of the importance of the odds ratio is about 0.2 relative to the SFT loss. Last of all, you can push to hub, so you can set a target model name if you want to push to hub. So very quickly, if we take a look at the test script, this will simply load the model. So it will load all of your configurations. It will load the model here, a fast language model using unsloth. It will set up the tokenizer, set up the chat template, load the dataset, either from your manual data that's in the repo or from Hugging Face, and then it will run inference through all of those samples and print the results out to file.|1

No dataset card yet

New: Create and edit this dataset card directly on the website!

Contribute a Dataset Card
Downloads last month
0
Add dataset card