quantprobe 1.6.0__tar.gz → 1.6.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {quantprobe-1.6.0/quantprobe.egg-info → quantprobe-1.6.1}/PKG-INFO +1 -1
- {quantprobe-1.6.0 → quantprobe-1.6.1}/pyproject.toml +1 -1
- {quantprobe-1.6.0 → quantprobe-1.6.1}/quantprobe/__init__.py +1 -1
- quantprobe-1.6.1/quantprobe/__main__.py +9 -0
- {quantprobe-1.6.0 → quantprobe-1.6.1/quantprobe.egg-info}/PKG-INFO +1 -1
- {quantprobe-1.6.0 → quantprobe-1.6.1}/quantprobe.egg-info/SOURCES.txt +1 -0
- {quantprobe-1.6.0 → quantprobe-1.6.1}/LICENSE +0 -0
- {quantprobe-1.6.0 → quantprobe-1.6.1}/README.md +0 -0
- {quantprobe-1.6.0 → quantprobe-1.6.1}/quantprobe/auto.py +0 -0
- {quantprobe-1.6.0 → quantprobe-1.6.1}/quantprobe/cli.py +0 -0
- {quantprobe-1.6.0 → quantprobe-1.6.1}/quantprobe/dashboard.py +0 -0
- {quantprobe-1.6.0 → quantprobe-1.6.1}/quantprobe/detect.py +0 -0
- {quantprobe-1.6.0 → quantprobe-1.6.1}/quantprobe/fetch.py +0 -0
- {quantprobe-1.6.0 → quantprobe-1.6.1}/quantprobe/optimize.py +0 -0
- {quantprobe-1.6.0 → quantprobe-1.6.1}/quantprobe/plan.py +0 -0
- {quantprobe-1.6.0 → quantprobe-1.6.1}/quantprobe/probe.py +0 -0
- {quantprobe-1.6.0 → quantprobe-1.6.1}/quantprobe/runtime.py +0 -0
- {quantprobe-1.6.0 → quantprobe-1.6.1}/quantprobe/spec.py +0 -0
- {quantprobe-1.6.0 → quantprobe-1.6.1}/quantprobe/target.py +0 -0
- {quantprobe-1.6.0 → quantprobe-1.6.1}/quantprobe.egg-info/dependency_links.txt +0 -0
- {quantprobe-1.6.0 → quantprobe-1.6.1}/quantprobe.egg-info/entry_points.txt +0 -0
- {quantprobe-1.6.0 → quantprobe-1.6.1}/quantprobe.egg-info/requires.txt +0 -0
- {quantprobe-1.6.0 → quantprobe-1.6.1}/quantprobe.egg-info/top_level.txt +0 -0
- {quantprobe-1.6.0 → quantprobe-1.6.1}/setup.cfg +0 -0
- {quantprobe-1.6.0 → quantprobe-1.6.1}/tests/test_engine.py +0 -0
- {quantprobe-1.6.0 → quantprobe-1.6.1}/tests/test_evaluator.py +0 -0
- {quantprobe-1.6.0 → quantprobe-1.6.1}/tests/test_pipeline.py +0 -0
- {quantprobe-1.6.0 → quantprobe-1.6.1}/tests/test_transforms.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: quantprobe
|
|
3
|
-
Version: 1.6.
|
|
3
|
+
Version: 1.6.1
|
|
4
4
|
Summary: Probe-then-quantize for LLMs: measure a model's fragility curve, plan bit/tier placement by the tiered decode law, and emit ready-to-run llama.cpp recipes.
|
|
5
5
|
Author: Federico Sciuca
|
|
6
6
|
License: MIT
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "quantprobe"
|
|
7
|
-
version = "1.6.
|
|
7
|
+
version = "1.6.1"
|
|
8
8
|
description = "Probe-then-quantize for LLMs: measure a model's fragility curve, plan bit/tier placement by the tiered decode law, and emit ready-to-run llama.cpp recipes."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { text = "MIT" }
|
|
@@ -8,4 +8,4 @@ Three commands, all grounded in measured laws (see LAWS.md in the repo):
|
|
|
8
8
|
Every constant in `plan` is fitted from measurements published in the repo, including two
|
|
9
9
|
pre-registered hardware predictions confirmed within 8%.
|
|
10
10
|
"""
|
|
11
|
-
__version__ = "1.6.
|
|
11
|
+
__version__ = "1.6.1"
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"""`python -m quantprobe` — identical to the `quantprobe` console script.
|
|
2
|
+
|
|
3
|
+
The PATH-proof entry point: on Windows, `pip install` often lands the .exe in a
|
|
4
|
+
user-site Scripts folder that is not on PATH; this always works regardless.
|
|
5
|
+
"""
|
|
6
|
+
from .cli import main
|
|
7
|
+
|
|
8
|
+
if __name__ == "__main__":
|
|
9
|
+
main()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: quantprobe
|
|
3
|
-
Version: 1.6.
|
|
3
|
+
Version: 1.6.1
|
|
4
4
|
Summary: Probe-then-quantize for LLMs: measure a model's fragility curve, plan bit/tier placement by the tiered decode law, and emit ready-to-run llama.cpp recipes.
|
|
5
5
|
Author: Federico Sciuca
|
|
6
6
|
License: MIT
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|