Skip to content

Commit

Permalink
fix: No module named 'tools.data_converter'
Browse files Browse the repository at this point in the history
As reported in fundamentalvision#237
  • Loading branch information
pluveto authored Mar 26, 2024
1 parent 20923e6 commit b41cc67
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tools/create_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,17 @@
# ---------------------------------------------
# Modified by Zhiqi Li
# ---------------------------------------------

import sys
sys.path.append('.')

from data_converter.create_gt_database import create_groundtruth_database
from data_converter import nuscenes_converter as nuscenes_converter
from data_converter import lyft_converter as lyft_converter
from data_converter import kitti_converter as kitti
from data_converter import indoor_converter as indoor
import argparse
from os import path as osp
import sys
sys.path.append('.')


def kitti_data_prep(root_path, info_prefix, version, out_dir):
Expand Down

0 comments on commit b41cc67

Please sign in to comment.