aurora95

Results 11 comments of aurora95

There are 4 major files. model.py contains model definitions, you can use existing models or you can define your own one. train.py is the training script. Most parameters are set...

Thanks @SCP-173-cool , but what do you mean by class_mode?

@SCP-173-cool I think your dataset already has some ground truth images, where pixel values represent the class of each pixel. You can change nb_classes from 21 to 3 and change...

@SCP-173-cool Ah sorry I just realized that I didn't pass the nb_classes to model defining functions...... I'll fix it. Before that, you need to change the output dimension of the...

@SCP-173-cool Do you mean your labels are in one-hot encoding? If so, you can either change them into sparse style like 0, 1, 2, 3... or change the loss function...

Of course it'll be great if you can help submitting it. But you need to make sure it can support 'th' dim_ordering correctly, which I've never checked. And I guess...

Hmm, a tricky way could be setting momentum to 1 and trainable=False I think... But I don't know if there is better way if you don't change Keras source code.