blob: 1a2077526e5f20c427514d395272853523974a25 (
plain)
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
|
# Maintainer: Daniel Bershatsky <bepshatsky@yandex.ru>
pkgname=python-trl
_pkgname=${pkgname#python-}
pkgver=0.13.0
pkgrel=2
pkgdesc='Train transformer language models with reinforcement learning'
arch=('any')
url='https://github.com/huggingface/trl'
license=('Apache')
groups=('huggingface')
depends=(
'python-accelerate'
'python-datasets'
'python-rich'
'python-transformers>=4.46.0'
)
makedepends=('python-build' 'python-installer' 'python-setuptools' 'python-wheel')
optdepends=(
'python-bitsandbytes: Quantization support'
'python-deepspeed: Low-level routines for distributed training'
'python-diffusers: Diffusion models'
'python-peft: Parameter efficient fine-tuning'
)
source=(
"python-trl-$pkgver.tar.gz"::"https://github.com/lvwerra/trl/archive/refs/tags/v$pkgver.tar.gz"
)
sha256sums=('4a9e2dbd32d3fd993cf77493cfceec35b9d31dc51d90116b0a225ef4852210c7')
prepare() {
# Avoid packaging tests.
rm -rfv $_pkgname-$pkgver/tests
}
build() {
python -m build -nw $_pkgname-$pkgver
}
check() {
cd $_pkgname-$pkgver
PYTHONPATH=$PWD python -c 'import trl'
}
package() {
python -m installer \
--compile-bytecode 1 \
--destdir $pkgdir \
$srcdir/$_pkgname-$pkgver/dist/$_pkgname-$pkgver-*-*.whl
}
|