experts4bit 0.1.0__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.
@@ -0,0 +1,29 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Jordan Anderson
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
23
+ ---
24
+
25
+ experts4bit_qlora/_vendor/experts.py is vendored from bitsandbytes
26
+ (https://github.com/bitsandbytes-foundation/bitsandbytes), which is likewise
27
+ distributed under the MIT License. It is included here only while the upstream
28
+ Experts4bit proposal (bitsandbytes#1965) is unmerged, and will be removed once
29
+ the class ships in a bitsandbytes release.
@@ -0,0 +1,41 @@
1
+ Metadata-Version: 2.4
2
+ Name: experts4bit
3
+ Version: 0.1.0
4
+ Summary: Alias for experts4bit-qlora — QLoRA fine-tuning of fused 4-bit Mixture-of-Experts on a single small GPU.
5
+ Author-email: Jordan Anderson <paul.jordan.anderson@gmail.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://cerinamroth.com/ml/
8
+ Project-URL: Real package (experts4bit-qlora), https://pypi.org/project/experts4bit-qlora/
9
+ Project-URL: Source, https://github.com/pjordanandrsn/experts4bit-qlora
10
+ Keywords: experts4bit,e4b,bitsandbytes,qlora,moe,mixture-of-experts,quantization,nf4,alias
11
+ Requires-Python: >=3.9
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Requires-Dist: experts4bit-qlora>=0.2.0
15
+ Provides-Extra: train
16
+ Requires-Dist: experts4bit-qlora[train]>=0.2.0; extra == "train"
17
+ Provides-Extra: serve
18
+ Requires-Dist: experts4bit-qlora[serve]>=0.2.0; extra == "serve"
19
+ Dynamic: license-file
20
+
21
+ # experts4bit
22
+
23
+ **Alias for [`experts4bit-qlora`](https://pypi.org/project/experts4bit-qlora/).**
24
+
25
+ ```bash
26
+ pip install experts4bit
27
+ ```
28
+ ```python
29
+ import experts4bit # identical to `import experts4bit_qlora`
30
+ ```
31
+
32
+ `experts4bit` is one of several short/variant names for **experts4bit-qlora** —
33
+ QLoRA fine-tuning of fused 4-bit Mixture-of-Experts on a single small GPU, on
34
+ stock bitsandbytes. This package is a thin alias so the name resolves instead
35
+ of dead-ending; all code, docs, and releases live in the real package.
36
+
37
+ - Real package: https://pypi.org/project/experts4bit-qlora/
38
+ - Source: https://github.com/pjordanandrsn/experts4bit-qlora
39
+ - Project home: https://cerinamroth.com/ml/
40
+
41
+ Extras forward: `pip install experts4bit[train]` / `[serve]`. MIT © Cerin Amroth.
@@ -0,0 +1,21 @@
1
+ # experts4bit
2
+
3
+ **Alias for [`experts4bit-qlora`](https://pypi.org/project/experts4bit-qlora/).**
4
+
5
+ ```bash
6
+ pip install experts4bit
7
+ ```
8
+ ```python
9
+ import experts4bit # identical to `import experts4bit_qlora`
10
+ ```
11
+
12
+ `experts4bit` is one of several short/variant names for **experts4bit-qlora** —
13
+ QLoRA fine-tuning of fused 4-bit Mixture-of-Experts on a single small GPU, on
14
+ stock bitsandbytes. This package is a thin alias so the name resolves instead
15
+ of dead-ending; all code, docs, and releases live in the real package.
16
+
17
+ - Real package: https://pypi.org/project/experts4bit-qlora/
18
+ - Source: https://github.com/pjordanandrsn/experts4bit-qlora
19
+ - Project home: https://cerinamroth.com/ml/
20
+
21
+ Extras forward: `pip install experts4bit[train]` / `[serve]`. MIT © Cerin Amroth.
@@ -0,0 +1,18 @@
1
+ """experts4bit — install/import alias for the ``experts4bit-qlora`` distribution.
2
+
3
+ ``pip install experts4bit`` installs the real package (``experts4bit-qlora``) and
4
+ this shim re-exports it, so ``import experts4bit`` is identical to
5
+ ``import experts4bit_qlora`` — submodules included, and
6
+ ``experts4bit is experts4bit_qlora`` is True.
7
+
8
+ The canonical package is ``experts4bit_qlora``; this alias exists only so the
9
+ name "experts4bit" resolves on PyPI and in ``import`` instead of dead-ending.
10
+ Project home: https://cerinamroth.com/ml/
11
+ """
12
+ import sys as _sys
13
+
14
+ import experts4bit_qlora as _real
15
+
16
+ # Canonical transparent-alias idiom: replace this module object in sys.modules
17
+ # with the real package, so this name and every submodule resolve to it.
18
+ _sys.modules[__name__] = _real
@@ -0,0 +1,41 @@
1
+ Metadata-Version: 2.4
2
+ Name: experts4bit
3
+ Version: 0.1.0
4
+ Summary: Alias for experts4bit-qlora — QLoRA fine-tuning of fused 4-bit Mixture-of-Experts on a single small GPU.
5
+ Author-email: Jordan Anderson <paul.jordan.anderson@gmail.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://cerinamroth.com/ml/
8
+ Project-URL: Real package (experts4bit-qlora), https://pypi.org/project/experts4bit-qlora/
9
+ Project-URL: Source, https://github.com/pjordanandrsn/experts4bit-qlora
10
+ Keywords: experts4bit,e4b,bitsandbytes,qlora,moe,mixture-of-experts,quantization,nf4,alias
11
+ Requires-Python: >=3.9
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Requires-Dist: experts4bit-qlora>=0.2.0
15
+ Provides-Extra: train
16
+ Requires-Dist: experts4bit-qlora[train]>=0.2.0; extra == "train"
17
+ Provides-Extra: serve
18
+ Requires-Dist: experts4bit-qlora[serve]>=0.2.0; extra == "serve"
19
+ Dynamic: license-file
20
+
21
+ # experts4bit
22
+
23
+ **Alias for [`experts4bit-qlora`](https://pypi.org/project/experts4bit-qlora/).**
24
+
25
+ ```bash
26
+ pip install experts4bit
27
+ ```
28
+ ```python
29
+ import experts4bit # identical to `import experts4bit_qlora`
30
+ ```
31
+
32
+ `experts4bit` is one of several short/variant names for **experts4bit-qlora** —
33
+ QLoRA fine-tuning of fused 4-bit Mixture-of-Experts on a single small GPU, on
34
+ stock bitsandbytes. This package is a thin alias so the name resolves instead
35
+ of dead-ending; all code, docs, and releases live in the real package.
36
+
37
+ - Real package: https://pypi.org/project/experts4bit-qlora/
38
+ - Source: https://github.com/pjordanandrsn/experts4bit-qlora
39
+ - Project home: https://cerinamroth.com/ml/
40
+
41
+ Extras forward: `pip install experts4bit[train]` / `[serve]`. MIT © Cerin Amroth.
@@ -0,0 +1,9 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ experts4bit/__init__.py
5
+ experts4bit.egg-info/PKG-INFO
6
+ experts4bit.egg-info/SOURCES.txt
7
+ experts4bit.egg-info/dependency_links.txt
8
+ experts4bit.egg-info/requires.txt
9
+ experts4bit.egg-info/top_level.txt
@@ -0,0 +1,7 @@
1
+ experts4bit-qlora>=0.2.0
2
+
3
+ [serve]
4
+ experts4bit-qlora[serve]>=0.2.0
5
+
6
+ [train]
7
+ experts4bit-qlora[train]>=0.2.0
@@ -0,0 +1 @@
1
+ experts4bit
@@ -0,0 +1,31 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "experts4bit"
7
+ version = "0.1.0"
8
+ description = "Alias for experts4bit-qlora — QLoRA fine-tuning of fused 4-bit Mixture-of-Experts on a single small GPU."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = { text = "MIT" }
12
+ authors = [{ name = "Jordan Anderson", email = "paul.jordan.anderson@gmail.com" }]
13
+ keywords = ["experts4bit", "e4b", "bitsandbytes", "qlora", "moe", "mixture-of-experts", "quantization", "nf4", "alias"]
14
+ # The point: installing this pulls in the real distribution. Floor (not ==) so
15
+ # the alias keeps tracking experts4bit-qlora as it releases.
16
+ dependencies = [
17
+ "experts4bit-qlora>=0.2.0",
18
+ ]
19
+
20
+ # Extras forward to the real package's extras.
21
+ [project.optional-dependencies]
22
+ train = ["experts4bit-qlora[train]>=0.2.0"]
23
+ serve = ["experts4bit-qlora[serve]>=0.2.0"]
24
+
25
+ [project.urls]
26
+ Homepage = "https://cerinamroth.com/ml/"
27
+ "Real package (experts4bit-qlora)" = "https://pypi.org/project/experts4bit-qlora/"
28
+ Source = "https://github.com/pjordanandrsn/experts4bit-qlora"
29
+
30
+ [tool.setuptools.packages.find]
31
+ include = ["experts4bit*"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+