lgaalves commited on
Commit
c34c4a2
1 Parent(s): 322e77f

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +73 -0
README.md ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: llama2
3
+ datasets:
4
+ - garage-bAInd/Open-Platypus
5
+ pipeline_tag: text-generation
6
+ language:
7
+ - en
8
+ ---
9
+
10
+
11
+ # mistral-7b-v0.1-platypus1k
12
+
13
+
14
+ **mistral-7b-v0.1-platypus1k** is an instruction fine-tuned model based on the Mistral-7B transformer architecture.
15
+
16
+
17
+ ### Benchmark Metrics
18
+
19
+
20
+ | Metric | mistral-7b-v0.1-platypus1k | garage-bAInd/Platypus2-7B| meta-llama/Llama-2-7b-hf (base) |
21
+ |-----------------------|-------|-------|-------|
22
+ | Avg. | - |**56.13** | 54.32 |
23
+ | ARC (25-shot) | - |**55.2**| 53.07 |
24
+ | HellaSwag (10-shot) | - |**78.84**| 78.59 |
25
+ | MMLU (5-shot) | - |**49.83**| 46.87 |
26
+ | TruthfulQA (0-shot) | - |40.64| 38.76 |
27
+
28
+
29
+ We use state-of-the-art [Language Model Evaluation Harness](https://github.com/EleutherAI/lm-evaluation-harness) to run the benchmark tests above, using the same version as the HuggingFace LLM Leaderboard. Please see below for detailed instructions on reproducing benchmark results.
30
+
31
+ ### Model Details
32
+
33
+ * **Trained by**: Luiz G A Alves
34
+ * **Model type:** **mistral-7b-v0.1-platypus1k** is an auto-regressive language model based on the Mistral-7B transformer architecture.
35
+ * **Language(s)**: English
36
+
37
+ ### How to use:
38
+
39
+ ```python
40
+ # Use a pipeline as a high-level helper
41
+ >>> from transformers import pipeline
42
+ >>> pipe = pipeline("text-generation", model="lgaalves/mistral-7b-v0.1-platypus1k")
43
+ >>> question = "What is a large language model?"
44
+ >>> answer = pipe(question)
45
+ >>> print(answer[0]['generated_text'])
46
+
47
+ ```
48
+
49
+ or, you can load the model direclty using:
50
+
51
+ ```python
52
+ # Load model directly
53
+ from transformers import AutoTokenizer, AutoModelForCausalLM
54
+
55
+ tokenizer = AutoTokenizer.from_pretrained("lgaalves/mistral-7b-v0.1-platypus1k")
56
+ model = AutoModelForCausalLM.from_pretrained("lgaalves/mistral-7b-v0.1-platypus1k")
57
+ ```
58
+
59
+ ### Training Dataset
60
+
61
+ `lgaalves/mistral-7b-v0.1-platypus1k` trained using STEM and logic based dataset [`garage-bAInd/Open-Platypus`](https://huggingface.co/datasets/garage-bAInd/Open-Platypus).
62
+
63
+
64
+ ### Training Procedure
65
+
66
+ `lgaalves/mistral-7b-v0.1-platypus1k` was instruction fine-tuned using LoRA on 1 Tesla V100-SXM2-16GB.
67
+
68
+
69
+ ### Limitations and bias
70
+
71
+ Llama 2 and fine-tuned variants are a new technology that carries risks with use. Testing conducted to date has been in English, and has not covered, nor could it cover all scenarios. For these reasons, as with all LLMs, Llama 2 and any fine-tuned varient's potential outputs cannot be predicted in advance, and the model may in some instances produce inaccurate, biased or other objectionable responses to user prompts. Therefore, before deploying any applications of Llama 2 variants, developers should perform safety testing and tuning tailored to their specific applications of the model.
72
+
73
+ Please see the Responsible Use Guide available at https://ai.meta.com/llama/responsible-use-guide/