Skip Navigation

Making a LoRA is fast and easy

I am just learning in this space and I could be wrong about this one, but... The GGML and GPTQ models are nice for getting started with AI in Oobabooga. The range of models available is kinda odd to navigate and understand in context as far as how they compare and all the different quantization types, settings, and features. I still don't understand a lot of it. One of the main aspects I didn't (still don't fully) understand are how some models do not have a quantization stated like GGML/GPTQ, but still work using Transformers. I tried some of these by chance at first, and avoided them because they take longer to initially load.

Yesterday I created my first LoRAs and learned through trial and error, the only models I can use to train a LoRA on are the ones that use Transformers, and can be set to 8bit mode. Even using GGML/GPTQ models with 8 bit quantization, I could not use them to make a LoRA. It could be my software setup, but I think there is either a fundamental aspect of these models I haven't learned yet, or it is a limitation in Oobabooga's implementation. Either way, the key takeaway is to try making a LoRA with a Transformers based model loaded in Oobabooga, and be sure the "load in 8 bit" box is checked.

I didn't know what to expect with this, and haven't come across many examples, so I put off trying this until now. I have an 12th gen i7 with 20 logical cores and a 16GBV 3080Ti in a laptop. I can convert an entire novel into a text file and load this as raw text (tab) for training in Oobabooga using the default settings. If my machine has some assistance with cooling, I can create the LoRA in 40 minutes using the default settings and a 7B model. This has a mild effect. IIRC the default weight of the LoRA network is 32. If this is turned up to 96-128, it will have a more noticeable effect on personality. It still won't substantially improve the Q&A accuracy, but it may improve the quality to some extent.

I first tested with a relatively small Wikipedia article on Leto II (Dune character) formatted for this purpose manually. This didn't change anything substantially. Then I tried with the entire God Emperor of Dune e-book as raw text. This had garbage results, probably due to all the nonsense before the book even starts, and the terrible text formatting extracted from an eBook. The last dataset I tried was the book text only, with everything reflowed using a Linux bash script I wrote to alter newline characters, spacing, and remove page gaps. Then I manually edited with find and replace to remove special characters and any formatting oddballs I could find. This was the first LoRA I made where the 7B model's tendency to hallucinate seemed more evident than issues with my LoRA. For instance, picking a random name of an irrelevant character that occurs 3 times in 2 sentences of the LoRA text and prompting about it results in random unrelated output. The overall character identity is also weak despite a strong character profile and a 1.8MB text file for the LoRA.

This is just the perspective from a beginner's first attempt. Actually tuning this with a bit of experience will produce far better results. I'm just trying to say, if you're new to this and just poking around, try making a LoRA. It is quite easy to do.

7
7 comments
  • FYI, Quantization is scaling those models down to a much lower resolution. Usually from long floating point numbers to 8bit (that is integer numbers from -128 to 127 (??)) or with ggml even lower. 4bit is only 16 different numbers. They're doing a bit of trickery there to get the max out of it.

    You get lots of speedup and can fit many more of those more simple numbers into memory this way.

    Ticking the box 'Load in 8bit' does that conversion on the fly. Downloading an already pre-quantized gptq also ends you up at that point, but you don't need to handle that large original file in the first place. and the conversion process is a bit more sophisticated.

    If a quantization is not mentioned, it's probably the original, not shrunken-down version.

    But mind this is a lossy process. Typically, people who want to continue processing the model itself, (i.e. fine-tune, build loras etc) take the full-resolution 'original' version to do so. and not the low-resolution quantized one. But then you're back at twice or four times more data to fit into your graphics card.

    I'm not sure what Oobaboogas does in the background. If it takes the quantized version for the Lora or the original if you used 'load in 8bits'

    I think I read some paper about Lora on quantized models. I don't know how it works but seems to be possible nowadays. I'm not sure about the quality implications. Usually if you start with something low resolution and use that 'degraded' data to modify things... The result won't be perfect. But that might not be a concern of yours if the result is good enough and you don't need 5-figures hardware to pull it off.

    Idk. If you're trying to go anywhere with it, maybe read up on it. There is a free ML course on Huggingface and there are lots of guides and other info scattered around in places like this. I'm very aware this is a steep learning curve and I also have started without any knowledge about LLMs in June when Llama took off. And i'm not a pro.

    If I might ask: What is your motivation behind training a Lora? I mean except for doing it for the sake of it. Do you want to generate some literature and get somewhere? Have you tried asking it politely to generate a continuation of the XY saga? Maybe it knows the fandom well enough. You could even provide it with one or two paragraphs and see if it picks up on the writing style.

    Have fun and keep posting about your adventures...

    • Hey, thanks for the info. Probably the biggest mystery for me still is what "loading shards" means in the terminal output when a full model with transformers is loaded.

      My goal right now is to learn the differences between LoRAs and embeddings in practice. I want to get further into the computer science curriculum on my own. I tend to get hung up on some point, and get lost in the weeds trying to find answers to my questions.

      I want to explore the potential to create both a professor type of model loaded with a few books, courseware, and transcribed lectures, and a student type of model that only has access to information as I encounter it.

      I probably won't achieve much with these naive objectives, but I will probably learn a thing or two along the way. I get the impression that this method of creating a model could be quite powerful. It seems like highly curated and tested tuning for purposed built models is the future. I think individualized education is probably the most powerful potential of LLMs.

      As a peripheral curiosity, I want to know how a LLM can maybe interact with the Forth programming language. Everything in Forth can be made into a single word or token. The language is threaded with an interpreter. I want to know if combining these two makes something completely new. Like, can Forth give a LLM persistent memory or more.

      Messing with Dune stuff is just a way to explore the basics of how modifying a model works.

      • what “loading shards” means

        A model is usually something like tens of gigabytes in size. To make it easier to store it on older file systems and to distribute the amout of data, the one giant file gets split up into several chunks / several smaller files. Those fragments are called 'shards'. If your frontend says "loading shards", it is reading all those ...part1 ...part2 ...part3 files into memory, and re-combining them. I think they kinda hijacked the term 'shard' from the database people, idk.

        the differences between LoRAs and embeddings

        those things are two entirely different things

        I want to get further into the computer science curriculum on my own. I tend to get hung up on some point.

        I like computer science myself. I think it's a fascinating subject. Be aware it sometimes has a steep learning curve. You'll experience disappointment. And sometimes it's hard work (and determination) to learn the basics first to be able to do things properly. And you unfortunately(?) also picked one of the more complicated topics. Don't get discouraged. You'll definitely learn things along the way! 🙃 In case you get into problems: Try and learn it in a structured way. Get a good book or one of the good(!) free online courses. There are many people who try to do it themselves and end up getting stuck. Instead, you'll want someone who has a good understanding of computer science (and knows how to teach) to tell you in which order to learn things. If you do it randomly, you might be setting yourself up for failure. It's hard work... However: you're allowed to have fun and play around. Just be aware of that fact.

        explore the potential to create both a professor type of model [...] and a student

        Yeah. I've heard about that knowledge distillation and models learning from bigger models. I'm not really an expert, though. But there are a few scientific papers about that idea, out there.

        I think individualized education is probably the most powerful potential of LLMs

        Yeah. I think they can become a powerful tool to assist in teaching. And education is super important. But it's definitely still a long way to go before they can do more than grade your assignments and help you find your mistakes without your teacher. I wouldn't want a current AI teach me facts (they come up with fake facts all the time) or trust in their ability to teach things in a reasonable manner.

        how a LLM can maybe interact with the Forth programming language

        I don't know much about Forth. I know how stack-machines work. I'm not sure if that aligns in any way with how transformer language models work so the two of them would develop something like 'symbiosis'. But maybe I didn't think about it enough.

  • Most Loras use instruction type datasets. I know of only one that used straight text but that was the unreal docs and not just a book.

    From what I understand, if you want it to answer questions on the book, you need to feed paragraphs into chat gpt and generate questions and answers.

    If you want to generate text, you will want to have the input be the previous paragraphs and the output be the current paragraphs. Depending on what you want, you can grab paragraphs and then have ChatGtp write a summary, and put that summary as the prompt in the input instead of the previous paragraphs.

    I like the alpaca format so I would add an instruction above all that explaining what it's suppose to do.

    I would look into how the other fine tunes are structuring their data and mirror that. I would even grab some of theirs and add it to boost the diversity in your data. I find just training on one narrow subject makes it a bit dumb but I don't have all that much experience with it.

    • I am using the mental model idea of what stable diffusion is capable of generating with a LoRA. It all comes down to the frequency of data in the training data. You can't ask extremely specific reference details but if a character says or does the same thing a dozen times, it is likely the thing will emerge when prompted.

      I'm curious how things change by layering LoRAs. I also may try splitting up the text in a linear order without all the separate threads interwoven. It may be possible to pull out all of the conversational aspects of the book too. I just don't know how to add these in an bedded context where the conversation is between the main character the AI will assume and several other characters unrelated to the user. Like I don't know how that can be processed.

      • So if I understand, you want to train it to behave and speak like a specific character. I would format it so the instruction is a simple "Respond the conversation as (character)", most of the convo as the input and the last line the character says as the output. That's for the convos.

        For the rest, I would first make a neat little package with some of characters quotes and speech mannerism, brief description of him etc. I would give the dune info and the character package to ChatGtp and have it give me question and answers where the answers are given in the characters voice. I would use the same technique to rewrite answers from other datasets to add diversity.

        That should give you a dataset that refines the llms dune knowledge while not making it too specific, while also making sure it always keeps the characters mannerism. It also avoids the bogus Chatgtp answers since you are feeding it the info but the API still does most of the work. I would use datasets with quality answers like alpaca-gpt4 or Lima. I would make sure the bigger part of the data is the dune data tho, rewriting all of alpaca is like 150$ anyways, not really worth it.

7 comments