Coder Social home page Coder Social logo

udat's Issues

Why the 'DDP' mode cannot work on this framework

Hi, I try to train UDAT with 4 2080 Ti. However, dp mode causes uneven distribution of GPU memory. For example, only the main GPU occupies 11G, while the remaining three occupy only 6G on average. I change it to DDP mode but it doesn't work. Would you have any ideas?

Besides, I find several bugs.

  1. in the train.py, when calculating the summation of discriminator output, the numpy function cannot operate on tensors with grad.
    i.e., train.py line 257-258, 285-286, 297-298
D_out_z = np.sum([Disc(F.softmax(_zf_up_t, dim=1)) for _zf_up_t in zf_up_t])/3.0
D_out_x = np.sum([Disc(F.softmax(_xf_up_t, dim=1)) for _xf_up_t in xf_up_t])/3.0

I think it should be

D_out_z = torch.stack([Disc(F.softmax(_zf_up_t, dim=1)) for _zf_up_t in zf_up_t]).sum(0) / 3.
D_out_x = torch.stack([Disc(F.softmax(_xf_up_t, dim=1)) for _xf_up_t in xf_up_t]).sum(0) / 3.
  1. in the eval.py, the line 67 elif 'NAT' in args.dataset: should be elif 'NAT' == args.dataset:. Otherwise, the results of NAT_L would also go into this branch.

About the implementation details of Figure 4 in the paper

Hi,I have some questions about this paper.
Figure 4 in the paper reports the t-SNE results of the features before and after the Bridging layer. I want to know whether the t-SNE input here is the feature of the domain transformer discriminator or the original feature directly output by the Bridging layer. If so, does the feature output by the Feature extractor before the Bridging layer need to train an additional domain discriminator.
Thank you!
image

Training Strategy

Hello, I am interesting in the training strategy of your paper. Why you choose an alternatively training strategy to optimize G and D? It seems to be straightforward to train end-to-end, since you use a RevGrad layer.

关于图9绘制

作者,您好!
我想请教一下,论文中图9如何绘制

About val dataset and the result of two baselines

Hi. I have two questions:

  1. It seems that there is no val dataset in NAT, so do you directly use the model saved in the last epoch to test?
  2. Since the train set of NAT does not have labels and the two baselines(SiamCAR & SiamBAN) are supervised methods, I wonder whether the results of two baselines used to compare with UDAT are only trained on GOT-10K and VID.

question about transformer bridging layer

Hello, I'm very interested in your research. Because the datasets are too large, it is not easy to run through the code. I want to know the size of the feature extractor when it is passed into the transformer bridging layer. Does the feature size change after feature alignment?

训练出来的模型

您好,感谢你的工作成果。请问训练出来的有两个模型,checkpoint.pth和d_checkpoint.pth,请问测试的时候是用哪个模型?d_checkpoint的作用是什么?谢谢!

难以复现您的结果

尝试复现您的结果,但未能得到满意的效果,不知是否是复现步骤的问题,如果可以的话,请提供详细的复现步骤。

The code of t-SNE in Figure 4

Dear author, thank you very much for your work.
I wonder if the t-SNE code used in Figure 4 will be made public?
This visualization method is very interesting!
Thanks in advance!

t-SNE for Unsupervised Domain Adaptation for Nighttime Aerial Tracking

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.