Christian Bartz

Results 316 comments of Christian Bartz

I told you to delete the `loss_weights`, this will fix your problem, but it still won't help you that much. I ask again, did you have a look at the...

First, you will need to change the network definition and the way predictions are made ([1](https://github.com/Bartzi/see/blob/master/chainer/models/fsns.py), [2](https://github.com/Bartzi/see/blob/master/chainer/models/fsns_resnet.py)). You will also need to change the way metrics/loss are calculated ([1](https://github.com/Bartzi/see/blob/master/chainer/metrics/loss_metrics.py), [2](https://github.com/Bartzi/see/blob/master/chainer/metrics/softmax_metrics.py))....

Sounds good so far :sweat_smile:. You could have a look at all the bbox plotters [here](https://github.com/Bartzi/see/tree/master/chainer/insights), you will see that all special classes inherit from the class `BBOXPlotter`. A good...

Are you using your own dataset?

Hmm, difficult to say. As you can see from the error message, it seems that some variable is `None` although it shouldn't be (`Exception in main training loop: Unsupported type...

`lr` denotes the learning rate, that is correct. `min_delta` is used by the curriculum and is used to determine whether a curriculum step is to be performed. The weird output...

Yes it is not problem to get those images: The `Variable` that is used to create those visualizations is called `vis_anchor`(https://github.com/Bartzi/see/blob/master/chainer/models/svhn.py#L52). Visual Backprop is performed by the BBoxPlotter (https://github.com/Bartzi/see/blob/master/chainer/insights/bbox_plotter.py#L126). The...

Do you want to download the SVHN datasets? If so you can find them [here](https://bartzi.de/documents/attachment/download?hash_value=8f85bb4379f0974952a826dac2baf6a7_10). If not, which dataset are you trying to find?

We created two different datasets: 1. `easy` contains all images in a predefined grid (figure 5 left in the paper) 2. `centered` contains images where the SVHN numbers are placed...

Oh, I may have stated that wrongly: you do not have to add this to the `png` files. You have to add this metadata as the first row of the...