Views
No views yet
| Hyperparameter | Value |
|---|---|
| nparameters | 9B |
| nlayers | 32 |
| dmodel | 5120 |
| nheads | 40 |
| dhead | 128 |
| nvocab | 65500 |
| Sequence Length | 2048 |
| Task | Version | Metric | Value | Stderr | |
|---|---|---|---|---|---|
| anli_r1 | 0 | acc | 0.3260 | ± | 0.0148 |
| anli_r2 | 0 | acc | 0.3380 | ± | 0.0150 |
| anli_r3 | 0 | acc | 0.3583 | ± | 0.0138 |
| hellaswag | 0 | acc | 0.4666 | ± | 0.0050 |
| acc_norm | 0.6157 | ± | 0.0049 | ||
| lambada_openai | 0 | ppl | 10.0153 | ± | 0.3145 |
| acc | 0.5403 | ± | 0.0069 | ||
| mathqa | 0 | acc | 0.2332 | ± | 0.0077 |
| acc_norm | 0.2348 | ± | 0.0078 | ||
| piqa | 0 | acc | 0.7503 | ± | 0.0101 |
| acc_norm | 0.7503 | ± | 0.0101 | ||
| winogrande | 0 | acc | 0.5872 | ± | 0.0138 |
| wsc | 0 | acc | 0.5673 | ± | 0.0488 |
pip install geov1from geov import GeoVForCausalLM, GeoVTokenizer
2
3model = GeoVForCausalLM.from_pretrained("GeoV/GeoV-9b-r2")
4tokenizer = GeoVTokenizer.from_pretrained("GeoV/GeoV-9b-r2")
5
6prompt = "In mathematics, topology is the study of"
7
8input_ids = tokenizer(prompt, return_tensors="pt").input_ids
9
10gen_tokens = model.generate(
11 input_ids,
12 do_sample=True,
13 temperature=0.9,
14 max_length=100,
15)
16gen_text = tokenizer.batch_decode(gen_tokens)[0]