rdz-falcon commited on
Commit
aefcd24
·
verified ·
1 Parent(s): 10088c8

Update config.py

Browse files
Files changed (1) hide show
  1. config.py +10 -0
config.py CHANGED
@@ -54,6 +54,16 @@ INFERENCE_REPETITION_PENALTY = 1.2
54
  INFERENCE_TEMPERATURE = 0.7
55
  INFERENCE_TOP_K = 50
56
 
 
 
 
 
 
 
 
 
 
 
57
  # Special Tokens (matches test_overfit.py)
58
  M_START = "<M_START>"
59
  M_END = "<M_END>"
 
54
  INFERENCE_TEMPERATURE = 0.7
55
  INFERENCE_TOP_K = 50
56
 
57
+ # Generation/System Prompt
58
+ SYSTEM_MSG = "You are a motion generation assistant. Generate motion tokens for the given text description."
59
+ GEN_MAX_NEW_TOKENS = 100
60
+ GEN_TEMPERATURE = 0.7
61
+ GEN_TOP_P = 0.9
62
+ GEN_TOP_K = 50
63
+ GEN_NO_REPEAT_NGRAM_SIZE = 3
64
+ GEN_REPETITION_PENALTY = 1.2
65
+ GEN_END_LOGIT_SLOPE = 0.1
66
+
67
  # Special Tokens (matches test_overfit.py)
68
  M_START = "<M_START>"
69
  M_END = "<M_END>"