bilylee

Results 23 comments of bilylee

Please update your matplotlib. It requires matplotlib >= 2.0.0

@xxcheng0708 is right. Please check if `Logs/SiamFC/track_model_checkpoints/SiamFC-3s-color-pretrained\model.ckpt-0` exists.

Please make sure all steps before the last step are correctly run.

插值到 272 是为了增大响应图的分辨率。只要 272 响应图和 255 输入的位置对应关系计算正确是可以跟踪的。

working directory 应该是 `C:/Users/pc/zzccode/SiamFC-TensorFlow-master`。 请尝试执行: ``` runfile('C:/Users/pc/zzccode/SiamFC-TensorFlow-master/experiments/SiamFC-3s-color-pretrained.py', wdir='C:/Users/pc/zzccode/SiamFC-TensorFlow-master') ```

Please provide the whole stack trace.

Hi, Thanks for your interest. You can change the base network by following these steps: 1. create the network specification file (e.g. my_embedding.py) mimicking the format of `embeddings/convolutional_alexnet.py` 2. put...

Hi, 1. The `embedding_name` in the configurations currently is just a placeholder for future expansion and doesn't have any effect on the used embedding model. Therefore, you should at least...

0.527 is way below the expectation. It should be 0.55~0.58 in my experience. I evaluated all epochs and reported the best result, which is within the last 30 epochs. How...

Hi, you can check the size of the training data by the following script: ```python import os.path as osp import pickle with open('data/train_imdb.pickle') as f: imdb = pickle.load(f) n_frames =...