mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-tflite-runtime.
Add this dummy package for future pypi imports. * gnu/packages/machine-learning.scm (python-tflite-runtime): New variable. Change-Id: Ia9719eb5aabb897c29bef6861f219db664947185 Signed-off-by: Andreas Enge <andreas@enge.fr>
This commit is contained in:
parent
a7451a7700
commit
1b11494467
1 changed files with 16 additions and 0 deletions
|
@ -3430,6 +3430,22 @@ learning models. This package provides the \"lite\" variant for mobile
|
||||||
devices.")
|
devices.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public python-tflite-runtime
|
||||||
|
(package
|
||||||
|
(inherit tensorflow-lite)
|
||||||
|
(name "python-tflite-runtime")
|
||||||
|
(source #f)
|
||||||
|
(build-system trivial-build-system)
|
||||||
|
(outputs (list "out"))
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:builder
|
||||||
|
#~(begin
|
||||||
|
(mkdir #$output)
|
||||||
|
(symlink (string-append #$tensorflow-lite:python "/lib")
|
||||||
|
(string-append #$output "/lib")))))
|
||||||
|
(native-inputs '())))
|
||||||
|
|
||||||
(define-public dmlc-core
|
(define-public dmlc-core
|
||||||
(package
|
(package
|
||||||
(name "dmlc-core")
|
(name "dmlc-core")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue