DaddyWesker

Results 25 issues of DaddyWesker

Hello. This line (№123) qas.append(QA(info['qa_id'], image_map[info['image_id']], info['question'], info['answer'], qos, aos)) But there are no "qa_id" and "image_id" in info. There are "id" and "image" instead so it should be qas.append(QA(info['id'],...

Hello everyone. Following installation guide for windows, i'm trying to "make" folder lib. And here is what i'm getting python setup.py build_ext --inplace Traceback (most recent call last): File "setup.py",...

Hello.In torch.pruning/dependency.py there is a line `model.eval().cpu()` . With this i cant use model RAFT (optical flow model) which i'm currently researching (it fails on ``` raise RuntimeError("module must have...

Hello. Does anyone tried to launch this hdl_graph_slam on other data than in examples and other than kitti? I've downloaded [NCLT](http://robots.engin.umich.edu/nclt/index.html#documentation) dataset (part of it). And transformed velodyne points to...

Hello! Is there is any way to evaluate tracking accuracy? Haven't found it yet. Maybe i'm just looking the wrong place.

Hello and thanks for your code. I've been trying to run some examples on your code for a while and got some strange results with imu example. I've been using...

Hello and thanks for sharing your code. I've got a problem. I've launched train.py --demo on your plane picture and it works fine, but i've tried to use my own...

Hello and thanks for your code. I've been trying to launch your example of avatar rendering using pretrained model `python main.py --target_txt 'a 3d rendering of a strong man in...

Hello. Thanks for your code. Do you have a pretrained model for your experiment? I thought it could be mentioned in **Testing** here `Download optimized parameters at this url, extract...

Hello, If i've got your model right, it takes 3 images - I1, I2, I3 and gives flow between I2 and I3 (and backward, I3 -> I2). So, question is....