Open ionicbond-lzj opened 3 years ago
Hi, thanks for reporting this.
I am not sure what the problem could be. It could be due to differences in data preprocessing or in the training configuration. Could you detail the steps you took for downloading and preprocessing HICO? Also, can you attach the effective configuration (the one above is the input config that gets interpolated and filled up)?
Thanks for your reply. According to the README.md on the data folder, I download the HICO data and quickly test detectron detections. Here is the result, which is similar to that on your paper.
AP | AP50 | AP75 | APs | APm | APl
20.22|34.090|20.757|2.305|11.489|29.699
Then, I preprocessed graphs for training.
python -m xib.preprocessing.hico_det \
--skip-existing \
--confidence-threshold=.3 \
--dataset="hico" \
--nms-threshold=.7 \
--data-dir="./data"
Finally, I run the train.py. And the train_hico.yaml is just what I gave before(Yes, I don't use several yaml files to run the train.py but it works for me).
# bash scripts/train_hico.sh 0
export CUDA_VISIBLE_DEVICES=$1
export PYTHONPATH=~/ws-vrd-master/src
python src/xib/train.py ~/ws-vrd-master/config/train_hico.yaml
Thanks for your reply. According to the README.md on the data folder, I download the HICO data and quickly tested detectron detections. Here is the result, which is similar to that on your paper. AP | AP50 | AP75 | APs | APm | APl 20.22|34.090|20.757|2.305|11.489|29.699
Then, I preprocess graphs for training. python -m xib.preprocessing.hico_det \ --skip-existing \ --confidence-threshold=.3 \ --dataset="hico" \ --nms-threshold=.7 \ --data-dir="./data"
Finally, I run the train.py. And the train_hico.yaml is just what I gave before(Yes, I don't use several yaml files to run the train.py but it works for me).
------------------ 原始邮件 ------------------ 发件人: "Federico Baldassarre"<notifications@github.com>; 发送时间: 2020年12月10日(星期四) 下午5:09 收件人: "baldassarreFe/ws-vrd"<ws-vrd@noreply.github.com>; 抄送: "16级信3黎子建"<183450275@qq.com>; "Author"<author@noreply.github.com>; 主题: Re: [baldassarreFe/ws-vrd] How to reproduce the performence on your paper? (#5)
Hi, thanks for reporting this.
I am not sure what the problem could be. It could be due to differences in data preprocessing or in the training configuration. Could you detail the steps you took for downloading and preprocessing HICO? Also, can you attach the effective configuration (the one above is the input config that gets interpolated and filled up)?
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or unsubscribe.
The following is your email, formatted in markdown for my own sake:
Detecron output:
AP | AP50 | AP75 | APs | APm | APl
20.22|34.090|20.757|2.305|11.489|29.699
Preprocessing
python -m xib.preprocessing.hico_det \
--skip-existing \
--confidence-threshold=.3 \
--dataset="hico" \
--nms-threshold=.7 \
--data-dir="./data"
Content of scripts/train_hico.sh
:
export CUDA_VISIBLE_DEVICES=$1
export PYTHONPATH=~/ws-vrd-master/src
python src/xib/train.py ~/ws-vrd-master/config/train_hico.yaml
Launched as:
scripts/train_hico.sh 1
I will have a look and check what could be going wrong :wink:
Thanks! I am looking forward to your reply!
------------------ 原始邮件 ------------------ 发件人: "Federico Baldassarre"<notifications@github.com>; 发送时间: 2020年12月11日(星期五) 凌晨0:40 收件人: "baldassarreFe/ws-vrd"<ws-vrd@noreply.github.com>; 抄送: "16级信3黎子建"<183450275@qq.com>; "Author"<author@noreply.github.com>; 主题: Re: [baldassarreFe/ws-vrd] How to reproduce the performence on your paper? (#5)
The following is your email, formatted in markdown for my own sake:
Detecron output:
AP | AP50 | AP75 | APs | APm | APl 20.22|34.090|20.757|2.305|11.489|29.699
Preprocessing
python -m xib.preprocessing.hico_det \ --skip-existing \ --confidence-threshold=.3 \ --dataset="hico" \ --nms-threshold=.7 \ --data-dir="./data"
Content of scripts/train_hico.sh:
export CUDA_VISIBLE_DEVICES=$1 export PYTHONPATH=~/ws-vrd-master/src python src/xib/train.py ~/ws-vrd-master/config/train_hico.yaml
Launched as: scripts/train_hico.sh 1
I will have a look and check what could be going wrong 😉
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or unsubscribe.
Thanks for sharing your code! And the YAML file I used is as follows.
However, the result I got is much lower than that on your paper(around 6%). Could you give me more details about configuration? Or could you explain this problem?