mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: Add julia-optimisers.
* gnu/packages/julia-xyz.scm (julia-optimisers): New variable.
This commit is contained in:
parent
d303b26aae
commit
ca8be377a2
1 changed files with 27 additions and 0 deletions
|
@ -4083,6 +4083,33 @@ (define-public julia-optim
|
|||
optimization of functions.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-optimisers
|
||||
(package
|
||||
(name "julia-optimisers")
|
||||
(version "0.2.13")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/FluxML/Optimisers.jl")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1xs51r365l6r56rpm08kba00nfcl5jlglwy8494w06vbi22ysbq7"))))
|
||||
(build-system julia-build-system)
|
||||
(propagated-inputs
|
||||
(list julia-chainrulescore
|
||||
julia-functors
|
||||
julia-zygote))
|
||||
(native-inputs
|
||||
(list julia-staticarrays
|
||||
julia-zygote))
|
||||
(home-page "https://github.com/FluxML/Optimisers.jl")
|
||||
(synopsis "Optimisers and utilities for learning loops")
|
||||
(description "@code{Optimisers.jl} defines many standard gradient-based
|
||||
optimisation rules, and tools for applying them to deeply nested models.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-optimtestproblems
|
||||
(package
|
||||
(name "julia-optimtestproblems")
|
||||
|
|
Loading…
Reference in a new issue