Instructions to use tensorblock/fineinstructions_template_instantiator_intermediate-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/fineinstructions_template_instantiator_intermediate-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/fineinstructions_template_instantiator_intermediate-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tensorblock/fineinstructions_template_instantiator_intermediate-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 tensorblock/fineinstructions_template_instantiator_intermediate-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/fineinstructions_template_instantiator_intermediate-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf tensorblock/fineinstructions_template_instantiator_intermediate-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/fineinstructions_template_instantiator_intermediate-GGUF:Q2_K
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 tensorblock/fineinstructions_template_instantiator_intermediate-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/fineinstructions_template_instantiator_intermediate-GGUF:Q2_K
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 tensorblock/fineinstructions_template_instantiator_intermediate-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/fineinstructions_template_instantiator_intermediate-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/fineinstructions_template_instantiator_intermediate-GGUF:Q2_K
- LM Studio
- Jan
- Ollama
How to use tensorblock/fineinstructions_template_instantiator_intermediate-GGUF with Ollama:
ollama run hf.co/tensorblock/fineinstructions_template_instantiator_intermediate-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/fineinstructions_template_instantiator_intermediate-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 tensorblock/fineinstructions_template_instantiator_intermediate-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 tensorblock/fineinstructions_template_instantiator_intermediate-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tensorblock/fineinstructions_template_instantiator_intermediate-GGUF to start chatting
- Pi
How to use tensorblock/fineinstructions_template_instantiator_intermediate-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf tensorblock/fineinstructions_template_instantiator_intermediate-GGUF:Q2_K
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "tensorblock/fineinstructions_template_instantiator_intermediate-GGUF:Q2_K" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use tensorblock/fineinstructions_template_instantiator_intermediate-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/fineinstructions_template_instantiator_intermediate-GGUF:Q2_K
- Lemonade
How to use tensorblock/fineinstructions_template_instantiator_intermediate-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/fineinstructions_template_instantiator_intermediate-GGUF:Q2_K
Run and chat with the model
lemonade run user.fineinstructions_template_instantiator_intermediate-GGUF-Q2_K
List all available models
lemonade list
- Hermes Agent
How to use tensorblock/fineinstructions_template_instantiator_intermediate-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf tensorblock/fineinstructions_template_instantiator_intermediate-GGUF:Q2_K
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default tensorblock/fineinstructions_template_instantiator_intermediate-GGUF:Q2_K
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use tensorblock/fineinstructions_template_instantiator_intermediate-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf tensorblock/fineinstructions_template_instantiator_intermediate-GGUF:Q2_K
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "tensorblock/fineinstructions_template_instantiator_intermediate-GGUF:Q2_K" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Upload folder using huggingface_hub
Browse files- .gitattributes +12 -0
- README.md +119 -0
- template_instantiator_intermediate-Q2_K.gguf +3 -0
- template_instantiator_intermediate-Q3_K_L.gguf +3 -0
- template_instantiator_intermediate-Q3_K_M.gguf +3 -0
- template_instantiator_intermediate-Q3_K_S.gguf +3 -0
- template_instantiator_intermediate-Q4_0.gguf +3 -0
- template_instantiator_intermediate-Q4_K_M.gguf +3 -0
- template_instantiator_intermediate-Q4_K_S.gguf +3 -0
- template_instantiator_intermediate-Q5_0.gguf +3 -0
- template_instantiator_intermediate-Q5_K_M.gguf +3 -0
- template_instantiator_intermediate-Q5_K_S.gguf +3 -0
- template_instantiator_intermediate-Q6_K.gguf +3 -0
- template_instantiator_intermediate-Q8_0.gguf +3 -0
|
@@ -33,3 +33,15 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip 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 |
+
template_instantiator_intermediate-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
template_instantiator_intermediate-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
template_instantiator_intermediate-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
template_instantiator_intermediate-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
template_instantiator_intermediate-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
template_instantiator_intermediate-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
template_instantiator_intermediate-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
template_instantiator_intermediate-Q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
template_instantiator_intermediate-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
template_instantiator_intermediate-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
template_instantiator_intermediate-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
template_instantiator_intermediate-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,119 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
tags:
|
| 4 |
+
- TensorBlock
|
| 5 |
+
- GGUF
|
| 6 |
+
base_model: fineinstructions/template_instantiator_intermediate
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
<div style="width: auto; margin-left: auto; margin-right: auto">
|
| 10 |
+
<img src="https://i.imgur.com/jC7kdl8.jpeg" alt="TensorBlock" style="width: 100%; min-width: 400px; display: block; margin: auto;">
|
| 11 |
+
</div>
|
| 12 |
+
|
| 13 |
+
[](https://tensorblock.co)
|
| 14 |
+
[](https://twitter.com/tensorblock_aoi)
|
| 15 |
+
[](https://discord.gg/Ej5NmeHFf2)
|
| 16 |
+
[](https://github.com/TensorBlock)
|
| 17 |
+
[](https://t.me/TensorBlock)
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
## fineinstructions/template_instantiator_intermediate - GGUF
|
| 21 |
+
|
| 22 |
+
This repo contains GGUF format model files for [fineinstructions/template_instantiator_intermediate](https://huggingface.co/fineinstructions/template_instantiator_intermediate).
|
| 23 |
+
|
| 24 |
+
The files were quantized using machines provided by [TensorBlock](https://tensorblock.co/), and they are compatible with llama.cpp as of [commit b5753](https://github.com/ggml-org/llama.cpp/commit/73e53dc834c0a2336cd104473af6897197b96277).
|
| 25 |
+
|
| 26 |
+
## Our projects
|
| 27 |
+
<table border="1" cellspacing="0" cellpadding="10">
|
| 28 |
+
<tr>
|
| 29 |
+
<th style="font-size: 25px;">Awesome MCP Servers</th>
|
| 30 |
+
<th style="font-size: 25px;">TensorBlock Studio</th>
|
| 31 |
+
</tr>
|
| 32 |
+
<tr>
|
| 33 |
+
<th><img src="https://imgur.com/2Xov7B7.jpeg" alt="Project A" width="450"/></th>
|
| 34 |
+
<th><img src="https://imgur.com/pJcmF5u.jpeg" alt="Project B" width="450"/></th>
|
| 35 |
+
</tr>
|
| 36 |
+
<tr>
|
| 37 |
+
<th>A comprehensive collection of Model Context Protocol (MCP) servers.</th>
|
| 38 |
+
<th>A lightweight, open, and extensible multi-LLM interaction studio.</th>
|
| 39 |
+
</tr>
|
| 40 |
+
<tr>
|
| 41 |
+
<th>
|
| 42 |
+
<a href="https://github.com/TensorBlock/awesome-mcp-servers" target="_blank" style="
|
| 43 |
+
display: inline-block;
|
| 44 |
+
padding: 8px 16px;
|
| 45 |
+
background-color: #FF7F50;
|
| 46 |
+
color: white;
|
| 47 |
+
text-decoration: none;
|
| 48 |
+
border-radius: 6px;
|
| 49 |
+
font-weight: bold;
|
| 50 |
+
font-family: sans-serif;
|
| 51 |
+
">👀 See what we built 👀</a>
|
| 52 |
+
</th>
|
| 53 |
+
<th>
|
| 54 |
+
<a href="https://github.com/TensorBlock/TensorBlock-Studio" target="_blank" style="
|
| 55 |
+
display: inline-block;
|
| 56 |
+
padding: 8px 16px;
|
| 57 |
+
background-color: #FF7F50;
|
| 58 |
+
color: white;
|
| 59 |
+
text-decoration: none;
|
| 60 |
+
border-radius: 6px;
|
| 61 |
+
font-weight: bold;
|
| 62 |
+
font-family: sans-serif;
|
| 63 |
+
">👀 See what we built 👀</a>
|
| 64 |
+
</th>
|
| 65 |
+
</tr>
|
| 66 |
+
</table>
|
| 67 |
+
|
| 68 |
+
## Prompt template
|
| 69 |
+
|
| 70 |
+
```
|
| 71 |
+
<|begin_of_text|><|start_header_id|>system<|end_header_id|>
|
| 72 |
+
|
| 73 |
+
Cutting Knowledge Date: December 2023
|
| 74 |
+
Today Date: 24 Jun 2025
|
| 75 |
+
|
| 76 |
+
{system_prompt}<|eot_id|><|start_header_id|>user<|end_header_id|>
|
| 77 |
+
|
| 78 |
+
{prompt}<|eot_id|><|start_header_id|>assistant<|end_header_id|>
|
| 79 |
+
```
|
| 80 |
+
|
| 81 |
+
## Model file specification
|
| 82 |
+
|
| 83 |
+
| Filename | Quant type | File Size | Description |
|
| 84 |
+
| -------- | ---------- | --------- | ----------- |
|
| 85 |
+
| [template_instantiator_intermediate-Q2_K.gguf](https://huggingface.co/tensorblock/fineinstructions_template_instantiator_intermediate-GGUF/blob/main/template_instantiator_intermediate-Q2_K.gguf) | Q2_K | 1.364 GB | smallest, significant quality loss - not recommended for most purposes |
|
| 86 |
+
| [template_instantiator_intermediate-Q3_K_S.gguf](https://huggingface.co/tensorblock/fineinstructions_template_instantiator_intermediate-GGUF/blob/main/template_instantiator_intermediate-Q3_K_S.gguf) | Q3_K_S | 1.543 GB | very small, high quality loss |
|
| 87 |
+
| [template_instantiator_intermediate-Q3_K_M.gguf](https://huggingface.co/tensorblock/fineinstructions_template_instantiator_intermediate-GGUF/blob/main/template_instantiator_intermediate-Q3_K_M.gguf) | Q3_K_M | 1.687 GB | very small, high quality loss |
|
| 88 |
+
| [template_instantiator_intermediate-Q3_K_L.gguf](https://huggingface.co/tensorblock/fineinstructions_template_instantiator_intermediate-GGUF/blob/main/template_instantiator_intermediate-Q3_K_L.gguf) | Q3_K_L | 1.815 GB | small, substantial quality loss |
|
| 89 |
+
| [template_instantiator_intermediate-Q4_0.gguf](https://huggingface.co/tensorblock/fineinstructions_template_instantiator_intermediate-GGUF/blob/main/template_instantiator_intermediate-Q4_0.gguf) | Q4_0 | 1.917 GB | legacy; small, very high quality loss - prefer using Q3_K_M |
|
| 90 |
+
| [template_instantiator_intermediate-Q4_K_S.gguf](https://huggingface.co/tensorblock/fineinstructions_template_instantiator_intermediate-GGUF/blob/main/template_instantiator_intermediate-Q4_K_S.gguf) | Q4_K_S | 1.928 GB | small, greater quality loss |
|
| 91 |
+
| [template_instantiator_intermediate-Q4_K_M.gguf](https://huggingface.co/tensorblock/fineinstructions_template_instantiator_intermediate-GGUF/blob/main/template_instantiator_intermediate-Q4_K_M.gguf) | Q4_K_M | 2.019 GB | medium, balanced quality - recommended |
|
| 92 |
+
| [template_instantiator_intermediate-Q5_0.gguf](https://huggingface.co/tensorblock/fineinstructions_template_instantiator_intermediate-GGUF/blob/main/template_instantiator_intermediate-Q5_0.gguf) | Q5_0 | 2.270 GB | legacy; medium, balanced quality - prefer using Q4_K_M |
|
| 93 |
+
| [template_instantiator_intermediate-Q5_K_S.gguf](https://huggingface.co/tensorblock/fineinstructions_template_instantiator_intermediate-GGUF/blob/main/template_instantiator_intermediate-Q5_K_S.gguf) | Q5_K_S | 2.270 GB | large, low quality loss - recommended |
|
| 94 |
+
| [template_instantiator_intermediate-Q5_K_M.gguf](https://huggingface.co/tensorblock/fineinstructions_template_instantiator_intermediate-GGUF/blob/main/template_instantiator_intermediate-Q5_K_M.gguf) | Q5_K_M | 2.322 GB | large, very low quality loss - recommended |
|
| 95 |
+
| [template_instantiator_intermediate-Q6_K.gguf](https://huggingface.co/tensorblock/fineinstructions_template_instantiator_intermediate-GGUF/blob/main/template_instantiator_intermediate-Q6_K.gguf) | Q6_K | 2.644 GB | very large, extremely low quality loss |
|
| 96 |
+
| [template_instantiator_intermediate-Q8_0.gguf](https://huggingface.co/tensorblock/fineinstructions_template_instantiator_intermediate-GGUF/blob/main/template_instantiator_intermediate-Q8_0.gguf) | Q8_0 | 3.422 GB | very large, extremely low quality loss - not recommended |
|
| 97 |
+
|
| 98 |
+
|
| 99 |
+
## Downloading instruction
|
| 100 |
+
|
| 101 |
+
### Command line
|
| 102 |
+
|
| 103 |
+
Firstly, install Huggingface Client
|
| 104 |
+
|
| 105 |
+
```shell
|
| 106 |
+
pip install -U "huggingface_hub[cli]"
|
| 107 |
+
```
|
| 108 |
+
|
| 109 |
+
Then, downoad the individual model file the a local directory
|
| 110 |
+
|
| 111 |
+
```shell
|
| 112 |
+
huggingface-cli download tensorblock/fineinstructions_template_instantiator_intermediate-GGUF --include "template_instantiator_intermediate-Q2_K.gguf" --local-dir MY_LOCAL_DIR
|
| 113 |
+
```
|
| 114 |
+
|
| 115 |
+
If you wanna download multiple model files with a pattern (e.g., `*Q4_K*gguf`), you can try:
|
| 116 |
+
|
| 117 |
+
```shell
|
| 118 |
+
huggingface-cli download tensorblock/fineinstructions_template_instantiator_intermediate-GGUF --local-dir MY_LOCAL_DIR --local-dir-use-symlinks False --include='*Q4_K*gguf'
|
| 119 |
+
```
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5a5c7e4bbfb59b66d3e61b8e74e9a9a87d0ccc669abde30218d4fe2b593fc1af
|
| 3 |
+
size 1363935360
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e2e71143f095e73a0b2908511bb4de7ef61d224518d10149421f5203de94539b
|
| 3 |
+
size 1815347328
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:264739d2d67a11fdd5aeeb0b562a1bd849799ac8a65c5916303eb55f347fb3c7
|
| 3 |
+
size 1687158912
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e5f6023919fce852277794e79c6aef3bfde354b6cb93d51c9c34b54fa57d07ce
|
| 3 |
+
size 1542848640
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d43fa5c1d6b83e35b9bbbacb00b9eafa62044b5792eeea91f2cb7c1f9f191451
|
| 3 |
+
size 1917190272
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a499cf44783fc0f27778c537f30f836ec4d0172a38a46154a7cecb8e814d4c21
|
| 3 |
+
size 2019377280
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3fdeecb1ee885dde997329d5a32dfca97f5501b5be6aebe8023e742220e04990
|
| 3 |
+
size 1928200320
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b5393e6b4da7d9c74cac314e20cd161ced56d6b76d83fc8a9671889334da3cb
|
| 3 |
+
size 2269511808
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fc7cf8d505d2c7475162bd3fd8b82e7c02c246904b08bb224a6f1569fc8f828d
|
| 3 |
+
size 2322153600
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:585bcd6cb9769c9ca05a4a52ab374107a0e79645ab6cbdf88324c73cf209e158
|
| 3 |
+
size 2269511808
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:97fdc634386d0a3dc9b875e7af0e07f7a7dc9a75f699fd33a7b9dfac8a295bb2
|
| 3 |
+
size 2643853440
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d869ee52396156d3eff73225b6e5fededf4780423bebe2cae7924e52e5ab0855
|
| 3 |
+
size 3421898880
|