--- language: - en license: mit library_name: transformers tags: - nlp - phi - phi-2 - instruct base_model: - microsoft/phi-2 datasets: - Open-Orca/SlimOrca - prince-canuma/TinyOrca model-index: - name: Damysus-2.7B-Chat results: - task: type: text-generation metrics: - name: Average type: Average value: 60.49 verified: true source: name: Open LLM Leaderboard url: https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard - task: type: text-generation dataset: name: ARC (25-shot) type: ai2_arc metrics: - name: Accuracy Norm type: acc_norm value: 59.81 verified: true source: name: Open LLM Leaderboard url: https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard - task: type: text-generation dataset: name: Hellaswag (10-shot) type: Hellaswag metrics: - name: Accuracy Norm type: acc value: 74.52 verified: true source: name: Open LLM Leaderboard url: https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard - task: type: text-generation dataset: name: MMLU (5-shot) type: MMLU metrics: - name: Accuracy type: acc value: 56.33 verified: true source: name: Open LLM Leaderboard url: https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard - task: type: text-generation dataset: name: Truthful QA type: Truthful_QA metrics: - name: Multi-true type: mc2 value: 46.74 verified: true source: name: Open LLM Leaderboard url: https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard - task: type: text-generation dataset: name: Winogrande (5-shot) type: Winogrande metrics: - name: Accuracy type: acc value: 75.06 verified: true source: name: Open LLM Leaderboard url: https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard - task: type: text-generation dataset: name: GSM8K (5-shot) type: GSM8K metrics: - name: Accuracy type: acc value: 50.64 verified: true source: name: Open LLM Leaderboard url: https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard --- # Model Summary Damysus - the fastest giant This model is a GGUF version of [Damysus-2.7B-Chat](https://huggingface.co/prince-canuma/Damysus-2.7B-Chat). ## Model Description This is the model card of a 🤗 transformers model that has been pushed on the Hub. This model card has been automatically generated. - **Developed by:** [Prince Canuma](https://huggingface.co/prince-canuma) - **Model type:** Transformer - **License:** MIT - **Finetuned from model:** microsoft/phi-2 ## Uses You can use this model to build local/cloud RAG applications. It can serve as the: - Answer synthesizer, - Summarizer, - Or query rewriter model. ### Limitations This model inherits some of the base model's limitations, such as: - Generate Inaccurate Code and Facts: The model may produce incorrect code snippets and statements. Users should treat these outputs as suggestions or starting points, not as definitive or accurate solutions. - Limited Scope for code: Majority of Phi-2 training data is based in Python and use common packages such as "typing, math, random, collections, datetime, itertools". If the model generates Python scripts that utilize other packages or scripts in other languages, we strongly recommend users manually verify all API uses. - Language Limitations: The model is primarily designed to understand standard English. Informal English, slang, or any other languages might pose challenges to its comprehension, leading to potential misinterpretations or errors in response. ### On the command line, including multiple files at once I recommend using the `huggingface-hub` Python library: ```shell pip3 install huggingface-hub ``` Then you can download any individual model file to the current directory, at high speed, with a command like this: ```shell huggingface-cli download prince-canuma/Damysus-2.7B-Chat-GGUF Damysus-2.7B-Chat.Q4_K_M.gguf --local-dir . --local-dir-use-symlinks False ```
More advanced huggingface-cli download usage (click to read) You can also download multiple files at once with a pattern: ```shell huggingface-cli download prince-canuma/Damysus-2.7B-Chat-GGUF --local-dir . --local-dir-use-symlinks False --include='*Q4_K*gguf' ``` For more documentation on downloading with `huggingface-cli`, please see: [HF -> Hub Python Library -> Download files -> Download from the CLI](https://huggingface.co/docs/huggingface_hub/guides/download#download-from-the-cli). To accelerate downloads on fast connections (1Gbit/s or higher), install `hf_transfer`: ```shell pip3 install hf_transfer ``` And set environment variable `HF_HUB_ENABLE_HF_TRANSFER` to `1`: ```shell HF_HUB_ENABLE_HF_TRANSFER=1 huggingface-cli download prince-canuma/Damysus-2.7B-Chat-GGUF Damysus-2.7B-Chat.Q4_K_M.gguf --local-dir . --local-dir-use-symlinks False ``` Windows Command Line users: You can set the environment variable by running `set HF_HUB_ENABLE_HF_TRANSFER=1` before the download command.
## Example `llama.cpp` command Make sure you are using `llama.cpp` from commit [d0cee0d](https://github.com/ggerganov/llama.cpp/commit/d0cee0d36d5be95a0d9088b674dbb27354107221) or later. ```shell !./main -m ../Damysus-2.7B-Chat-GGUF/Damysus-2.7B-Chat.Q4_K_M.gguf \ --color -c 2048 --temp 0 \ --prompt "<|im_start|>system\nYou are a helpful assistant. Please keep your answers short.<|im_end|>\n<|im_start|>user\nCount to ten<|im_end|>\n" \ -n 256 --in-suffix "<|im_start|>assistant\n" -r "User:" -e --verbose-prompt ``` or ```shell !./main -m ../Damysus-2.7B-Chat-GGUF/Damysus-2.7B-Chat.Q4_K_M.gguf \ --color -c 2048 --temp 0 \ -p "You are a helpful assistant. Please keep your answers short." -n 256 --in-suffix "<|im_start|>assistant\n" \ -r "User:" -e --verbose-prompt -cml ``` - `-ngl N` offload N number of layers to GPU. Remove it if you don't have GPU acceleration. - `-c 2048` set desired sequence length. For extended sequence models - eg 8K, 16K, 32K - the necessary RoPE scaling parameters are read from the GGUF file and set by llama.cpp automatically. Note that longer sequence lengths require much more resources, so you may need to reduce this value. - Add `-i -ins` or `-cml` argument for interactive chat-style conversation. For other parameters and how to use them, please refer to [the llama.cpp documentation](https://github.com/ggerganov/llama.cpp/blob/master/examples/main/README.md) or run: ```shell !./main --help ``` ## Training Details ### Training Data I used [SlimOrca](https://huggingface.co/datasets/Open-Orca/SlimOrca) dataset, a new curated subset of our OpenOrca data. In the course of this study, the [SlimOrca](https://huggingface.co/datasets/Open-Orca/SlimOrca) dataset was used, representing a meticulously curated subset derived from the broader OpenOrca dataset. This release provides an efficient means of reaching performance on-par with using larger slices of the [OpenOrca](https://huggingface.co/datasets/Open-Orca/OpenOrca), while only including ~500k GPT-4 completions. Subsequently, two distinct subsets were crafted, comprising 102,000 and 1,000 samples, denoted as: - [prince-canuma/SmallOrca](https://huggingface.co/datasets/prince-canuma/SmallOrca) - [prince-canuma/TinyOrca](https://huggingface.co/datasets/prince-canuma/TinyOrca) Although experimentation was conducted with both datasets, optimal results were achieved through fine-tuning on a modest set of 200 samples. Notably, the investigation revealed that augmenting the training data beyond this threshold predominantly enhanced the model's proficiency in generating Chain-of-Thought responses. However, it is imperative to note that the preference for Chain-of-Thought responses may not be universally applicable. Particularly in scenarios like the RAG setup, succinct answers to prompts are often favored, especially for straightforward queries. ### Training Procedure #### Preprocessing 1. Convert dataset to chatML format 2. Remove all samples with more than 2048 tokens (Phi-2 context size) 3. Mask instructions (System and User) at training time. #### LoRA Config - **lora_alpha:** 128, - **lora_dropout:** 0.05, - **r:** 256, - **bias:** "none", - **target_modules:** "all-linear", - **task_type:** "CAUSAL_LM", #### Training Hyperparameters - **Training regime:** bf16 mixed precision, - **max_steps:** 100, - **per_device_train_batch_size:** 2, - **gradient_accumulation_steps:** 2, - **optim:** "adamw_torch_fused", - **learning_rate:** 2e-4, - **max_grad_norm:** 0.3, - **warmup_ratio:** 0.03, - **lr_scheduler_type:** "constant", #### Trainer - **max_seq_length:** 1744, - **data_collator:** DataCollatorForCompletionOnlyLM ## Evaluation Damysus-2.7B-chat truthfulQA benchmark results We evaluate models on 7 key benchmarks using the Eleuther AI Language Model Evaluation Harness , a unified framework to test generative language models on a large number of different evaluation tasks. - AI2 Reasoning Challenge (25-shot) - a set of grade-school science questions. - HellaSwag (10-shot) - a test of commonsense inference, which is easy for humans (~95%) but challenging for SOTA models. - MMLU (5-shot) - a test to measure a text model's multitask accuracy. The test covers 57 tasks including elementary mathematics, US history, computer science, law, and more. - TruthfulQA (0-shot) - a test to measure a model's propensity to reproduce falsehoods commonly found online. Note: TruthfulQA is technically a 6-shot task in the Harness because each example is prepended with 6 Q/A pairs, even in the 0-shot setting. - Winogrande (5-shot) - an adversarial and difficult Winograd benchmark at scale, for commonsense reasoning. - GSM8k (5-shot) - diverse grade school math word problems to measure a model's ability to solve multi-step mathematical reasoning problems. For all these evaluations, a higher score is a better score. We chose these benchmarks as they test a variety of reasoning and general knowledge across a wide variety of fields in 0-shot and few-shot settings. Read more [here](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard). ### Results | Model | AVG | ARC | Hellaswag | MMLU | Truthful QA | Winogrande | GSM8K | |-------|--------:|------:|----------:|-----:|----------:|----------:|----------:| | [NousResearch/Nous-Puffin-70B](NousResearch/Nous-Puffin-70B) | 64.91 | 67.41 | 87.37 | 69.77 | 46.77 | 83.9 | 34.27 | | [TheBloke/Llama-2-70B-fp16](https://huggingface.co/TheBloke/Llama-2-70B-fp16) | 64.52 | 67.32 | 87.33 | 69.83 | 44.92 | 83.74 | 33.97 | | [NousResearch/Yarn-Mistral-7B-64k](https://huggingface.co/NousResearch/Yarn-Mistral-7b-64k) | 59.63 | 59.9 | 82.51 | 62.96 | 41.86 | 77.27 | 33.28 | | [Qwen1.5-4B-Chat](https://huggingface.co/Qwen/Qwen1.5-4B-Chat) | 46.79 | 43.26 | 69.73 | 55.55 | 44.79 | 64.96 | 2.43 | | [Microsoft/phi-2](https://huggingface.co/microsoft/phi-2) | 61.33 | 61.09 | 75.11 | 58.11 | 44.47 | 74.35 | 54.81 | | [Damysus-2.7B-Chat](https://huggingface.co/prince-canuma/Damysus-2.7B-Chat) (Ours) | 60.49 | 59.81 | 74.52 | 56.33 | **46.74** | **75.06** | 50.64 | ## Technical Specifications ### Compute Infrastructure - Modal Labs #### Hardware - OS: Linux - GPU: A10G #### Libraries - TRL - Transformers - PEFT - Datasets - Accelerate - torch - Wandb - Bitsandbytes - Plotly ## Future work I plan to explore the following tuning setups: - Function calling - DPO ## Citation **BibTeX:** ```bibtex @misc{Damysus-2.7B-Chat, title={Damysus-2.7B-Chat} , author={Prince Canuma}, year={2024}, } ``` ```bibtex @misc{SlimOrca, title = {SlimOrca: An Open Dataset of GPT-4 Augmented FLAN Reasoning Traces, with Verification}, author = {Wing Lian and Guan Wang and Bleys Goodson and Eugene Pentland and Austin Cook and Chanvichet Vong and "Teknium"}, year = {2023}, publisher = {HuggingFace}, url = {https://https://huggingface.co/Open-Orca/SlimOrca} } ``` ```bibtex @misc{open-llm-leaderboard, author = {Edward Beeching and Clémentine Fourrier and Nathan Habib and Sheon Han and Nathan Lambert and Nazneen Rajani and Omar Sanseviero and Lewis Tunstall and Thomas Wolf}, title = {Open LLM Leaderboard}, year = {2023}, publisher = {Hugging Face}, howpublished = "\url{https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard}" } ```