asiansoul commited on
Commit
aa169e7
ยท
verified ยท
1 Parent(s): 0944fe2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +296 -3
README.md CHANGED
@@ -1,3 +1,296 @@
1
- ---
2
- license: llama3.1
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: llama3.1
3
+ language:
4
+ - ko
5
+ - en
6
+ base_model:
7
+ - NousResearch/Meta-Llama-3.1-8B-Instruct
8
+
9
+ distill_model:
10
+ - deepseek-ai/DeepSeek-R1-Distill-Llama-8B
11
+
12
+ korean_model:
13
+ - sh2orc/Llama-3.1-Korean-8B-Instruct
14
+
15
+ pipeline_tag: text-generation
16
+ ---
17
+
18
+ ## Merged below called "SISaAI"
19
+ - [Meta Llama](https://huggingface.co/NousResearch/Meta-Llama-3.1-8B-Instruct)
20
+ - [Korean Llama](https://huggingface.co/sh2orc/Llama-3.1-Korean-8B-Instruct)
21
+ - [Distill Llama](https://huggingface.co/deepseek-ai/DeepSeek-R1-Distill-Llama-8B)
22
+
23
+ There is no such thing as a flawless system. It's about using it appropriately and reasonably without pushing it to its limits.
24
+
25
+ ## Modelfile
26
+ ```
27
+ FROM ./Llama-3.1-SISaAI-Ko-merge-8B-Instruct-GGUF/Llama-3.1-SISaAI-Ko-merge-8B-Instruct.Q5_K_M.gguf
28
+ TEMPLATE """{{ if .Messages }}
29
+ {{- if or .System .Tools }}<|start_header_id|>system<|end_header_id|>
30
+ {{- if .System }}
31
+
32
+ {{ .System }}
33
+ {{- end }}
34
+ {{- if .Tools }}
35
+
36
+ You are a helpful assistant with tool calling capabilities. When you receive a tool call response, use the output to format an answer to the original user question.
37
+ {{- end }}
38
+ {{- end }}<|eot_id|>
39
+ {{- range $i, $_ := .Messages }}
40
+ {{- $last := eq (len (slice $.Messages $i)) 1 }}
41
+ {{- if eq .Role "user" }}<|start_header_id|>user<|end_header_id|>
42
+ {{- if and $.Tools $last }}
43
+
44
+ Given the following functions, please respond with a JSON for a function call with its proper arguments that best answers the given prompt.
45
+
46
+ Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}. Do not use variables.
47
+
48
+ {{ $.Tools }}
49
+ {{- end }}
50
+
51
+ {{ .Content }}<|eot_id|>{{ if $last }}<|start_header_id|>assistant<|end_header_id|>
52
+
53
+ {{ end }}
54
+ {{- else if eq .Role "assistant" }}<|start_header_id|>assistant<|end_header_id|>
55
+ {{- if .ToolCalls }}
56
+
57
+ {{- range .ToolCalls }}{"name": "{{ .Function.Name }}", "parameters": {{ .Function.Arguments }}}{{ end }}
58
+ {{- else }}
59
+
60
+ {{ .Content }}{{ if not $last }}<|eot_id|>{{ end }}
61
+ {{- end }}
62
+ {{- else if eq .Role "tool" }}<|start_header_id|>ipython<|end_header_id|>
63
+
64
+ {{ .Content }}<|eot_id|>{{ if $last }}<|start_header_id|>assistant<|end_header_id|>
65
+
66
+ {{ end }}
67
+ {{- end }}
68
+ {{- end }}
69
+ {{- else }}
70
+ {{- if .System }}<|start_header_id|>system<|end_header_id|>
71
+
72
+ {{ .System }}<|eot_id|>{{ end }}{{ if .Prompt }}<|start_header_id|>user<|end_header_id|>
73
+
74
+ {{ .Prompt }}<|eot_id|>{{ end }}<|start_header_id|>assistant<|end_header_id|>
75
+
76
+ {{ end }}{{ .Response }}{{ if .Response }}<|eot_id|>{{ end }}"""
77
+ PARAMETER stop <|start_header_id|>
78
+ PARAMETER stop <|end_header_id|>
79
+ PARAMETER stop <|eot_id|>
80
+ ```
81
+
82
+ ## Test
83
+ ```
84
+ ollama create sisaai -f ./modelfile_sisaai
85
+ ollama run sisaai:latest
86
+
87
+
88
+ jaylee@lees-MacBook-Pro-2 merge % ollama run sisaai:latest
89
+ >>> ๋Œ€ํ•œ๋ฏผ๊ตญ ์ˆ˜๋„๋Š”
90
+ ์„œ์šธ์ž…๋‹ˆ๋‹ค.
91
+
92
+ >>> ๋Œ€ํ•œ๋ฏผ๊ตญ ๋Œ€ํ†ต๋ น์€
93
+ ํ˜„์žฌ ๋Œ€ํ•œ๋ฏผ๊ตญ์˜ ๋Œ€ํ†ต๋ น์€ ์œค์„์—ด์ž…๋‹ˆ๋‹ค. (2023๋…„ 5์›” 4์ผ ๊ธฐ์ค€)
94
+
95
+ >>> ํ”ผ๋ณด๋‚˜์น˜ ์ˆ˜์—ด ํŒŒ์ด์ฌ ์ฝ”๋“œ
96
+ ํ”ผ๋ณด๋‚˜์น˜ ์ˆ˜์—ด์€ 0๊ณผ 1๋กœ ์‹œ์ž‘ํ•˜๋Š” ์ˆ˜์—ด์ด๋ฉฐ, ์ด์–ด์„œ ๋‹ค์Œ ์ˆ˜๋Š” ์ด์ „ ๋‘ ์ˆ˜์˜ ํ•ฉ์ž…๋‹ˆ๋‹ค. ์˜ˆ๋ฅผ ๋“ค์–ด:
97
+
98
+ 0, 1, 1, 2, 3, 5, 8, 13, ...
99
+
100
+ ํŒŒ์ด์ฌ์—์„œ ํ”ผ๋ณด๋‚˜์น˜ ์ˆ˜์—ด์„ ๊ตฌํ˜„ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
101
+
102
+ ### ๋ฐฉ๋ฒ• 1: ๋ฐ˜๋ณต๋ฌธ
103
+ ```python
104
+ def fibonacci(n):
105
+ if n <= 0:
106
+ return None
107
+ elif n == 1:
108
+ return 0
109
+ elif n == 2:
110
+ return 1
111
+ else:
112
+ a, b = 0, 1
113
+ for _ in range(3, n+1):
114
+ a, b = b, a + b
115
+ return b
116
+
117
+ # ์˜ˆ์ œ: 10๋ฒˆ์งธ ํ”ผ๋ณด๋‚˜์น˜ ์ˆ˜
118
+ print(fibonacci(10)) # 55
119
+ ```
120
+
121
+ ### ๋ฐฉ๋ฒ• 2: ์žฌ๊ท€ํ•จ์ˆ˜
122
+ ```python
123
+ def fibonacci(n):
124
+ if n <= 0:
125
+ return None
126
+ elif n == 1:
127
+ return 0
128
+ else:
129
+ return fibonacci(n-1) + fibonacci(n-2)
130
+
131
+ # ์˜ˆ์ œ: 10๋ฒˆ์งธ ํ”ผ๋ณด๋‚˜์น˜ ์ˆ˜
132
+ print(fibonacci(10)) # 55
133
+ ```
134
+
135
+ ### ๋ฐฉ๋ฒ• 3:-generator
136
+ ```python
137
+ def fibonacci():
138
+ a, b = 0, 1
139
+ while True:
140
+ yield a
141
+ a, b = b, a + b
142
+
143
+ # ์˜ˆ์ œ: ์ฒซ 5๊ฐœ์˜ ํ”ผ๋ณด๋‚˜์น˜ ์ˆ˜
144
+ f = fibonacci()
145
+ for _ in range(5):
146
+ print(next(f)) # 0, 1, 1, 2, 3
147
+ ```
148
+
149
+ ### ๋ฐฉ๋ฒ• 4: ์ดํ„ฐ๋ ˆ์ด์…˜
150
+ ```python
151
+ def fibonacci(n):
152
+ if n <= 0:
153
+ return None
154
+ a, b = 0, 1
155
+ result = []
156
+ for _ in range(n):
157
+ result.append(a)
158
+ a, b = b, a + b
159
+ return result
160
+
161
+ # ์˜ˆ์ œ: 10๊ฐœ์˜ ํ”ผ๋ณด๋‚˜์น˜ ์ˆ˜
162
+ print(fibonacci(10)) # [0, 1, 1, 2, 3, 5, 8, 13, 21, 34]
163
+ ```
164
+
165
+ ### ๋ฐฉ๋ฒ• 5: ๋งค๊ฐœ๋ณ€์ˆ˜ n์˜ ํšจ์œจ์„ฑ
166
+ ```python
167
+ def fibonacci(n):
168
+ if n <= 0:
169
+ return None
170
+ elif n == 1:
171
+ return 0
172
+ elif n == 2:
173
+ return 1
174
+ else:
175
+ a, b = 0, 1
176
+ for i in range(3, n+1):
177
+ a, b = b, a + b
178
+ return b
179
+
180
+ # ์˜ˆ์ œ: 10000๋ฒˆ์งธ ํ”ผ๋ณด๋‚˜์น˜ ์ˆ˜
181
+ print(fibonacci(10000))
182
+ ```
183
+
184
+ ### ๋ฉ”๋ชจ: ์ด์ค‘ ์žฌ๊ท€์— ๋Œ€ํ•œ ์„ฑ๋Šฅ ์ƒ์˜ ๋ฌธ์ œ
185
+ ์žฌ๊ท€์  ๋ฐฉ๋ฒ•์€ ํฐ n์— ๋Œ€ํ•ด ๋น„ํšจ์œจ์ ์ผ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. ๋ฐ˜๋ณต์ ์ธ ๋ฐฉ๋ฒ•์ด ๋” ์ข‹์Šต๋‹ˆ๋‹ค.
186
+
187
+ ํ”ผ๋ณด๋‚˜์น˜ ์ˆ˜์—ด์„ ์—ฐ์‚ฐํ•˜๊ณ  ์‹ถ์œผ๋ฉด, [์ด๊ณณ](https://github.com/SeongHyunYoon/fibonacci)์—์„œ Python์˜ ๋‹ค์–‘ํ•œ ๊ตฌํ˜„๋ฒ•์„ ํ™•์ธํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
188
+
189
+ >>> third eye blind ๊ฐ€์ˆ˜ ์†Œ๊ฐœ
190
+ Third Eye Blind๋Š” ๋ฏธ๊ตญ์˜ ๋ก ๋ฐด๋“œ์ž…๋‹ˆ๋‹ค. 1993๋…„์— ๊ฒฐ์„ฑ๋˜์—ˆ์œผ๋ฉฐ, ๊ทธ๋“ค์€ 90๋…„๋Œ€์™€ 2000๋…„๋Œ€์˜ ๋ก ์Œ์•… ์žฅ๋ฅด์—์„œ ์ฃผ๋ชฉ๋ฐ›์€ ๋ฐ” ์žˆ์Šต๋‹ˆ๋‹ค.
191
+
192
+ ### ๋ฉค๋ฒ„
193
+ - ์Šคํ‹ฐ๋ธ ์ œ๋„ค (Steve Jenkins): ๋ณด์ปฌ, ๋ฆฌ๋”
194
+ - ์•„๋ก  ์•™๋“œ๋ฅ˜์Šค (Aaron Andreoli): ๊ธฐํƒ€, ๋ฐฑ๋ณด์ปฌ
195
+ - ์ผ„๋ฐ์‚ฌ์Šค ์œŒ๋ฆฌ์—„์Šจ (Kendall Williamson): ๋ฒ ์ด์Šค
196
+ - ์ฝœ๋ฆฐ ์„ธ์ดํฌ (Colin Sears): ๋“œ๋Ÿผ
197
+
198
+ ### ๋ฐ๋ท”์™€ ์„ฑ๊ณต
199
+ Third Eye Blind๋Š” 1997๋…„์— ๋ฐ๋ท” ์Œ๋ฐ˜ "Third Eye Blind"์„ๅ‘ๅธƒํ–ˆ์Šต๋‹ˆ๋‹ค. ์ด ์Œ๋ฐ˜์€ ๋Œ€ํžˆํŠธ๊ฐ€ ๋˜์—ˆ๊ณ , "Semi-Charmed Life", "How's It Going to Be",
200
+ "Jumper", "Goodbye for Goodness' Sake" ๋“ฑ ๋‹ค์–‘ํ•œ ํžˆํŠธ๊ณก๋“ค์„ ๋ฐœํ‘œํ–ˆ์Šต๋‹ˆ๋‹ค.
201
+
202
+ ### ๋‘ ๋ฒˆ์งธ์™€ ์„ธ ๋ฒˆ์งธ ์Œ๋ฐ˜
203
+ ๋‘ ๋ฒˆ์งธ ์Œ๋ฐ˜ "Out of the Veil"์€ 2000๋…„์— ๋ฐœ๋งค๋˜์—ˆ๊ณ , ์„ธ ๋ฒˆ์งธ ์Œ๋ฐ˜ "The Third Eye Blind Collection"์€ 2002๋…„์—์„œ 2003๋…„์— ๋ฐœ๋งค๋˜์—ˆ์Šต๋‹ˆ๋‹ค. ์ด ๋ฐด๋“œ๋Š” ๋˜ํ•œ
204
+ ์—ฌ๋Ÿฌ ๊ฐœ์˜ EP์™€ ์‹ฑ๊ธ€ ์Œ๋ฐ˜๋“ค์„ ๋ฐœํ‘œํ–ˆ์Šต๋‹ˆ๋‹ค.
205
+
206
+ ### ํ•ด์ฒด
207
+ Third Eye Blind๋Š” 2005๋…„์— ํ™œ๋™์„ ์ค‘๋‹จํ–ˆ์ง€๋งŒ, 2019๋…„์— ๋ณต๊ท€๋ฅผ ์„ ์–ธํ•˜๊ณ  "Warriors"๋ฅผ ๋ฐœํ‘œํ–ˆ์Šต๋‹ˆ๋‹ค. ๊ทธ๋“ค์€ ๊ณ„์†ํ•ด์„œ ์ƒˆ๋กœ์šด ๊ณก๋“ค์„ ๋ฐœํ‘œํ•˜๊ณ  ์ฝ˜์„œํŠธ๋„ ์—ด๊ณ 
208
+ ์žˆ์Šต๋‹ˆ๋‹ค.
209
+
210
+ ### ์Œ์•…้ฃŽๆ ผ
211
+ Third Eye Blind์˜ ์Œ์•…์€ ๋ก, ํŒ, ์ผ๋ ‰ํŠธ๋กœ๋‹‰, ํž™ํ•ฉ ๋“ฑ ๋‹ค์–‘ํ•œ ์žฅ๋ฅด๋ฅผ ํ˜ผํ•ฉํ•œ ๊ฒƒ์ด ํŠน์ง•์ž…๋‹ˆ๋‹ค. ๋ณด์ปฌ ์Šคํ‹ฐ๋ธ ์ œ๋„ค์˜ ๋ชฉ์†Œ๋ฆฌ๋Š” ์œ ๋‹ˆํฌํ•˜๋ฉฐ, ๊ทธ๋“ค์€ ์„ธ๋ จ๋œ ๋ฆฌ๋“ฌ๊ณผ
212
+ ๋ฉœ๋กœ๋””๋ฅผ ๊ฐ€์ง€๊ณ  ์žˆ์Šต๋‹ˆ๋‹ค.
213
+
214
+ ### ์ธ๋ฌผไป‹็ป
215
+ - ์Šคํ‹ฐ๋ธ ์ œ๋„ค (Steve Jenkins): Third Eye Blind์˜ ๋ฆฌ๋”์ด์ž ๋ณด์ปฌ์ด๋ฉฐ, ๋…ธ๋ž˜์— ๋งŽ์€ ์˜๊ฐ์„ ์ฃผ๋Š” ์‚ฌ๋žŒ์ž…๋‹ˆ๋‹ค. ๊ทธ๋Š” ๋˜ํ•œ ์Œ์•… ํ”„๋กœ๋“€์„œ์™€ ์ž‘๊ณก๊ฐ€์ด๊ธฐ๋„ ํ•ฉ๋‹ˆ๋‹ค.
216
+ - ์•„๋ก  ์•™๋“œ๋ฅ˜์Šค (Aaron Andreoli): ๊ธฐํƒ€๋ฆฌ์ŠคํŠธ์ด์ž ๋ฐฑ๋ณด์ปฌ๋กœ, ๋ฐด๋“œ์—์„œ ์ค‘์š”ํ•œ ์—ญํ• ์„ ํ•ฉ๋‹ˆ๋‹ค. ๊ทธ๋Š” ๋˜ํ•œ ์—ฌ๋Ÿฌ ์Œ๋ฐ˜์— ์ฐธ์—ฌํ•œ ์ ์ด ์žˆ์Šต๋‹ˆ๋‹ค.
217
+
218
+ Third Eye Blind๋Š” ๊ทธ๋“ค์˜ ๋…ํŠนํ•˜๊ณ  ๋งค๋ ฅ์ ์ธ ์Œ์•…์œผ๋กœ ๋งŽ์€ ํŒฌ๋“ค์„ ์ด๋Œ๊ณ  ์žˆ์Šต๋‹ˆ๋‹ค. ๊ทธ๋“ค์€ 90๋…„๋Œ€์™€ 2000๋…„๋Œ€์˜ ๋ก ์Œ์•…์‚ฌ์— ์ค‘์š”ํ•œ ์—ญํ• ์„ ํ–ˆ์Šต๋‹ˆ๋‹ค.
219
+
220
+ >>> ์˜์–ด๋กœ
221
+ Third Eye Blind is an American rock band formed in 1993. They gained popularity in the 1990s and 2000s, particularly with their hit songs like
222
+ "Semi-Charmed Life" and "Jumper".
223
+
224
+ ### Members
225
+ - Steve Jenkins: Lead vocals, rhythm guitar
226
+ - Aaron Andreoli: Lead guitar, backing vocals
227
+ - Kendall Williamson: Bass guitar
228
+ - Colin Sears: Drums
229
+
230
+ ### Debut and Success
231
+ Third Eye Blind released their debut album in 1997, which became a huge hit. They also released several successful singles such as "How's It Going to
232
+ Be", "Jumper", and "Goodbye for Goodness' Sake".
233
+
234
+ ### Subsequent Albums
235
+ Their second album, "Out of the Veil", was released in 2000. The third album, "The Third Eye Blind Collection", came out in 2002-2003.
236
+
237
+ ### Hiatus and Reunion
238
+ Third Eye Blind went on hiatus in 2005 but announced their reunion in 2019. They have since released new music and continued to tour.
239
+
240
+ ### Musical Style
241
+ Third Eye Blind's music combines elements of rock, pop, electronic, and hip-hop. The band is known for their catchy melodies and Steve Jenkins'
242
+ distinctive vocals.
243
+
244
+ ### Notable Individuals
245
+ - Steve Jenkins: Lead singer, songwriter, and producer who brings a unique energy to the band.
246
+ - Aaron Andreoli: Guitarist and backing vocalist who contributes to the band's sound.
247
+
248
+ Third Eye Blind remains a beloved rock band with a dedicated fan base. Their music has had a significant impact on the 90s and early 2000s rock scene.
249
+
250
+ >>> ๋‰ด์š• ์—ฌํ–‰ ์ผ์ •์„ ์งœ์ค˜
251
+ ๋‰ด์š• ์—ฌํ–‰์— ๋Œ€ํ•ด ์•Œ๋ ค๋“œ๋ฆฝ๋‹ˆ๋‹ค.
252
+
253
+ ### ์ฒซ์งธ๋‚ 
254
+ - ์•„์นจ: ์—์ดํ”ŒํŽ€๋“œ ํƒ€์›Œ์—์„œ ์‹œ์ž‘ํ•ฉ๋‹ˆ๋‹ค. ์œ ๋ฆฌ ์ฒœ์žฅ๊ณผ ์ฃผ๋ณ€์˜ ์•„๋ฆ„๋‹ค์šด ๊ฒฝ๊ด€์„ๆฌฃ่ตํ•˜๊ณ , ๋ฉ”ํŠธ๋กœํด๋ฆฌํƒ„ ๋ฏธ์ˆ ๊ด€์„ ๋ฐฉ๋ฌธํ•ด ์„ธ๊ณ„ ์œ ๋ช…ํ•œ ์˜ˆ์ˆ ์ž‘ํ’ˆ๋“ค์„ ๋งŒ๋‚˜๋ณด์„ธ์š”.
255
+ - ์ ์‹ฌ: ์„ธ์ธํŠธ ํŒจํŠธ๋ฆญ์Šค ์นดํŽ˜์—์„œ ์•„์ด์Šคํฌ๋ฆผ๊ณผ ์ƒŒ๋“œ์œ„์น˜๋ฅผ ์ฆ๊ธฐ๊ณ , ํ•˜๊ณ„ ํŒŒํ‹ฐ๊ฐ€ ์žˆ๋Š” Central Park๋ฅผ ๋ฐฉ๋ฌธํ•˜์„ธ์š”. ์ฒœ์—ฐ ํ˜ธ์ˆ˜์™€ ๋‚˜๋ฌด๋“ค์ด ์•„๋ฆ„๋‹ต์Šต๋‹ˆ๋‹ค.
256
+ - ์ €๋…: ๋ธŒ๋กœ๋“œ์›จ์ด ๋ฎค์ง€์ปฌ์„ ๋ณด๋Ÿฌ ๊ฐ€๊ฑฐ๋‚˜ Times Square๋กœ ์ด๋™ํ•ด ๋‰ด์š•์˜ ๋ฐค๋ชจ์Šต์„ ์ฆใŽ์„ธ์š”.
257
+
258
+ ### ๋‘˜์งธ๋‚ 
259
+ - ์•„์นจ: Statue of Liberty Cruises๋ฅผ ํƒ€๊ณ  ์ž์œ ์˜ ์—ฌ์‹ ์„ ๋ฐฉ๋ฌธํ•˜๊ณ , 9/11 ๋ฉ”๋ชจ๋ฆฌ์–ผ ๋ฐ•์Šค๋ฅผ ๋ฐฉ๋ฌธํ•˜์„ธ์š”.
260
+ - ์ ์‹ฌ: Wall Street์—์„œ ์Šค๋งˆ์ผ๋ง ์ธ์ฝ”์–ด๋กœ ์œ ๋ช…ํ•œ ํ”ผ์ž์ง‘์— ๊ฐ€์„œ ๋‰ด์š• ํŠน์œ ์˜ ํŒจ์ŠคํŠธํ‘ธ๋“œ๋ฅผ ๋ง›๋ณด์„ธ์š”.
261
+ - ์ €๋…: SoHo๋กœ ์ด๋™ํ•ด ์‡ผํ•‘์„ ํ•˜๊ฑฐ๋‚˜, Tribeca๋กœ ๊ฐ€๋ฉด ์ดํƒˆ๋ฆฌ์•„์™€ ์ŠคํŽ˜์ธ์˜ ์Œ์‹์„ ์ฆ๊ธธ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
262
+
263
+ ### ์…‹์งธ๋‚ 
264
+ - ์•„์นจ: ๋ธŒ๋กฑํฌ์Šค์— ์žˆ๋Š” ๋‰ด์š•์ฃผ๋ฆฝ๋Œ€ํ•™๊ต๋กœ ๊ฐ€์„œ ์•„ํŠธ๋นŒ๋”ฉ์„ ๋ฐฉ๋ฌธํ•˜์„ธ์š”. ์ „ ์„ธ๊ณ„์ ์œผ๋กœ ์œ ๋ช…ํ•œ ํ˜„๋Œ€ ๋ฏธ์ˆ ๊ด€์ž…๋‹ˆ๋‹ค.
265
+ - ์ ์‹ฌ: ํ•˜์ด๋ธŒ๋ฆฌ๋“œ ๊ณต๋ฃก (Hybrid T-Rex)๊ณผ ์‚ฌํŒŒ๋ฆฌ ๋ฒ„์Šค (Safari Bus)๋ฅผ ํƒ€๊ณ  Central Park๋ฅผ ๊ฑฐ๋‹์–ด ๋ณด์„ธ์š”. ์•ผ์ƒ ๋™๋ฌผ๋“ค์ฒ˜๋Ÿผ ๋Š๊ปด์ง‘๋‹ˆ๋‹ค.
266
+ - ์ €๋…: ํ•œ์ •์‹์„ ์ฆ๊ธฐ๊ฑฐ๋‚˜, ํ”Œ๋žซIRON Steakhouse์—์„œ ์Šคํ…Œ์ดํฌ๏ฟฝ๏ฟฝ ์™€์ธ์œผ๋กœ ๋๋‚ด์„ธ์š”.
267
+
268
+ ### ๋„ท์งธ๋‚ 
269
+ - ์•„์นจ: ํ•˜๊ณ„์˜ ๋‰ด์š• ์‹œํ‹ฐ๋ฅผ ๊ฑธ์œผ๋ฉฐ ๋ธŒ๋ฃจํด๋ฆฐ ๋ธŒ๋ฆฌ์ง€ (Brooklyn Bridge)๊ณผ Manhattan Skyline์„ ๋ณด์„ธ์š”.
270
+ - ์ ์‹ฌ: Coney Island Beach์— ๊ฐ€์„œ ํ•ด๋ณ€๊ณผ ๋†€์ด๊ธฐ๊ตฌ, ์‹๋‹น๋“ค์„ ์ฆ๊ธฐ๊ณ , ํŒŒ๋ผ๋‹ค์ด์Šค ํŒจํฌ (Paradise Park)์™€ ์„ธ์ธํŠธ ๋ฃจ์นด์Šค ๊ณต์› (St. Luke's Place)์„ ๋ฐฉ๋ฌธํ•˜์„ธ์š”
271
+ .
272
+ - ์ €๋…: ํ•˜๊ณ„์˜ ์˜ํ™”์ œ๋ฅผ ๋ณด๊ฑฐ๋‚˜, ๋‰ด์š• ์‹œํ‹ฐ์˜ ์•ผ๊ฒฝ์„ๆฌฃ่ตํ•˜๊ณ , ํ•ด๋ณ‘๋Œ€ ๊ธฐ๋…๊ด€ (The Intrepid Sea, Air & Space Museum)์—์„œ ๋๋‚ด์„ธ์š”.
273
+
274
+ ### ๋‹ค์„ฏ์งธ๋‚ 
275
+ - ์•„์นจ: ๋ธŒ๋ฃจํด๋ฆฐ์— ์žˆ๋Š” Brooklyn Museum์„ ๋ฐฉ๋ฌธํ•˜์„ธ์š”. ์ „ ์„ธ๊ณ„์ ์œผ๋กœ ์œ ๋ช…ํ•œ ๋ฏธ์ˆ ๊ด€์ž…๋‹ˆ๋‹ค.
276
+ - ์ ์‹ฌ: Williamsburg์—์„œ ๋จน๋Š” ๋‰ด์š• ํŠน์œ ์˜ ์Šค๋ฏธ์Šค ํ•˜์šฐ์Šค (Smith House)์™€ Smorgasborg๋ฅผ ๋ฐฉ๋ฌธํ•˜์„ธ์š”.
277
+ - ์ €๋…: ๋ฉ”์ด์‹œ์Šค ์Šคํƒ€๋””์›€ (Macy's Stadium)๊ณผ Flatbush Ave.๋กœ ๊ฐ€๋ฉด ์•ผ์™ธ ์˜ํ™”์ œ๋ฅผ ๋ณด๊ฑฐ๋‚˜, Manhattan Bridge์—์„œ ๋๋‚ด์„ธ์š”.
278
+
279
+ ### ์—ฌ์„ฏ์งธ๋‚ 
280
+ - ์•„์นจ: ์œ ๋‹ˆ์˜จ ์Šคํ€˜์–ด ๊ณต์› (Union Square Park)์—์„œ ์‹œ์ž‘ํ•ฉ๋‹ˆ๋‹ค.
281
+ - ์ ์‹ฌ: ์œ ๋‹ˆ์˜จ ์Šคํ€˜์–ด์—์„œ ์ ์‹ฌ์„ ์ฆ๊ธฐ๊ณ , 5 avenue์™€ 23 street์— ๊ฐ€๋ฉด ์•„์‹œ์•ˆ ์‹๋‹น๋“ค์„ ๋งŒ๋‚˜๋ณด์„ธ์š”.
282
+ - ์ €๋…: ๋‰ด์š• ์‹œํ‹ฐ์˜ ๋ฐค๋ชจ์Šต์„ๆฌฃ่ตํ•˜๊ณ , Broadway๋ฅผ ํ†ตํ•ด ๋งˆ์ง€๋ง‰ ๋ฎค์ง€์ปฌ์„ ๋ณด์„ธ์š”.
283
+
284
+ ์ด ์—ฌํ–‰ ์ผ์ •์€ ๋‰ด์š•์˜ ์œ ๋ช…ํ•œ ์žฅ์†Œ๋“ค์„ ๋ฐฉ๋ฌธํ•˜๋Š” ๊ฒƒ์ด๋ฉฐ, ๊ฐ ์ง€์—ญ๋งˆ๋‹คไธๅŒ็š„ ๊ฒฝํ—˜๊ณผ ๋ฌธํ™”๋ฅผ ์ฆ๊ธธ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. ์—ฌ์œ ๋กญ๊ฒŒ ์—ฌํ–‰ํ•ด ์ฃผ์„ธ์š”!
285
+
286
+ ```
287
+
288
+ ```
289
+ @article{Llama-3.1-SISaAI-Ko-merge-8B-Instruct,
290
+ title={asiansoul/Llama-3.1-SISaAI-Ko-merge-8B-Instruct-GGUF},
291
+ author={Asiansoul called "Twp Eye Blind"},
292
+ merged={Asiansoul called "Twp Eye Blind"},
293
+ year={2025},
294
+ url = {https://huggingface.co/asiansoul/Llama-3.1-SISaAI-Ko-merge-8B-Instruct}
295
+ }
296
+ ```