Flux3D.jl is a 3D vision library, written completely in Julia. This package utilizes Flux.jl and Zygote.jl as its building blocks for training 3D vision models and for supporting differentiation. This package also have support of CUDA GPU acceleration with CUDA.jl.The primary motivation for this library is to provide:
Any suggestions, issues and pull requests are most welcome.
This package is stable enough for use in 3D Machine Learning Research. It has been registered. To install the latest release, type the following in the Julia 1.6+ prompt.
julia> ]
(v1.6) pkg> add Flux3D
To install the master branch type the following
julia> ]
(v1.6) pkg> add Flux3D#master
julia> using Flux3D
julia> m = load_trimesh("teapot.obj") |> gpu
TriMesh{Float32, UInt32, CUDA.CuArray} Structure:
Batch size: 1
Max verts: 1202
Max faces: 2256
offset: -1
Storage type: CUDA.CuArray
julia> laplacian_loss(m)
0.05888283f0
julia> compute_verts_normals_packed(m)
3×1202 CUDA.CuArray{Float32,2,Nothing}:
0.00974202 0.00940375 0.0171322 … 0.841262 0.777704 0.812894
-0.999953 -0.999953 -0.999848 -0.508064 -0.607522 -0.557358
6.14616f-6 0.00249814 -0.00317568 -0.184795 -0.161533 -0.168985
julia> new_m = Flux3D.normalize(m)
TriMesh{Float32, UInt32, CUDA.CuArray} Structure:
Batch size: 1
Max verts: 1202
Max faces: 2256
offset: -1
Storage type: CUDA.CuArray
julia> save_trimesh("normalized_teapot.obj", new_m)
If you use this software as a part of your research or teaching, please cite this GitHub repository. For convenience, we have also provided the BibTeX entry in the form of CITATION.bib
file.
@misc{Suthar2020,
author = {Nirmal Suthar, Avik Pal, Dhairya Gandhi},
title = {Flux3D: A Framework for 3D Deep Learning in Julia},
year = {2020},
publisher = {GitHub},
journal = {GitHub repository},
howpublished = {\url{https://github.com/FluxML/Flux3D.jl}},
}