-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
request for README of pytorch-ssd-mmd-coral #6
Comments
As for the "Connection refused" error, install and run wisdom server in parallel, or comment lines that start it. Not sure about the latter, are you sure you downloaded our gt files and provided paths to them? |
Yep, I just downloaded the gt files mentioned in this page and modified the corresponding path in the source code. I used the images extracted from The latter problem was actually caused by dimension mismatch. Sometimes a
|
BTW, according to this page, I found the "Connection refued" error can be solved by setting |
The whole code is written in a very sloppy way. I recommend to use TorchCV directly, which is what this project is based on anyway. Plus at least the implementation of Self-Ensemble is wrong (not that it would work for this task). I did not check the implementations of the other baselines, as I don't have a good understanding of them. |
@heinzermch yep, I suspected that self-assembling code was probably wrong logically, but I would appreciate if you could point me more specifically towards what exactly is wrong with this implementation. As for the quality of code in the repo, it is pretty much torchcv SSD example with data readers for this specific dataset and somewhat different run logic since you have to train supervisely on source, unsupervisely on target, and eval on different splits of both. Pull requests are welcome :) |
@chrisliu54 hi, did you solve this error? |
After I turned to use official repo of TorchCV, some weird errors has gone since then : ) |
Hi, I run the
examples/ssd/train_visda.py
script after figure out the directory(using visda18 dataset), and I came across several errors as follows:After I run next time(without any change), I got the following error message:
When debugging, I found tensor operation buggy in the following code:
visda-2018-public/detection/pytorch-ssd-mmd-coral/torchcv/transforms/random_flip.py
Lines 24 to 25 in 1ef7600
Specifically, when tensor pass throught the line above, the actual dimension is of 1d, not 2d.
I'm still puzzled about the dataset folder configuration. Hope the README file of the code coming out soon : )
The text was updated successfully, but these errors were encountered: