[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#59607] [PATCH 6/8] gnu: Add python-facexlib.
From: |
Liliana Marie Prikler |
Subject: |
[bug#59607] [PATCH 6/8] gnu: Add python-facexlib. |
Date: |
Fri, 25 Nov 2022 23:31:24 +0100 |
* gnu/packages/machine-learning.scm (python-facexlib): New variable.
---
gnu/packages/machine-learning.scm | 43 +++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/gnu/packages/machine-learning.scm
b/gnu/packages/machine-learning.scm
index a5767a2c31..6116834578 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -816,6 +816,49 @@ (define-public python-basicsr
artifacts.")
(license license:asl2.0)))
+(define-public python-facexlib
+ (package
+ (name "python-facexlib")
+ (version "0.2.5")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "facexlib" version))
+ (modules '((guix build utils)))
+ (snippet
+ #~(begin (substitute* (find-files "." "\\.py$")
+ (("\\.cuda\\(\\)") "")
+ (("'cuda' if .* else ") "")
+ (("'cuda'") "'cpu'"))))
+ (sha256
+ (base32
+ "1r378mb167k2hynrn1wsi78xbh2aw6x68i8f70nmcqsxxp20rqii"))))
+ (build-system python-build-system)
+ (arguments
+ (list #:tests? #f ; No tests
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'fix-requirements
+ (lambda _
+ (substitute* "requirements.txt"
+ (("opencv-python") ""))))))) ; installed without egg-info
+ (propagated-inputs (list opencv
+ python-filterpy
+ python-numba
+ python-numpy
+ python-pillow
+ python-scipy
+ python-pytorch
+ python-torchvision
+ python-tqdm))
+ (native-inputs (list python-cython))
+ (home-page "https://github.com/xinntao/facexlib")
+ (synopsis "Basic face library")
+ (description "This package provides a collection of face-related
+functions, such as detection, alignment, recognition or tracking.")
+ (license (list license:gpl3+
+ license:asl2.0
+ license:expat))))
+
(define-public ncnn
(package
(name "ncnn")
--
2.38.1
- [bug#59607] [PATCH 0/8] Upscale your anime pictures, now with 99% less malware, Liliana Marie Prikler, 2022/11/26
- [bug#59607] [PATCH 1/8] gnu: Add ncnn., Liliana Marie Prikler, 2022/11/26
- [bug#59607] [PATCH 7/8] gnu: Add python-gfpgan., Liliana Marie Prikler, 2022/11/26
- [bug#59607] [PATCH 8/8] gnu: Add python-real-esrgan., Liliana Marie Prikler, 2022/11/26
- [bug#59607] [PATCH 5/8] gnu: Add python-filterpy., Liliana Marie Prikler, 2022/11/26
- [bug#59607] [PATCH 4/8] gnu: Add python-basicsr., Liliana Marie Prikler, 2022/11/26
- [bug#59607] [PATCH 6/8] gnu: Add python-facexlib.,
Liliana Marie Prikler <=
- [bug#59607] [PATCH 2/8] gnu: Add real-esrgan-ncnn., Liliana Marie Prikler, 2022/11/26
- [bug#59607] [PATCH 3/8] gnu: Add python-addict., Liliana Marie Prikler, 2022/11/26