pvduy commited on
Commit
201cb64
1 Parent(s): bc7e10c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -2
README.md CHANGED
@@ -37,8 +37,8 @@ model = AutoModelForCausalLM.from_pretrained(
37
  torch_dtype="auto",
38
  )
39
  model.cuda()
40
- prompt = f"<|user|>\nIn the field of quantum physics, what is superposition, and how does it relate to the phenomenon of quantum entanglement?<|endoftext|>\n<|assistant|>\n"
41
- inputs = tokenizer("The weather is always wonderful", return_tensors="pt").to("cuda")
42
  tokens = model.generate(
43
  **inputs,
44
  max_new_tokens=1024,
@@ -73,6 +73,9 @@ The dataset is comprised of a mixture of open datasets large-scale datasets avai
73
 
74
  ## Performance
75
 
 
 
 
76
  At the time of release, Zephyr-7B-β is the highest ranked 7B chat model on the [MT-Bench](https://huggingface.co/spaces/lmsys/mt-bench) and [AlpacaEval](https://tatsu-lab.github.io/alpaca_eval/) benchmarks:
77
 
78
  | Model | Size | Alignment | MT-Bench (score) | AlpacaEval (win rate %) |
 
37
  torch_dtype="auto",
38
  )
39
  model.cuda()
40
+ prompt = "<|user|>\nIn the field of quantum physics, what is superposition, and how does it relate to the phenomenon of quantum entanglement?<|endoftext|>\n<|assistant|>\n"
41
+ inputs = tokenizer(prompt, return_tensors="pt").to("cuda")
42
  tokens = model.generate(
43
  **inputs,
44
  max_new_tokens=1024,
 
73
 
74
  ## Performance
75
 
76
+
77
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/63466107f7bd6326925fc770/4mr7jP_RpWEBvtwwFMUqh.png)
78
+
79
  At the time of release, Zephyr-7B-β is the highest ranked 7B chat model on the [MT-Bench](https://huggingface.co/spaces/lmsys/mt-bench) and [AlpacaEval](https://tatsu-lab.github.io/alpaca_eval/) benchmarks:
80
 
81
  | Model | Size | Alignment | MT-Bench (score) | AlpacaEval (win rate %) |