FronyAI commited on
Commit
f4c372e
Β·
verified Β·
1 Parent(s): 221ad93

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -4
README.md CHANGED
@@ -137,10 +137,25 @@ Today Date: 26 Jul 2024
137
  "description": "μ•½κ΅­λͺ…",
138
  "type": "text"
139
  },
140
- ... (other columns),
141
  {
142
- "name": "DUTYTIME1C",
143
- "description": "μ›”μš”μΌ μ§„λ£Œ 마감 μ‹œκ°„",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
144
  "type": "number"
145
  },
146
  ... (other columns)
@@ -149,7 +164,7 @@ Today Date: 26 Jul 2024
149
  ]
150
  }
151
  ## 질문
152
- λŒ€ν•œμ•½κ΅­ μ›”μš”μΌ μ›”μš”μΌ μ§„λ£Œ μ‹œμž‘ μ‹œκ°„ μ•Œλ €μ€˜<|eot_id|><|start_header_id|>assistant<|end_header_id|>
153
  """
154
 
155
  # generation
@@ -188,6 +203,7 @@ messages = [{"role": "user", "content": prompt_template.format(context=schema, u
188
  outputs = pipe(
189
  messages,
190
  max_new_tokens=512,
 
191
  )
192
  print(outputs[0]["generated_text"][-1])
193
  ```
 
137
  "description": "μ•½κ΅­λͺ…",
138
  "type": "text"
139
  },
 
140
  {
141
+ "name": "DUTYTIME1C",
142
+ "description": "μ›”μš”μΌ μ§„λ£Œ 마감 μ‹œκ°„",
143
+ "type": "number"
144
+ },
145
+ {
146
+ "name": "DUTYTIME2C",
147
+ "description": "ν™”μš”μΌ μ§„λ£Œ 마감 μ‹œκ°„",
148
+ "type": "number"
149
+ },
150
+ ... (other columns)
151
+ {
152
+ "name": "DUTYTIME1S",
153
+ "description": "μ›”μš”μΌ μ§„λ£Œ μ‹œμž‘ μ‹œκ°„",
154
+ "type": "number"
155
+ },
156
+ {
157
+ "name": "DUTYTIME2S",
158
+ "description": "ν™”μš”μΌ μ§„λ£Œ μ‹œμž‘ μ‹œκ°„",
159
  "type": "number"
160
  },
161
  ... (other columns)
 
164
  ]
165
  }
166
  ## 질문
167
+ λŒ€ν•œμ•½κ΅­ μ›”μš”μΌ μ§„λ£Œ μ‹œμž‘ μ‹œκ°„ μ•Œλ €μ€˜<|eot_id|><|start_header_id|>assistant<|end_header_id|>
168
  """
169
 
170
  # generation
 
203
  outputs = pipe(
204
  messages,
205
  max_new_tokens=512,
206
+ temperature=0.0,
207
  )
208
  print(outputs[0]["generated_text"][-1])
209
  ```