dbt_fivetran_log icon indicating copy to clipboard operation
dbt_fivetran_log copied to clipboard

[Feature] Support for Fabric

Open itsalljustdata opened this issue 2 years ago • 2 comments

Is there an existing feature request for this?

  • [X] I have searched the existing issues

Describe the Feature

(this may well be a mate to #94)

Can we get support for reading from a Fabric Warehouse? My suspicion is that the SQL Server changes might well do most of the work for us, but with a fabric__ prefix instead

Describe alternatives you've considered

No response

Are you interested in contributing this feature?

  • [X] Yes.
  • [ ] Yes, but I will need assistance and will schedule time during your office hours for guidance.
  • [ ] No.

Anything else?

No response

itsalljustdata avatar Dec 05 '23 00:12 itsalljustdata

vis_results['dist_abs'] is stored when using --denoise in the previous code. The code has been updated to fix this issue when using only --grad_normal.

zhuomanliu avatar Nov 24 '23 15:11 zhuomanliu

thanks for your answer. But it seems that there is another issue I've encountered when I run this code "CUDA_VISIBLE_DEVICES=0 python run_mv.py --config configs/blender.txt --scene lego --eval_only" to evaluate the distance network.

[train] ADE=1.1995 CD=955.4302 CD_median=827.3363 PSNR=nan SSIM=nan LPIPS=nan [test] ADE=1.1883 CD=949.7096 CD_median=835.1572 PSNR=nan SSIM=nan LPIPS=nan

why are the the values of CD, CD_median, PSNR, SSIM and LPIPS so strange, I wonder if it has anything to do with "scene lego"?

WuyiWong avatar Nov 25 '23 01:11 WuyiWong

thanks for your answer. But it seems that there is another issue I've encountered when I run this code "CUDA_VISIBLE_DEVICES=0 python run_mv.py --config configs/blender.txt --scene lego --eval_only" to evaluate the distance network.

[train] ADE=1.1995 CD=955.4302 CD_median=827.3363 PSNR=nan SSIM=nan LPIPS=nan [test] ADE=1.1883 CD=949.7096 CD_median=835.1572 PSNR=nan SSIM=nan LPIPS=nan

why are the the values of CD, CD_median, PSNR, SSIM and LPIPS so strange, I wonder if it has anything to do with "scene lego"?

Have you loaded the pre-trained model during evaluation? The print log should be like this: 'Loading ckpt from: logs/multiview/...' image

zhuomanliu avatar Nov 25 '23 03:11 zhuomanliu

Hi,

Thanks for your patience. It seems like the pretrained model loaded failed in my code, as shown below. image

But I followed you evaluation steps and downloaded the checkpoints from the link you've shared. Is my step wrong?

image image

WuyiWong avatar Nov 25 '23 03:11 WuyiWong

Hi,

Thanks for your patience. It seems like the pretrained model loaded failed in my code, as shown below. image

But I followed you evaluation steps and downloaded the checkpoints from the link you've shared. Is my step wrong?

image image

How about the folder name you downloaded? It should be 'blender-lego_mv20d13w1024rgb0w1.0_lr1e-05bs8192iters80k' for Lego (geometry only). To be more specific, you can run this: "CUDA_VISIBLE_DEVICES=0 python run_mv.py --config configs/blender.txt --scene lego --eval_only --grad_normal --expname mv20d13w1024rgb0w1.0_lr1e-05bs8192iters80k" to make sure the loaded folder name is correct.

zhuomanliu avatar Nov 25 '23 03:11 zhuomanliu

Hi, I've found the issue of my implementation. During adjustment, I've finally loaded the pre-trained model during evaluation. Thank your so much. The print log be like this: 'Loading ckpt from: logs/multiview/...' image

But, there are still some issue in it. the value of PSNR and SSIM is really weird, is it normal? as shown below. image

WuyiWong avatar Nov 25 '23 09:11 WuyiWong

Hi, I've found the issue of my implementation. During adjustment, I've finally loaded the pre-trained model during evaluation. Thank your so much. The print log be like this: 'Loading ckpt from: logs/multiview/...' image

But, there are still some issue in it. the value of PSNR and SSIM is really weird, is it normal? as shown below. image

It is because this is the geometry-only mode (experiment Group 1 in the paper). For geometry+radiance mode (experiment Group 2 in the paper), adding --rgb_layer 2 is required, and then the code will load the checkpoint from the folder "scannet-scene0004_00_mv20d13w1024rgb2w1.0_lr1e-05bs8192iters80k".

zhuomanliu avatar Nov 25 '23 09:11 zhuomanliu

I see, thank you again for your patient explanation.

Best regards.

WuyiWong avatar Nov 25 '23 09:11 WuyiWong