e4b-qlora 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.
- e4b_qlora-0.1.0/LICENSE +29 -0
- e4b_qlora-0.1.0/PKG-INFO +41 -0
- e4b_qlora-0.1.0/README.md +21 -0
- e4b_qlora-0.1.0/e4b_qlora/__init__.py +18 -0
- e4b_qlora-0.1.0/e4b_qlora.egg-info/PKG-INFO +41 -0
- e4b_qlora-0.1.0/e4b_qlora.egg-info/SOURCES.txt +9 -0
- e4b_qlora-0.1.0/e4b_qlora.egg-info/dependency_links.txt +1 -0
- e4b_qlora-0.1.0/e4b_qlora.egg-info/requires.txt +7 -0
- e4b_qlora-0.1.0/e4b_qlora.egg-info/top_level.txt +1 -0
- e4b_qlora-0.1.0/pyproject.toml +31 -0
- e4b_qlora-0.1.0/setup.cfg +4 -0
e4b_qlora-0.1.0/LICENSE
ADDED
|
@@ -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.
|
e4b_qlora-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: e4b-qlora
|
|
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
|
+
# e4b-qlora
|
|
22
|
+
|
|
23
|
+
**Alias for [`experts4bit-qlora`](https://pypi.org/project/experts4bit-qlora/).**
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
pip install e4b-qlora
|
|
27
|
+
```
|
|
28
|
+
```python
|
|
29
|
+
import e4b_qlora # identical to `import experts4bit_qlora`
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
`e4b-qlora` 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 e4b-qlora[train]` / `[serve]`. MIT © Cerin Amroth.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# e4b-qlora
|
|
2
|
+
|
|
3
|
+
**Alias for [`experts4bit-qlora`](https://pypi.org/project/experts4bit-qlora/).**
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
pip install e4b-qlora
|
|
7
|
+
```
|
|
8
|
+
```python
|
|
9
|
+
import e4b_qlora # identical to `import experts4bit_qlora`
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
`e4b-qlora` 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 e4b-qlora[train]` / `[serve]`. MIT © Cerin Amroth.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"""e4b-qlora — install/import alias for the ``experts4bit-qlora`` distribution.
|
|
2
|
+
|
|
3
|
+
``pip install e4b-qlora`` installs the real package (``experts4bit-qlora``) and
|
|
4
|
+
this shim re-exports it, so ``import e4b_qlora`` is identical to
|
|
5
|
+
``import experts4bit_qlora`` — submodules included, and
|
|
6
|
+
``e4b_qlora is experts4bit_qlora`` is True.
|
|
7
|
+
|
|
8
|
+
The canonical package is ``experts4bit_qlora``; this alias exists only so the
|
|
9
|
+
name "e4b-qlora" 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: e4b-qlora
|
|
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
|
+
# e4b-qlora
|
|
22
|
+
|
|
23
|
+
**Alias for [`experts4bit-qlora`](https://pypi.org/project/experts4bit-qlora/).**
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
pip install e4b-qlora
|
|
27
|
+
```
|
|
28
|
+
```python
|
|
29
|
+
import e4b_qlora # identical to `import experts4bit_qlora`
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
`e4b-qlora` 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 e4b-qlora[train]` / `[serve]`. MIT © Cerin Amroth.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
e4b_qlora
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "e4b-qlora"
|
|
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 = ["e4b_qlora*"]
|