RVT
Implementation of "Recurrent Vision Transformers for Object Detection with Event Cameras". CVPR 2023
파일 탐색기
최종 버전 다운로드 (.zip)- visualization.py
- custom.py
- detection.py
- gradflow.py
- viz_base.py
- base.yaml
- gen1.yaml
- gen4.yaml
- base.yaml
- default.yaml
- small.yaml
- tiny.yaml
- base.yaml
- default.yaml
- small.yaml
- tiny.yaml
- default.yaml
- base.yaml
- rnndet.yaml
- general.yaml
- modifier.py
- train.yaml
- val.yaml
- collate.py
- collate_from_pytorch.py
- dataset_rnd.py
- dataset_streaming.py
- labels.py
- sequence_base.py
- sequence_for_streaming.py
- sequence_rnd.py
- augmentor.py
- representations.py
- spatial.py
- stream_concat_datapipe.py
- stream_sharded_datapipe.py
- types.py
- utils.py
- wandb_logger.py
- __init__.py
- base.py
- maxvit_rnn.py
- __init__.py
- losses.py
- network_blocks.py
- yolo_head.py
- __init__.py
- boxes.py
- compat.py
- __init__.py
- build.py
- detector.py
- yolo_pafpn.py
- __init_.py
- __init__.py
- activations.py
- activations_jit.py
- activations_me.py
- adaptive_avgmax_pool.py
- attention_pool2d.py
- blur_pool.py
- bottleneck_attn.py
- cbam.py
- classifier.py
- cond_conv2d.py
- config.py
- conv2d_same.py
- conv_bn_act.py
- create_act.py
- create_attn.py
- create_conv2d.py
- create_norm.py
- create_norm_act.py
- drop.py
- eca.py
- evo_norm.py
- fast_norm.py
- filter_response_norm.py
- gather_excite.py
- global_context.py
- halo_attn.py
- helpers.py
- inplace_abn.py
- lambda_layer.py
- linear.py
- median_pool.py
- mixed_conv2d.py
- ml_decoder.py
- mlp.py
- non_local_attn.py
- norm.py
- norm_act.py
- padding.py
- patch_embed.py
- pool2d_same.py
- pos_embed.py
- selective_kernel.py
- separable_conv.py
- space_to_depth.py
- split_attn.py
- split_batchnorm.py
- squeeze_excite.py
- std_conv.py
- test_time_pool.py
- trace_utils.py
- weight_init.py
- __init__.py
- maxvit.py
- rnn.py
- genx.py
- detection.py
- fetch.py
- __init__.py
- detection.py
- const_count.yaml
- const_duration.yaml
- mixeddensity_stack.yaml
- stacked_hist.yaml
- filter_gen1.yaml
- filter_gen4.yaml
- preprocess_dataset.py
- README.md
- __init__.py
- box_filtering.py
- box_loading.py
- dat_events_tools.py
- npy_events_tools.py
- psee_loader.py
- __init__.py
- coco_eval.py
- __init__.py
- vis_utils.py
- __init__.py
- evaluation.py
- evaluator.py
- helpers.py
- padding.py
- preprocessing.py
- timers.py
- .gitignore
- LICENSE
- README.md
- requirements.txt
- torch-req.txt
- train.py
- validation.py
# 설치 가이드
1. 코드 내려받기
git clone https://github.com/uzh-rpg/RVT
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd RVT
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. Python
쉬움 추천사전 준비물
conda create -y -n rvt python=3.9 pip
이 명령어를 터미널에 그대로 입력해 실행하세요.
python -m pip install pytorch-lightning==1.8.6 wandb==0.14.0 \
requirements.txt 등에 명시된 파이썬 라이브러리를 설치합니다.
python -m pip install 'git+https://github.com/facebookresearch/detectron2.git'
requirements.txt 등에 명시된 파이썬 라이브러리를 설치합니다.
python -m venv rvt
파이썬 스크립트(또는 모듈)를 실행합니다.
python -m pip install -r torch-req.txt --index-url https://download.pytorch.org/whl/cu118
requirements.txt 등에 명시된 파이썬 라이브러리를 설치합니다.
에러 메시지 없이 실행되고 터미널에 안내 문구가 출력되면 정상입니다.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
// repository documentation
Was this content helpful?
(0 ratings)
