Huang Binxiao
Huang Binxiao
> Hi, we cannot know the bug from the backtrace only. > Could you provide the architecture of your model? For example, `print(model)`. > Some reproducible scripts will be even...
torch 1.7.0 It works. 1. in dataset/cifar100.py replace all the "self.train_data" and "self.test_data" with "self. data" ; "self.train_labels" and "self.test_labels" -> "self.targets" 2. helper/util.py line:55 replace "view(-1)" with "reshape(-1)" More...
LDM: Latent diffusion model -> diffusion occurs at latent representation. ADM: Ablated diffusion model -> diffusion occurs at image level.
[dataset.zip](https://github.com/ChiLiubio/microeco/files/14570272/dataset.zip) Thanks, attached is a part of my data, which has the same error. The dataset is generated with: ` dataset
If "cmake .. -DCMAKE_TOOLCHAIN_FILE=../../vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_BUILD_TYPE=Release" "-DCMAKE_BUILD_TYPE=Release" doesn't work, how to **build a project in release**.
-- Found CUDA: /usr/local/cuda (found version "12.1") -- The CUDA compiler identification is NVIDIA 12.1.66 -- Check for working CUDA compiler: /usr/local/cuda/bin/nvcc -- Check for working CUDA compiler: /usr/local/cuda/bin/nvcc --...
Thanks for your reply. 1. How to build in release mode?? `cmake -DCMAKE_BUILD_TYPE=Release ..` doesn't work. 2. So what should I feed into **RefineMesh**? replace `RefineMesh **scene_mesh.mvs** -m scene_dense_mesh.ply -o...
> > Thanks for your reply. > > > > 1. How to build in release mode?? > > `cmake -DCMAKE_BUILD_TYPE=Release ..` doesn't work. > > 2. So what should...
Thanks for your reply. I have one more question, how to convert the final '.mvs' format (scene_dense_mesh_refine.mvs) into '.ply' format.