dondongwonlee commited on
Commit
c073b1c
1 Parent(s): 0d64554

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -1
README.md CHANGED
@@ -10,10 +10,21 @@ tags:
10
  - Social
11
  ---
12
  # GELI: Adapted LLM (Llama-2-7b-chat-hf) for Social Conversations Via Facial Expressions
 
 
 
 
 
 
 
 
 
13
 
14
 
15
- ### CANDOR Attribution:
16
 
 
 
 
17
  Overview:
18
  This language model was trained on the CANDOR provided by BetterUp, Inc., and is subject to their specific licensing terms. The dataset was obtained and used in accordance with the BetterUp, Inc. Terms of Use, and all users of this model must comply with these terms. For reference, the dataset's licensing details and restrictions are outlined below.
19
 
 
10
  - Social
11
  ---
12
  # GELI: Adapted LLM (Llama-2-7b-chat-hf) for Social Conversations Via Facial Expressions
13
+ This is the official model card for the fine-tuned Llama-2 model that was produced from *Global Reward to Local Rewards: Multimodal-Guided Decomposition for Improving Dialogue Agents* presented at EMNLP 2024 (Oral).
14
+
15
+ To load the model, please follow the following script. We rely on the Llama-2 tokenizer.
16
+ ```
17
+ lm_tokenizer = LlamaTokenizer.from_pretrained("meta-llama/Llama-2-7b-chat-hf")
18
+ model = AutoModelForCausalLMWithValueHead("dondongwonlee/GELI")
19
+ model.eval()
20
+ ```
21
+
22
 
23
 
 
24
 
25
+
26
+
27
+ ### CANDOR Attribution:
28
  Overview:
29
  This language model was trained on the CANDOR provided by BetterUp, Inc., and is subject to their specific licensing terms. The dataset was obtained and used in accordance with the BetterUp, Inc. Terms of Use, and all users of this model must comply with these terms. For reference, the dataset's licensing details and restrictions are outlined below.
30