Jinguo Liu

Results 100 issues of Jinguo Liu

@JuliaRegistrator register

The minimum fix should be like ```julia using JunctionTrees problem_number = "34" problem_filename = joinpath("Promedus_" * problem_number) problem_dir = joinpath(@__DIR__, "../examples/problems/Promedus/", problem_number) uai_filepath = joinpath(problem_dir, problem_filename * ".uai") uai_evid_filepath =...

The file IO is used in another package. Moving `uai` files and its reading functions to another package will make the dependency smaller. https://github.com/mroavi/TensorInference.jl This design pattern is similar to...

I am reading this documentation page, but I can not reproduce it without model data https://mroavi.github.io/JunctionTrees.jl/stable/usage/ I would be great if the `asia` dataset can be in the examples folder.

I can not find data correspond to the last column of BA table with 2.9e7 measurements ![](https://github.com/JuliaReverse/NiBundleAdjustment.jl/raw/master/benchmarks/adbench.png) Is it already uploaded somewhere?

The julia code in this repo is not type stable, which causes **more than 10x slow down**. Whenever the type is not stable, Julia can not compile efficient code for...

@JuliaRegistrator register

Input data type is Int32 1). compute integer matrix multiplication on Int64: `y = A * B`, 2). compute `y mod p`, if integer overflow (negative number), add `ymax mod...

low priority

I tried to compile the `example/example.tex` on my local host, but got the following error message. ```bash $ latexmk -xelatex example.tex ... kpathsea: Running mktexmf JuliaMono-Regular ! I can't find...

Here I present the correct (but poor) implementation of BP for SVD, this implementation changes the original `svd` interfaces a bit, hoping someone can help improve it. ```julia using LinearAlgebra...