"examples/vscode:/vscode.git/clone" did not exist on "c41d9f2bea31f5e926f75e0c26e8e69e0994689f"
Unverified Commit 29b01cd0 authored by Sun Jiahao's avatar Sun Jiahao Committed by GitHub
Browse files

[Docs] Add link of pretrained FCOS3d in TPVFormer (#2535)

parent 3365d7e5
......@@ -24,7 +24,7 @@ We implement TPVFormer and provide the results and checkpoints on nuScenes datas
In MMDetection3D's root directory, run the following command to train the model:
1. Downloads the [pretrained backbone weights](<>) to checkpoints/
1. Downloads the [pretrained backbone weights](https://download.openmmlab.com/mmdetection3d/v1.1.0_models/tpvformer/tpvformer_8xb1-2x_nus-seg/tpvformer_pretrained_fcos3d_r101_dcn.pth) to checkpoints/
2. For example, to train TPVFormer on 8 GPUs, please use
......
......@@ -258,7 +258,7 @@ model = dict(
stage_with_dcn=(False, False, True, True),
init_cfg=dict(
type='Pretrained',
checkpoint='checkpoints/tpvformer_r101_dcn_fcos3d_pretrain.pth',
checkpoint='checkpoints/tpvformer_pretrained_fcos3d_r101_dcn.pth',
prefix='backbone.')),
neck=dict(
type='mmdet.FPN',
......@@ -270,7 +270,7 @@ model = dict(
relu_before_extra_convs=True,
init_cfg=dict(
type='Pretrained',
checkpoint='checkpoints/tpvformer_r101_dcn_fcos3d_pretrain.pth',
checkpoint='checkpoints/tpvformer_pretrained_fcos3d_r101_dcn.pth',
prefix='neck.')),
encoder=dict(
type='TPVFormerEncoder',
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment