chainer-segnet icon indicating copy to clipboard operation
chainer-segnet copied to clipboard

SegNet implementation & experiments in Chainer

Results 2 chainer-segnet issues
Sort by recently updated
recently updated
newest added

In the source, class weights are used as below. def get_model( model_file, model_name, loss_file, loss_name, class_weight, n_encdec, n_classes, in_channel, n_mid, train_depth=None, result_dir=None): model = imp.load_source(model_name, model_file) model = getattr(model, model_name)...

Hi SegNet maintainer, Very great repo for SegNet implementation of Chainer. We'd like to reproduce the results but the program is hanging and we also see several strange behaviors. Does...