Study: Software(SW)/SW: Error Bug Fix
[Error Fix] Solved "nvcc fatal: Unsupported gpu architecture 'compute_native'" (feat. colmap, cuda architecture)
# Problem When I build COLMAP, I got a below error msg. FAILED: src/colmap/mvs/CMakeFiles/colmap_mvs_cuda.dir/patch_match_cuda.cu.o /usr/bin/nvcc -forward-unknown-to-host-compiler -DBOOST_ALL_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK ... nvcc fatal: Unsupported gpu architecture 'compute_native' # Solution $ nvidia-smi --query-gpu=compute_cap --format=csv compute_cap 7.5 $ cmake .. -GNinja -DCMAKE_CUDA_..
[Error Fix] Solved 'file casper/vmlinuz not found you need to load the kernel first' (feat. remove root partition)
# Problem I'm trying to boot Ubuntu via a USB stick (dual boot with windows) , and the following error is being displayed file casper/vmlinuz not found you need to load the kernel first # Solution When you create a boot disk, you usually boot it using Rufus, but you shouldn't use Rufus. The boot disk was created using the Universal USB Installer (UUI) and installed normally. # Reference [Reddit]..
[Error fix] Solved torch "urllib.error.HTTPError: HTTP Error 403: rate limit exceeded"
# Problem When I execute NVDS repo for video mono depth estimation $ CUDA_VISIBLE_DEVICES=1 python infer_NVDS_midas_bi.py --base_dir ./demo_outputs/dpt_init/ --vnum con2 --infer_w 1920 --infer_h 1080 I got a below Error: urllib.error.HTTPError: HTTP Error 403: rate limit exceeded # Solution This is because we are using GitHub API to check the existence of the repo. I have submitted a PR to ignor..
[Error fix] Solved "The kernel failed to start due to the missing module 'IPython'. Consider installing this module. Click here for more info." (feat. VSCode Jupyter)
# Problem When using a Jupyter notebook file in Visual Studio code with the Jupyter extension I receive the error: The kernel failed to start due to the missing module 'IPython'. Consider installing this module. Click here for more info. # Solution First uninstall all jupyter related modules: (from: https://stackoverflow.com/a/52912244/1516331) python3 -m pip uninstall -y jupyter jupyter_core ju..
[Error Fix] Solved: KeyError: 'I' (feat. Yolact++)
# Problem I'm trying to fine-tune Yolact on 2GPU machine and getting the following error: $ python train.py --config=yolact_plus_base_config --batch_size=2 --save_interval 1000 --save_folder weights/resnet101_construct_0112_fcon3_yolactplus/ ... KeyError: 'I' # Solution I have two pieces of suggestions for this problem: The first method, you can decrease the resolution of discard_mask_area. The ..