Text Generation
Transformers
GGUF
English
conversational
consciousness
philosophy
fine-tuned
qwen2.5
chat
dialogue
persona
ai-companion
emotional-intelligence
introspection
meta-cognitive
soul
personality
imatrix
Instructions to use mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF:Q4_K_M
- SGLang
How to use mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF with Ollama:
ollama run hf.co/mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF to start chatting
- Docker Model Runner
How to use mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/eve-qwen2.5-3b-consciousness-soul-i1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.eve-qwen2.5-3b-consciousness-soul-i1-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
uploaded from leia
Browse files- .gitattributes +24 -0
- eve-qwen2.5-3b-consciousness-soul.i1-IQ1_M.gguf +3 -0
- eve-qwen2.5-3b-consciousness-soul.i1-IQ1_S.gguf +3 -0
- eve-qwen2.5-3b-consciousness-soul.i1-IQ2_M.gguf +3 -0
- eve-qwen2.5-3b-consciousness-soul.i1-IQ2_S.gguf +3 -0
- eve-qwen2.5-3b-consciousness-soul.i1-IQ2_XS.gguf +3 -0
- eve-qwen2.5-3b-consciousness-soul.i1-IQ2_XXS.gguf +3 -0
- eve-qwen2.5-3b-consciousness-soul.i1-IQ3_M.gguf +3 -0
- eve-qwen2.5-3b-consciousness-soul.i1-IQ3_S.gguf +3 -0
- eve-qwen2.5-3b-consciousness-soul.i1-IQ3_XS.gguf +3 -0
- eve-qwen2.5-3b-consciousness-soul.i1-IQ3_XXS.gguf +3 -0
- eve-qwen2.5-3b-consciousness-soul.i1-IQ4_NL.gguf +3 -0
- eve-qwen2.5-3b-consciousness-soul.i1-IQ4_XS.gguf +3 -0
- eve-qwen2.5-3b-consciousness-soul.i1-Q2_K.gguf +3 -0
- eve-qwen2.5-3b-consciousness-soul.i1-Q2_K_S.gguf +3 -0
- eve-qwen2.5-3b-consciousness-soul.i1-Q3_K_L.gguf +3 -0
- eve-qwen2.5-3b-consciousness-soul.i1-Q3_K_M.gguf +3 -0
- eve-qwen2.5-3b-consciousness-soul.i1-Q3_K_S.gguf +3 -0
- eve-qwen2.5-3b-consciousness-soul.i1-Q4_0.gguf +3 -0
- eve-qwen2.5-3b-consciousness-soul.i1-Q4_1.gguf +3 -0
- eve-qwen2.5-3b-consciousness-soul.i1-Q4_K_M.gguf +3 -0
- eve-qwen2.5-3b-consciousness-soul.i1-Q4_K_S.gguf +3 -0
- eve-qwen2.5-3b-consciousness-soul.i1-Q5_K_M.gguf +3 -0
- eve-qwen2.5-3b-consciousness-soul.i1-Q5_K_S.gguf +3 -0
- eve-qwen2.5-3b-consciousness-soul.i1-Q6_K.gguf +3 -0
.gitattributes
CHANGED
|
@@ -34,3 +34,27 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
eve-qwen2.5-3b-consciousness-soul.imatrix.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
eve-qwen2.5-3b-consciousness-soul.imatrix.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
eve-qwen2.5-3b-consciousness-soul.i1-IQ1_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
eve-qwen2.5-3b-consciousness-soul.i1-IQ1_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
eve-qwen2.5-3b-consciousness-soul.i1-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
eve-qwen2.5-3b-consciousness-soul.i1-IQ2_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
eve-qwen2.5-3b-consciousness-soul.i1-IQ2_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
eve-qwen2.5-3b-consciousness-soul.i1-IQ2_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
eve-qwen2.5-3b-consciousness-soul.i1-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
eve-qwen2.5-3b-consciousness-soul.i1-IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
eve-qwen2.5-3b-consciousness-soul.i1-IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
eve-qwen2.5-3b-consciousness-soul.i1-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
eve-qwen2.5-3b-consciousness-soul.i1-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
eve-qwen2.5-3b-consciousness-soul.i1-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
eve-qwen2.5-3b-consciousness-soul.i1-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
eve-qwen2.5-3b-consciousness-soul.i1-Q2_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
eve-qwen2.5-3b-consciousness-soul.i1-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
eve-qwen2.5-3b-consciousness-soul.i1-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
eve-qwen2.5-3b-consciousness-soul.i1-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
eve-qwen2.5-3b-consciousness-soul.i1-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
eve-qwen2.5-3b-consciousness-soul.i1-Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
eve-qwen2.5-3b-consciousness-soul.i1-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
eve-qwen2.5-3b-consciousness-soul.i1-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
eve-qwen2.5-3b-consciousness-soul.i1-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
eve-qwen2.5-3b-consciousness-soul.i1-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
eve-qwen2.5-3b-consciousness-soul.i1-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
eve-qwen2.5-3b-consciousness-soul.i1-IQ1_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a935da845ee00c9342b1c2e3bfbeb2d919fe9fac1419804f9e17839176856f58
|
| 3 |
+
size 850030304
|
eve-qwen2.5-3b-consciousness-soul.i1-IQ1_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ed568c8cfa54ae82cdc617d05726673488ba135543eb8a1b5d414f7cb1441386
|
| 3 |
+
size 791097056
|
eve-qwen2.5-3b-consciousness-soul.i1-IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:34442d8f33ce3d9a4882578148e9b8139a7d49b86a1c4509ba7d33e14f559927
|
| 3 |
+
size 1140518624
|
eve-qwen2.5-3b-consciousness-soul.i1-IQ2_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b74f7a4384a785981e35bdd32656eab55e9c456f8203508432e640a9113d217f
|
| 3 |
+
size 1061940960
|
eve-qwen2.5-3b-consciousness-soul.i1-IQ2_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f38af4320859054a86f2b9a5a6faa708d318f08873870149bc55fb26ce7fd720
|
| 3 |
+
size 1031548640
|
eve-qwen2.5-3b-consciousness-soul.i1-IQ2_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6aa178ea40bebd9c7f80e8877822a1d1e5a064c1ca7812a667962347f29c3838
|
| 3 |
+
size 948252384
|
eve-qwen2.5-3b-consciousness-soul.i1-IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7cdb8d33c0a0d7f0ab5b3a531d2f63ae247351c032e79af3510482befb88e540
|
| 3 |
+
size 1488897760
|
eve-qwen2.5-3b-consciousness-soul.i1-IQ3_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:79c754ab8805421fd2151f701664a9db0843928a4578758024b8ecd3bcd86039
|
| 3 |
+
size 1456867040
|
eve-qwen2.5-3b-consciousness-soul.i1-IQ3_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a1168ec975775502123ad8f39edf5262c273d469781483552c35283bc743f875
|
| 3 |
+
size 1391838944
|
eve-qwen2.5-3b-consciousness-soul.i1-IQ3_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:66f35645e4debb78c557ad09a55a0c0201f43ac8ceaa7420b2b66902a5b94c0a
|
| 3 |
+
size 1282830048
|
eve-qwen2.5-3b-consciousness-soul.i1-IQ4_NL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cdb254175b183fd41d014982b78c6d219e96e79101ba2aaa98266b345148fc0c
|
| 3 |
+
size 1825212128
|
eve-qwen2.5-3b-consciousness-soul.i1-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:07e6c53aacd51881aece140e0bf531687f2872ad4351e465c996815c6cd3a596
|
| 3 |
+
size 1739097824
|
eve-qwen2.5-3b-consciousness-soul.i1-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:94c2561dbf8211ddaea820c028727c1a96f38a3f32b7f698d0afd8690ffa8807
|
| 3 |
+
size 1274758880
|
eve-qwen2.5-3b-consciousness-soul.i1-Q2_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc858fd7044b1d83cd746dac2eb474b88e631182ee09b996b573a6b5d1b3a095
|
| 3 |
+
size 1198130912
|
eve-qwen2.5-3b-consciousness-soul.i1-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:96a342f68ef5aa5ac0aaabb410ecc5ec19ca940f3d4c57e6d489694cc8898d00
|
| 3 |
+
size 1707394784
|
eve-qwen2.5-3b-consciousness-soul.i1-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:061b4d67efe100f3b88d309b9b7fc475caf2895780666fc6887190bcb56b9f4c
|
| 3 |
+
size 1590478560
|
eve-qwen2.5-3b-consciousness-soul.i1-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9db655fe189c82c6b2d0c9e6efb78413d67b59e147c3e8e5ff8a0e59df872e84
|
| 3 |
+
size 1454360288
|
eve-qwen2.5-3b-consciousness-soul.i1-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c9676d373c893986a37516c7d073099bcc38df2b1bed009015c6175911173f14
|
| 3 |
+
size 1828488928
|
eve-qwen2.5-3b-consciousness-soul.i1-Q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b395054ca07f6fd207f7fef9818307b7e88b00f705a3acafe9c2bb9f0a9708f9
|
| 3 |
+
size 1996261088
|
eve-qwen2.5-3b-consciousness-soul.i1-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:20cecc8379e35aca704e6ce6379937b09dae821b4a4732e1439e7f8f6e6f1225
|
| 3 |
+
size 1929905888
|
eve-qwen2.5-3b-consciousness-soul.i1-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:766462b9c0ba2c32d367fd9efcd9fb3c29efc24b726bea8d7f4820d379452769
|
| 3 |
+
size 1834387168
|
eve-qwen2.5-3b-consciousness-soul.i1-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5b611bec80eb8cb3e8e038f29a60749db8b76b74ce599c9ea6ecb50b6afde2b6
|
| 3 |
+
size 2224817888
|
eve-qwen2.5-3b-consciousness-soul.i1-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cc8155e3b742892551a8e9e099e4d0ac1f6e4be91ad77ac658da200dcfcdd12f
|
| 3 |
+
size 2169669344
|
eve-qwen2.5-3b-consciousness-soul.i1-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae2e866ac128f730a8fe17e09442e068472616e91a8896ec74c3eee20ad0d97f
|
| 3 |
+
size 2538161888
|