Skip to content

Boltz.jl ⚡ DocsPre-built Deep Learning Models in Julia

Accelerate ⚡ your ML research using pre-built Deep Learning Models with Lux

Lux.jl

How to Install Boltz.jl? ​

Its easy to install Boltz.jl. Since Boltz.jl is registered in the Julia General registry, you can simply run the following command in the Julia REPL:

julia
julia> using Pkg
julia> Pkg.add("Boltz")

If you want to use the latest unreleased version of Boltz.jl, you can run the following command: (in most cases the released version will be same as the version on github)

julia
julia> using Pkg
julia> Pkg.add(url="https://github.com/LuxDL/Boltz.jl")

Want GPU Support? ​

Install the following package(s):

julia
using Pkg
Pkg.add("LuxCUDA")
# or
Pkg.add(["CUDA", "cuDNN"])
julia
using Pkg
Pkg.add("AMDGPU")
julia
using Pkg
Pkg.add("Metal")
julia
using Pkg
Pkg.add("oneAPI")