--- base_model: google/gemma-2-2b-jpn-it language: - multilingual datasets: - mlabonne/orpo-dpo-mix-40k library_name: transformers license: gemma license_link: https://ai.google.dev/gemma/terms pipeline_tag: text-generation tags: - nlp - code quantized_by: ymcki widget: - messages: - role: user content: Can you provide ways to eat combinations of bananas and dragonfruits? --- Original model: https://huggingface.co/google/gemma-2-2b-jpn-it ## Prompt format ``` user {prompt} model model ``` Note that this model does not support a System prompt. Since [gemma-2-2b-jpn-it-ablitered-18](https://huggingface.co/ymcki/gemma-2-2b-jpn-it-abliterated-18) is slightly brain damaged compare to the original [gemma-2-2b-jpn-it](https://huggingface.co/google/gemma-2-2b-jpn-it). I decided to try ORPO fine tuning to see if it can be headled. Using the [gemma-2-2b base model](https://huggingface.co/google/gemma-2-2b), I employed the ORPO method described by [mlabonne](https://towardsdatascience.com/fine-tune-llama-3-with-orpo-56cfab2f9ada) but the input model was read into VRAM by [unsloth](https://github.com/unslothai/unsloth) to allow using the full 40k dataset to run on a single 3090. Five epoches was run. Smallest eval_loss was achieve at epoch 7.72. Checkpoint at epoch 7.72 is used to obtain a model adapter and applied it to [gemma-2-2b-jpn-it-ablitered-18](https://huggingface.co/ymcki/gemma-2-2b-jpn-it-abliterated-18) to obtain this model. | Epoch | loss | eval_loss | eval_logps/rejected | eval_logps/chosen | | ----- | ---- | --------- | ------------------- | ----------------- | | 1.00 | 1.2868 | 1.0689 | -1.0857 | -0.7500 | | 2.00 | 0.9663 | 1.0288 | -1.1321 | -0.7289 | | 3.00 | 1.2255 | 1.0297 | -1.1840 | -0.7272 | | 4.00 | 1.5293 | 1.0166 | -1.2004 | -0.7200 | | 4.96 | 1.2893 | 1.0077 | -1.1754 | -0.7106 | | 5.00 | 1.3458 | 1.0078 | -1.1730 | -0.7105 | | 6.00 | 1.3807 | 0.9924 | -1.1757 | -0.6971 | | 7.00 | 1.0855 | 0.9889 | -1.2634 | -0.7235 | | 7.72 | 0.8720 | 0.9855 | -1.2374 | -0.7100 | | 8.00 | 0.7301 | 0.9864 | -1.2406 | -0.7113 | | 9.00 | 1.1939 | 0.9934 | -1.2703 | -0.6852 | | 10.00 | 0.7421 | 1.0269 | -1.2552 | -0.7395 | This model is uploaded here to be evaluated by the Open LLM Leaderboard. Further ORPO fine tuning is currently underway to see if it can regain its sanity. You can play with this model first or wait until I am done with the fine tuning. ## Benchmark (100.0*raw scores only) Click on the model name go to the raw score json generated by Open LLM Leaderboard. | Model | Average | IFEval | BHH | Math Lv5 | GPQA | MUSR | MMLU-PRO | | ----- | ------- | ------ | ----|--------- | ---- | ---- | -------- | | [gemma-2-2b-jpn-it](https://huggingface.co/datasets/open-llm-leaderboard/results/blob/main/google/gemma-2-2b-jpn-it/results_2024-10-15T15-21-39.173019.json) | 30.82 | 54.11 | 41.43 | 0.0 | 27.52 | 37.17 | 24.67 | | [gemma-2-2b-ORPO-jpn-it-abliterated-18 (5 epoches)](https://huggingface.co/datasets/open-llm-leaderboard/results/raw/main/ymcki/gemma-2-2b-ORPO-jpn-it-abliterated-18/results_2024-10-30T22-19-29.202883.json) | 29.57 | 48.05 | 41.26 | 0.0 | 27.18 | 36.51 | 24.43 | gemma-2-2b-ORPO-jpn-it-abliterated-18 (10 epoches) | TBD | TBD | TBD | TBD | TBD | TBD | TBD | | [gemma-2-2b-jpn-it-abliterated-17](https://huggingface.co/datasets/open-llm-leaderboard/results/raw/main/ymcki/gemma-2-2b-jpn-it-abliterated-17/results_2024-10-18T15-18-46.821674.json) | 30.29 | 52.65 | 40.46 | 0.0 | 27.18 | 36.90 | 24.55 | | [gemma-2-2b-jpn-it-abliterated-18](https://huggingface.co/datasets/open-llm-leaderboard/results/raw/main/ymcki/gemma-2-2b-jpn-it-abliterated-18/results_2024-10-18T15-41-42.399571.json) | 30.61 | 53.02 | 40.96 | 0.0 | 27.35 | 37.30 | 25.05 | | [gemma-2-2b-jpn-it-abliterated-24](https://huggingface.co/datasets/open-llm-leaderboard/results/raw/main/ymcki/gemma-2-2b-jpn-it-abliterated-24/results_2024-10-25T16-29-46.542899.json) | 30.61 | 51.37 | 40.77 | 0.0 | 27.77 | 39.02 | 24.73 | ## How to run this model ```py from transformers import AutoTokenizer, AutoModelForCausalLM import transformers import torch model_id = "gemma-2-2b-ORPO-jpn-it-abliterated-18" dtype = torch.bfloat16 tokenizer = AutoTokenizer.from_pretrained(model_id) model = AutoModelForCausalLM.from_pretrained( model_id, device_map="cuda", torch_dtype=dtype,) chat = [ { "role": "user", "content": "Write a hello world program" }, ] prompt = tokenizer.apply_chat_template(chat, tokenize=False, add_generation_prompt=True) ``` ## Downloading using huggingface-cli First, make sure you have hugginface-cli installed: ``` pip install -U "huggingface_hub[cli]" ``` Then, you can target the specific file you want: ``` huggingface-cli download ymcki/gemma-2-2b-ORPO-jpn-it-abliterated-18 --include "*" --local-dir ./ ``` ## Credits Thank you mlabonne for describing the ORPO fine tuning method. Thank you FullOf_Bad_Ideas from LocalLlama for the suggestion of using unsloth to save VRAM.