marcelbinz commited on
Commit
b61c08f
·
verified ·
1 Parent(s): 7b6e1d0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -0
README.md CHANGED
@@ -5,6 +5,28 @@ tags:
5
  - unsloth
6
  ---
7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  ### Licensing Information
9
 
10
  [Llama 3.1 Community License Agreement](https://huggingface.co/meta-llama/Llama-3.1-70B-Instruct/blob/main/LICENSE)
 
5
  - unsloth
6
  ---
7
 
8
+
9
+ ### Model Summary:
10
+
11
+ Llama-3.1-Centaur-70B is a foundation model of human cognition model that can predict and simulate human behavior in any behavioral experiment expressed in natural language.
12
+
13
+
14
+ - **Paper:** [Centaur: a foundation model of human cognition](https://arxiv.org/abs/XXX.XXXX)
15
+ - **Point of Contact:** [Marcel Binz](mailto:[email protected])
16
+
17
+ ### Usage:
18
+
19
+ You can use the model using HuggingFace Transformers library with 2 or more 80GB GPUs (NVIDIA Ampere or newer) with at least 150GB of free disk space to accomodate the download.
20
+
21
+ ```python
22
+ import torch
23
+ from transformers import AutoModelForCausalLM, AutoTokenizer
24
+
25
+ model_name = "marcelbinz/Llama-3.1-Centaur-70B"
26
+ model = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype=torch.bfloat16, device_map="auto")
27
+ tokenizer = AutoTokenizer.from_pretrained(model_name)
28
+ ```
29
+
30
  ### Licensing Information
31
 
32
  [Llama 3.1 Community License Agreement](https://huggingface.co/meta-llama/Llama-3.1-70B-Instruct/blob/main/LICENSE)