metadata
license: llama3.1
language:
- ko
- en
base_model:
- NousResearch/Meta-Llama-3.1-8B-Instruct
distill_model:
- deepseek-ai/DeepSeek-R1-Distill-Llama-8B
korean_model:
- sh2orc/Llama-3.1-Korean-8B-Instruct
pipeline_tag: text-generation
Merged below called "SISaAI"
There is no such thing as a flawless system. It's about using it appropriately and reasonably without pushing it to its limits.
Modelfile
FROM ./Llama-3.1-SISaAI-Ko-merge-8B-Instruct-GGUF/Llama-3.1-SISaAI-Ko-merge-8B-Instruct.Q5_K_M.gguf
TEMPLATE """{{ if .Messages }}
{{- if or .System .Tools }}<|start_header_id|>system<|end_header_id|>
{{- if .System }}
{{ .System }}
{{- end }}
{{- if .Tools }}
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.
{{- end }}
{{- end }}<|eot_id|>
{{- range $i, $_ := .Messages }}
{{- $last := eq (len (slice $.Messages $i)) 1 }}
{{- if eq .Role "user" }}<|start_header_id|>user<|end_header_id|>
{{- if and $.Tools $last }}
Given the following functions, please respond with a JSON for a function call with its proper arguments that best answers the given prompt.
Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}. Do not use variables.
{{ $.Tools }}
{{- end }}
{{ .Content }}<|eot_id|>{{ if $last }}<|start_header_id|>assistant<|end_header_id|>
{{ end }}
{{- else if eq .Role "assistant" }}<|start_header_id|>assistant<|end_header_id|>
{{- if .ToolCalls }}
{{- range .ToolCalls }}{"name": "{{ .Function.Name }}", "parameters": {{ .Function.Arguments }}}{{ end }}
{{- else }}
{{ .Content }}{{ if not $last }}<|eot_id|>{{ end }}
{{- end }}
{{- else if eq .Role "tool" }}<|start_header_id|>ipython<|end_header_id|>
{{ .Content }}<|eot_id|>{{ if $last }}<|start_header_id|>assistant<|end_header_id|>
{{ end }}
{{- end }}
{{- end }}
{{- else }}
{{- if .System }}<|start_header_id|>system<|end_header_id|>
{{ .System }}<|eot_id|>{{ end }}{{ if .Prompt }}<|start_header_id|>user<|end_header_id|>
{{ .Prompt }}<|eot_id|>{{ end }}<|start_header_id|>assistant<|end_header_id|>
{{ end }}{{ .Response }}{{ if .Response }}<|eot_id|>{{ end }}"""
PARAMETER stop <|start_header_id|>
PARAMETER stop <|end_header_id|>
PARAMETER stop <|eot_id|>
Test
ollama create sisaai -f ./modelfile_sisaai
ollama run sisaai:latest
jaylee@lees-MacBook-Pro-2 merge % ollama run sisaai:latest
>>> ๋ํ๋ฏผ๊ตญ ์๋๋
์์ธ์
๋๋ค.
>>> ๋ํ๋ฏผ๊ตญ ๋ํต๋ น์
ํ์ฌ ๋ํ๋ฏผ๊ตญ์ ๋ํต๋ น์ ์ค์์ด์
๋๋ค. (2023๋
5์ 4์ผ ๊ธฐ์ค)
>>> ํผ๋ณด๋์น ์์ด ํ์ด์ฌ ์ฝ๋
ํผ๋ณด๋์น ์์ด์ 0๊ณผ 1๋ก ์์ํ๋ ์์ด์ด๋ฉฐ, ์ด์ด์ ๋ค์ ์๋ ์ด์ ๋ ์์ ํฉ์
๋๋ค. ์๋ฅผ ๋ค์ด:
0, 1, 1, 2, 3, 5, 8, 13, ...
ํ์ด์ฌ์์ ํผ๋ณด๋์น ์์ด์ ๊ตฌํํ ์ ์์ต๋๋ค.
### ๋ฐฉ๋ฒ 1: ๋ฐ๋ณต๋ฌธ
python
def fibonacci(n):
if n <= 0:
return None
elif n == 1:
return 0
elif n == 2:
return 1
else:
a, b = 0, 1
for _ in range(3, n+1):
a, b = b, a + b
return b
# ์์ : 10๋ฒ์งธ ํผ๋ณด๋์น ์
print(fibonacci(10)) # 55
### ๋ฐฉ๋ฒ 2: ์ฌ๊ทํจ์
python
def fibonacci(n):
if n <= 0:
return None
elif n == 1:
return 0
else:
return fibonacci(n-1) + fibonacci(n-2)
# ์์ : 10๋ฒ์งธ ํผ๋ณด๋์น ์
print(fibonacci(10)) # 55
### ๋ฐฉ๋ฒ 3:-generator
python
def fibonacci():
a, b = 0, 1
while True:
yield a
a, b = b, a + b
# ์์ : ์ฒซ 5๊ฐ์ ํผ๋ณด๋์น ์
f = fibonacci()
for _ in range(5):
print(next(f)) # 0, 1, 1, 2, 3
### ๋ฐฉ๋ฒ 4: ์ดํฐ๋ ์ด์
python
def fibonacci(n):
if n <= 0:
return None
a, b = 0, 1
result = []
for _ in range(n):
result.append(a)
a, b = b, a + b
return result
# ์์ : 10๊ฐ์ ํผ๋ณด๋์น ์
print(fibonacci(10)) # [0, 1, 1, 2, 3, 5, 8, 13, 21, 34]
### ๋ฐฉ๋ฒ 5: ๋งค๊ฐ๋ณ์ n์ ํจ์จ์ฑ
python
def fibonacci(n):
if n <= 0:
return None
elif n == 1:
return 0
elif n == 2:
return 1
else:
a, b = 0, 1
for i in range(3, n+1):
a, b = b, a + b
return b
# ์์ : 10000๋ฒ์งธ ํผ๋ณด๋์น ์
print(fibonacci(10000))
### ๋ฉ๋ชจ: ์ด์ค ์ฌ๊ท์ ๋ํ ์ฑ๋ฅ ์์ ๋ฌธ์
์ฌ๊ท์ ๋ฐฉ๋ฒ์ ํฐ n์ ๋ํด ๋นํจ์จ์ ์ผ ์ ์์ต๋๋ค. ๋ฐ๋ณต์ ์ธ ๋ฐฉ๋ฒ์ด ๋ ์ข์ต๋๋ค.
ํผ๋ณด๋์น ์์ด์ ์ฐ์ฐํ๊ณ ์ถ์ผ๋ฉด, [์ด๊ณณ](https://github.com/SeongHyunYoon/fibonacci)์์ Python์ ๋ค์ํ ๊ตฌํ๋ฒ์ ํ์ธํ ์ ์์ต๋๋ค.
>>> third eye blind ๊ฐ์ ์๊ฐ
Third Eye Blind๋ ๋ฏธ๊ตญ์ ๋ก ๋ฐด๋์
๋๋ค. 1993๋
์ ๊ฒฐ์ฑ๋์์ผ๋ฉฐ, ๊ทธ๋ค์ 90๋
๋์ 2000๋
๋์ ๋ก ์์
์ฅ๋ฅด์์ ์ฃผ๋ชฉ๋ฐ์ ๋ฐ ์์ต๋๋ค.
### ๋ฉค๋ฒ
- ์คํฐ๋ธ ์ ๋ค (Steve Jenkins): ๋ณด์ปฌ, ๋ฆฌ๋
- ์๋ก ์๋๋ฅ์ค (Aaron Andreoli): ๊ธฐํ, ๋ฐฑ๋ณด์ปฌ
- ์ผ๋ฐ์ฌ์ค ์๋ฆฌ์์จ (Kendall Williamson): ๋ฒ ์ด์ค
- ์ฝ๋ฆฐ ์ธ์ดํฌ (Colin Sears): ๋๋ผ
### ๋ฐ๋ท์ ์ฑ๊ณต
Third Eye Blind๋ 1997๋
์ ๋ฐ๋ท ์๋ฐ "Third Eye Blind"์ๅๅธํ์ต๋๋ค. ์ด ์๋ฐ์ ๋ํํธ๊ฐ ๋์๊ณ , "Semi-Charmed Life", "How's It Going to Be",
"Jumper", "Goodbye for Goodness' Sake" ๋ฑ ๋ค์ํ ํํธ๊ณก๋ค์ ๋ฐํํ์ต๋๋ค.
### ๋ ๋ฒ์งธ์ ์ธ ๋ฒ์งธ ์๋ฐ
๋ ๋ฒ์งธ ์๋ฐ "Out of the Veil"์ 2000๋
์ ๋ฐ๋งค๋์๊ณ , ์ธ ๋ฒ์งธ ์๋ฐ "The Third Eye Blind Collection"์ 2002๋
์์ 2003๋
์ ๋ฐ๋งค๋์์ต๋๋ค. ์ด ๋ฐด๋๋ ๋ํ
์ฌ๋ฌ ๊ฐ์ EP์ ์ฑ๊ธ ์๋ฐ๋ค์ ๋ฐํํ์ต๋๋ค.
### ํด์ฒด
Third Eye Blind๋ 2005๋
์ ํ๋์ ์ค๋จํ์ง๋ง, 2019๋
์ ๋ณต๊ท๋ฅผ ์ ์ธํ๊ณ "Warriors"๋ฅผ ๋ฐํํ์ต๋๋ค. ๊ทธ๋ค์ ๊ณ์ํด์ ์๋ก์ด ๊ณก๋ค์ ๋ฐํํ๊ณ ์ฝ์ํธ๋ ์ด๊ณ
์์ต๋๋ค.
### ์์
้ฃๆ ผ
Third Eye Blind์ ์์
์ ๋ก, ํ, ์ผ๋ ํธ๋ก๋, ํํฉ ๋ฑ ๋ค์ํ ์ฅ๋ฅด๋ฅผ ํผํฉํ ๊ฒ์ด ํน์ง์
๋๋ค. ๋ณด์ปฌ ์คํฐ๋ธ ์ ๋ค์ ๋ชฉ์๋ฆฌ๋ ์ ๋ํฌํ๋ฉฐ, ๊ทธ๋ค์ ์ธ๋ จ๋ ๋ฆฌ๋ฌ๊ณผ
๋ฉ๋ก๋๋ฅผ ๊ฐ์ง๊ณ ์์ต๋๋ค.
### ์ธ๋ฌผไป็ป
- ์คํฐ๋ธ ์ ๋ค (Steve Jenkins): Third Eye Blind์ ๋ฆฌ๋์ด์ ๋ณด์ปฌ์ด๋ฉฐ, ๋
ธ๋์ ๋ง์ ์๊ฐ์ ์ฃผ๋ ์ฌ๋์
๋๋ค. ๊ทธ๋ ๋ํ ์์
ํ๋ก๋์์ ์๊ณก๊ฐ์ด๊ธฐ๋ ํฉ๋๋ค.
- ์๋ก ์๋๋ฅ์ค (Aaron Andreoli): ๊ธฐํ๋ฆฌ์คํธ์ด์ ๋ฐฑ๋ณด์ปฌ๋ก, ๋ฐด๋์์ ์ค์ํ ์ญํ ์ ํฉ๋๋ค. ๊ทธ๋ ๋ํ ์ฌ๋ฌ ์๋ฐ์ ์ฐธ์ฌํ ์ ์ด ์์ต๋๋ค.
Third Eye Blind๋ ๊ทธ๋ค์ ๋
ํนํ๊ณ ๋งค๋ ฅ์ ์ธ ์์
์ผ๋ก ๋ง์ ํฌ๋ค์ ์ด๋๊ณ ์์ต๋๋ค. ๊ทธ๋ค์ 90๋
๋์ 2000๋
๋์ ๋ก ์์
์ฌ์ ์ค์ํ ์ญํ ์ ํ์ต๋๋ค.
>>> ์์ด๋ก
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
"Semi-Charmed Life" and "Jumper".
### Members
- Steve Jenkins: Lead vocals, rhythm guitar
- Aaron Andreoli: Lead guitar, backing vocals
- Kendall Williamson: Bass guitar
- Colin Sears: Drums
### Debut and Success
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
Be", "Jumper", and "Goodbye for Goodness' Sake".
### Subsequent Albums
Their second album, "Out of the Veil", was released in 2000. The third album, "The Third Eye Blind Collection", came out in 2002-2003.
### Hiatus and Reunion
Third Eye Blind went on hiatus in 2005 but announced their reunion in 2019. They have since released new music and continued to tour.
### Musical Style
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'
distinctive vocals.
### Notable Individuals
- Steve Jenkins: Lead singer, songwriter, and producer who brings a unique energy to the band.
- Aaron Andreoli: Guitarist and backing vocalist who contributes to the band's sound.
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.
>>> ๋ด์ ์ฌํ ์ผ์ ์ ์ง์ค
๋ด์ ์ฌํ์ ๋ํด ์๋ ค๋๋ฆฝ๋๋ค.
### ์ฒซ์งธ๋
- ์์นจ: ์์ดํํ๋ ํ์์์ ์์ํฉ๋๋ค. ์ ๋ฆฌ ์ฒ์ฅ๊ณผ ์ฃผ๋ณ์ ์๋ฆ๋ค์ด ๊ฒฝ๊ด์ๆฌฃ่ตํ๊ณ , ๋ฉํธ๋กํด๋ฆฌํ ๋ฏธ์ ๊ด์ ๋ฐฉ๋ฌธํด ์ธ๊ณ ์ ๋ช
ํ ์์ ์ํ๋ค์ ๋ง๋๋ณด์ธ์.
- ์ ์ฌ: ์ธ์ธํธ ํจํธ๋ฆญ์ค ์นดํ์์ ์์ด์คํฌ๋ฆผ๊ณผ ์๋์์น๋ฅผ ์ฆ๊ธฐ๊ณ , ํ๊ณ ํํฐ๊ฐ ์๋ Central Park๋ฅผ ๋ฐฉ๋ฌธํ์ธ์. ์ฒ์ฐ ํธ์์ ๋๋ฌด๋ค์ด ์๋ฆ๋ต์ต๋๋ค.
- ์ ๋
: ๋ธ๋ก๋์จ์ด ๋ฎค์ง์ปฌ์ ๋ณด๋ฌ ๊ฐ๊ฑฐ๋ Times Square๋ก ์ด๋ํด ๋ด์์ ๋ฐค๋ชจ์ต์ ์ฆใ์ธ์.
### ๋์งธ๋
- ์์นจ: Statue of Liberty Cruises๋ฅผ ํ๊ณ ์์ ์ ์ฌ์ ์ ๋ฐฉ๋ฌธํ๊ณ , 9/11 ๋ฉ๋ชจ๋ฆฌ์ผ ๋ฐ์ค๋ฅผ ๋ฐฉ๋ฌธํ์ธ์.
- ์ ์ฌ: Wall Street์์ ์ค๋ง์ผ๋ง ์ธ์ฝ์ด๋ก ์ ๋ช
ํ ํผ์์ง์ ๊ฐ์ ๋ด์ ํน์ ์ ํจ์คํธํธ๋๋ฅผ ๋ง๋ณด์ธ์.
- ์ ๋
: SoHo๋ก ์ด๋ํด ์ผํ์ ํ๊ฑฐ๋, Tribeca๋ก ๊ฐ๋ฉด ์ดํ๋ฆฌ์์ ์คํ์ธ์ ์์์ ์ฆ๊ธธ ์ ์์ต๋๋ค.
### ์
์งธ๋
- ์์นจ: ๋ธ๋กฑํฌ์ค์ ์๋ ๋ด์์ฃผ๋ฆฝ๋ํ๊ต๋ก ๊ฐ์ ์ํธ๋น๋ฉ์ ๋ฐฉ๋ฌธํ์ธ์. ์ ์ธ๊ณ์ ์ผ๋ก ์ ๋ช
ํ ํ๋ ๋ฏธ์ ๊ด์
๋๋ค.
- ์ ์ฌ: ํ์ด๋ธ๋ฆฌ๋ ๊ณต๋ฃก (Hybrid T-Rex)๊ณผ ์ฌํ๋ฆฌ ๋ฒ์ค (Safari Bus)๋ฅผ ํ๊ณ Central Park๋ฅผ ๊ฑฐ๋์ด ๋ณด์ธ์. ์ผ์ ๋๋ฌผ๋ค์ฒ๋ผ ๋๊ปด์ง๋๋ค.
- ์ ๋
: ํ์ ์์ ์ฆ๊ธฐ๊ฑฐ๋, ํ๋ซIRON Steakhouse์์ ์คํ
์ดํฌ์ ์์ธ์ผ๋ก ๋๋ด์ธ์.
### ๋ท์งธ๋
- ์์นจ: ํ๊ณ์ ๋ด์ ์ํฐ๋ฅผ ๊ฑธ์ผ๋ฉฐ ๋ธ๋ฃจํด๋ฆฐ ๋ธ๋ฆฌ์ง (Brooklyn Bridge)๊ณผ Manhattan Skyline์ ๋ณด์ธ์.
- ์ ์ฌ: Coney Island Beach์ ๊ฐ์ ํด๋ณ๊ณผ ๋์ด๊ธฐ๊ตฌ, ์๋น๋ค์ ์ฆ๊ธฐ๊ณ , ํ๋ผ๋ค์ด์ค ํจํฌ (Paradise Park)์ ์ธ์ธํธ ๋ฃจ์นด์ค ๊ณต์ (St. Luke's Place)์ ๋ฐฉ๋ฌธํ์ธ์
.
- ์ ๋
: ํ๊ณ์ ์ํ์ ๋ฅผ ๋ณด๊ฑฐ๋, ๋ด์ ์ํฐ์ ์ผ๊ฒฝ์ๆฌฃ่ตํ๊ณ , ํด๋ณ๋ ๊ธฐ๋
๊ด (The Intrepid Sea, Air & Space Museum)์์ ๋๋ด์ธ์.
### ๋ค์ฏ์งธ๋
- ์์นจ: ๋ธ๋ฃจํด๋ฆฐ์ ์๋ Brooklyn Museum์ ๋ฐฉ๋ฌธํ์ธ์. ์ ์ธ๊ณ์ ์ผ๋ก ์ ๋ช
ํ ๋ฏธ์ ๊ด์
๋๋ค.
- ์ ์ฌ: Williamsburg์์ ๋จน๋ ๋ด์ ํน์ ์ ์ค๋ฏธ์ค ํ์ฐ์ค (Smith House)์ Smorgasborg๋ฅผ ๋ฐฉ๋ฌธํ์ธ์.
- ์ ๋
: ๋ฉ์ด์์ค ์คํ๋์ (Macy's Stadium)๊ณผ Flatbush Ave.๋ก ๊ฐ๋ฉด ์ผ์ธ ์ํ์ ๋ฅผ ๋ณด๊ฑฐ๋, Manhattan Bridge์์ ๋๋ด์ธ์.
### ์ฌ์ฏ์งธ๋
- ์์นจ: ์ ๋์จ ์คํ์ด ๊ณต์ (Union Square Park)์์ ์์ํฉ๋๋ค.
- ์ ์ฌ: ์ ๋์จ ์คํ์ด์์ ์ ์ฌ์ ์ฆ๊ธฐ๊ณ , 5 avenue์ 23 street์ ๊ฐ๋ฉด ์์์ ์๋น๋ค์ ๋ง๋๋ณด์ธ์.
- ์ ๋
: ๋ด์ ์ํฐ์ ๋ฐค๋ชจ์ต์ๆฌฃ่ตํ๊ณ , Broadway๋ฅผ ํตํด ๋ง์ง๋ง ๋ฎค์ง์ปฌ์ ๋ณด์ธ์.
์ด ์ฌํ ์ผ์ ์ ๋ด์์ ์ ๋ช
ํ ์ฅ์๋ค์ ๋ฐฉ๋ฌธํ๋ ๊ฒ์ด๋ฉฐ, ๊ฐ ์ง์ญ๋ง๋คไธๅ็ ๊ฒฝํ๊ณผ ๋ฌธํ๋ฅผ ์ฆ๊ธธ ์ ์์ต๋๋ค. ์ฌ์ ๋กญ๊ฒ ์ฌํํด ์ฃผ์ธ์!
Provided Quants
Link | Type | Size/GB | Notes |
---|---|---|---|
GGUF | Q2_K | 3.3 | |
GGUF | Q3_K_S | 3.8 | |
GGUF | Q3_K_M | 4.1 | lower quality |
GGUF | Q3_K_L | 4.4 | |
GGUF | IQ4_XS | 4.6 | |
GGUF | Q4_K_S | 4.8 | fast, recommended |
GGUF | Q4_K_M | 5.0 | fast, recommended |
GGUF | Q5_K_S | 5.7 | |
GGUF | Q5_K_M | 5.8 | |
GGUF | Q6_K | 6.7 | very good quality |
GGUF | Q8_0 | 8.6 | fast, best quality |
GGUF | f16 | 16.2 | 16 bpw, overkill |
Here is a handy graph by ikawrakow comparing some lower-quality quant types (lower is better):
@article{Llama-3.1-SISaAI-Ko-merge-8B-Instruct,
title={asiansoul/Llama-3.1-SISaAI-Ko-merge-8B-Instruct-GGUF},
author={Asiansoul called "Twp Eye Blind"},
merged={Asiansoul called "Twp Eye Blind"},
year={2025},
url = {https://huggingface.co/asiansoul/Llama-3.1-SISaAI-Ko-merge-8B-Instruct}
}