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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
stdenv,
# build-system
setuptools,
# dependencies
accelerate,
huggingface-hub,
numpy,
packaging,
psutil,
pyyaml,
safetensors,
torch,
tqdm,
transformers,
# tests
datasets,
diffusers,
parameterized,
pytest-cov-stub,
pytest-xdist,
pytestCheckHook,
scipy,
}:
buildPythonPackage rec {
pname = "peft";
version = "0.15.0";
pyproject = true;
src = fetchFromGitHub {
owner = "huggingface";
repo = "peft";
tag = "v${version}";
hash = "sha256-vR0FoBDsSMQiSGgqMegPqPvDgq00fqF7d+jKvqgeCAg=";
};
build-system = [ setuptools ];
dependencies = [
accelerate
huggingface-hub
numpy
packaging
psutil
pyyaml
safetensors
torch
tqdm
transformers
];
pythonImportsCheck = [ "peft" ];
nativeCheckInputs = [
datasets
diffusers
parameterized
pytest-cov-stub
pytest-xdist
pytestCheckHook
scipy
];
pytestFlagsArray = [ "tests" ];
# These tests fail when MPS devices are detected
disabledTests = lib.optional stdenv.isDarwin [
"gpu"
];
disabledTestPaths = [
# ValueError: Can't find 'adapter_config.json'
"tests/test_config.py"
# Require internet access to download a dataset
"tests/test_adaption_prompt.py"
"tests/test_auto.py"
"tests/test_boft.py"
"tests/test_cpt.py"
"tests/test_custom_models.py"
"tests/test_decoder_models.py"
"tests/test_encoder_decoder_models.py"
"tests/test_feature_extraction_models.py"
"tests/test_helpers.py"
"tests/test_hub_features.py"
"tests/test_incremental_pca.py"
"tests/test_initialization.py"
"tests/test_mixed.py"
"tests/test_multitask_prompt_tuning.py"
"tests/test_other.py"
"tests/test_other.py"
"tests/test_poly.py"
"tests/test_stablediffusion.py"
"tests/test_trainable_tokens.py"
"tests/test_tuners_utils.py"
"tests/test_vision_models.py"
"tests/test_xlora.py"
];
meta = {
homepage = "https://github.com/huggingface/peft";
description = "State-of-the art parameter-efficient fine tuning";
changelog = "https://github.com/huggingface/peft/releases/tag/v${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ bcdarwin ];
};
}
|