summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/machine-learning.scm16
1 files changed, 16 insertions, 0 deletions
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm
index 409427cb3d9..4804e6b5215 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -3430,6 +3430,22 @@ learning models. This package provides the \"lite\" variant for mobile
devices.")
(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
(package
(name "dmlc-core")