Kenneth-Wong

Results 7 comments of Kenneth-Wong

You may have a try: change the original "lstm_cell = tf.contrib.rnn.BasicLSTMCell(lstm_dim, state_is_tuple=True) outputs2_raw, _ = tf.nn.bidirectional_dynamic_rnn(lstm_cell, lstm_cell, outputs1, seq_length, dtype=tf.float32, time_major=True, scope="bidirectional_lstm2")" into “lstm_cell_2 = tf.contrib.rnn.BasicLSTMCell(lstm_dim, state_is_tuple=True) outputs2_raw, _ =...

Oh I see that in `preprocess.py`, you use the `relational_caption.json` as input. It seems that the json file is from the raw VG dataset. However, on the VG website, I...

Hello. I am not coming for this question. I just want to ask what's your MAP after training 160 epochs on PASCAL VOC 20017&2012 trainval set. My MAP is very...

You are right. I modified the codes and reshaped the groundtruth boxes according to the input image shapes. There were not any errors reported and the MAP are improved a...

I think this is because your source prompt and target prompt are almost the same, and the processed results of the tokenizer are so similar to the space-splited ones. For...

+1. "A panda is riding a bicycle in a garden." does not work weel too.

> 不知道具体是什么原因,我在__init.py__加上了from .dataconfig import load_dataset_config后是可以的 加上这个之后还有后面的关于一系列数据集的加载出错,例如ImportError: cannot import name 'ICLDataset' from 'datasets.gradslam_datasets',请问是如何解决呢?