Instructions to use mdmachine/ACEStep-XL-Regrind-V1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mdmachine/ACEStep-XL-Regrind-V1 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 mdmachine/ACEStep-XL-Regrind-V1:Q4_K_M # Run inference directly in the terminal: llama cli -hf mdmachine/ACEStep-XL-Regrind-V1:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf mdmachine/ACEStep-XL-Regrind-V1:Q4_K_M # Run inference directly in the terminal: llama cli -hf mdmachine/ACEStep-XL-Regrind-V1: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 mdmachine/ACEStep-XL-Regrind-V1:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mdmachine/ACEStep-XL-Regrind-V1: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 mdmachine/ACEStep-XL-Regrind-V1:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mdmachine/ACEStep-XL-Regrind-V1:Q4_K_M
Use Docker
docker model run hf.co/mdmachine/ACEStep-XL-Regrind-V1:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mdmachine/ACEStep-XL-Regrind-V1 with Ollama:
ollama run hf.co/mdmachine/ACEStep-XL-Regrind-V1:Q4_K_M
- Unsloth Studio
How to use mdmachine/ACEStep-XL-Regrind-V1 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 mdmachine/ACEStep-XL-Regrind-V1 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 mdmachine/ACEStep-XL-Regrind-V1 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for mdmachine/ACEStep-XL-Regrind-V1 to start chatting
- Docker Model Runner
How to use mdmachine/ACEStep-XL-Regrind-V1 with Docker Model Runner:
docker model run hf.co/mdmachine/ACEStep-XL-Regrind-V1:Q4_K_M
- Lemonade
How to use mdmachine/ACEStep-XL-Regrind-V1 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mdmachine/ACEStep-XL-Regrind-V1:Q4_K_M
Run and chat with the model
lemonade run user.ACEStep-XL-Regrind-V1-Q4_K_M
List all available models
lemonade list
- Atomic Chat
File size: 4,169 Bytes
2117451 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | """
scan_repo.py
Prints a tree of the repo work folder, flags anything that should be gitignored.
Run from anywhere: python scan_repo.py "D:\Projects\STORM"
Or drop it in the folder and run: python scan_repo.py
Flag lists below are intentionally generic. If you have project-specific files
or terms you want auto-flagged before a public push, create a local
`.scan_repo_private.txt` next to this script (one pattern per line, not
tracked by git) and it will be merged in automatically. Keeping private
identifiers out of this script's own source is the point -- a public repo
scanner script should not itself be the thing that leaks what it's protecting.
"""
import os
import sys
ROOT = sys.argv[1] if len(sys.argv) > 1 else os.getcwd()
# Patterns that should generally be blocked by .gitignore
SHOULD_IGNORE = {
# dirs
"__pycache__", ".vscode", ".idea", "baks", "dist", "build",
"node_modules", ".git", "output", "outputs",
# file extensions
".pyc", ".pyd", ".pyo", ".egg-info",
".rar", ".zip", ".7z",
".DS_Store", "Thumbs.db",
}
# Generic markers that commonly indicate an internal-only doc.
# Project-specific names/filenames go in .scan_repo_private.txt instead --
# see module docstring.
INTERNAL_FLAGS = {
"_Internal_Reference", "_REPO_INVENTORY",
"INTERNAL", "_private", "_SECRET",
}
def _load_local_overrides():
"""
Merge in project-specific patterns from .scan_repo_private.txt if present.
This file should be in .gitignore -- it's the place for real internal
filenames/project names without baking them into tracked source.
"""
override_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), ".scan_repo_private.txt")
if not os.path.exists(override_path):
return
try:
with open(override_path, encoding="utf-8") as f:
for line in f:
line = line.strip()
if not line or line.startswith("#"):
continue
SHOULD_IGNORE.add(line)
except Exception:
pass
_load_local_overrides()
# Extensions we care about for the listing
SHOW_EXTS = {
".py", ".lua", ".hpp", ".h", ".cpp", ".md", ".txt", ".toml",
".yaml", ".yml", ".json", ".bat", ".sh", ".svg", ".png",
".safetensors", ".gguf", ".gitignore", ".cfg", ".ini",
}
def flag(name):
n = name.lower()
for pat in SHOULD_IGNORE:
if n == pat.lower() or n.endswith(pat.lower()):
return " β GITIGNORE"
for pat in INTERNAL_FLAGS:
if pat.lower() in n:
return " β INTERNAL -- DO NOT PUSH"
return ""
def scan(path, prefix="", depth=0):
if depth > 6:
return
try:
entries = sorted(os.scandir(path), key=lambda e: (e.is_file(), e.name.lower()))
except PermissionError:
return
dirs = [e for e in entries if e.is_dir()]
files = [e for e in entries if e.is_file()]
for i, entry in enumerate(dirs + files):
is_last = (i == len(dirs) + len(files) - 1)
connector = "βββ " if is_last else "βββ "
ext = os.path.splitext(entry.name)[1].lower()
f = flag(entry.name)
if entry.is_dir():
print(f"{prefix}{connector}{entry.name}/{f}")
if not f: # don't recurse into ignored dirs
extension = " " if is_last else "β "
scan(entry.path, prefix + extension, depth + 1)
else:
# show all files but dim ones we don't recognise
size = os.path.getsize(entry.path)
size_str = f"{size/1024:.0f}KB" if size > 1024 else f"{size}B"
if ext in SHOW_EXTS or f:
print(f"{prefix}{connector}{entry.name} [{size_str}]{f}")
else:
print(f"{prefix}{connector}{entry.name} [{size_str}] (unknown ext)")
print(f"\n{'='*60}")
print(f"REPO SCAN: {ROOT}")
print(f"{'='*60}\n")
scan(ROOT)
print(f"\n{'='*60}")
print("Legend:")
print(" β GITIGNORE : should be in .gitignore, not committed")
print(" β INTERNAL : private doc, must not be pushed")
print(" (unknown ext) : check manually")
print(f"{'='*60}\n")
|