Update README.md
Browse files
README.md
CHANGED
@@ -68,4 +68,9 @@ with torch.inference_mode():
|
|
68 |
outputs = outputs.detach().cpu().numpy()
|
69 |
outputs = tokenizer.batch_decode(outputs, skip_special_tokens=True)
|
70 |
output = outputs[0][len(prompt):]
|
71 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
68 |
outputs = outputs.detach().cpu().numpy()
|
69 |
outputs = tokenizer.batch_decode(outputs, skip_special_tokens=True)
|
70 |
output = outputs[0][len(prompt):]
|
71 |
+
```
|
72 |
+
|
73 |
+
References:
|
74 |
+
* https://medium.com/@jeremyarancio/fine-tune-an-llm-on-your-personal-data-create-a-the-lord-of-the-rings-storyteller-6826dd614fa9
|
75 |
+
* https://blog.neuralwork.ai/an-llm-fine-tuning-cookbook-with-mistral-7b/
|
76 |
+
* https://blog.gopenai.com/fine-tuning-mistral-7b-instruct-model-in-colab-a-beginners-guide-0f7bebccf11c
|