2df555898e86df488a52a93afd72769606aa0bdc,chainercv/extensions/semantic_segmentation/semantic_segmentation_vis_report.py,SemanticSegmentationVisReport,__call__,#SemanticSegmentationVisReport#Any#,198

Before Change


        )

    def __call__(self, trainer):
        if not _available:
            warnings.warn("scikit-image is not installed on your environment, "
                          "so a function embedding_tensorboard can not be "
                          " used. Please install scikit-image.\n\n"
                          "  $ pip install scikit-image\n")
            return

        for idx in self.indices:
            formated_filename_base = osp.join(trainer.out, self.filename_base)
            out_file = (formated_filename_base +
                        "_idx={}".format(idx) +

After Change


        )

    def __call__(self, trainer):
        if not _check_available():
            return

        for idx in self.indices:
            formated_filename_base = osp.join(trainer.out, self.filename_base)
            out_file = (formated_filename_base +
                        "_idx={}".format(idx) +
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 4

Instances


Project Name: chainer/chainercv
Commit Name: 2df555898e86df488a52a93afd72769606aa0bdc
Time: 2017-03-15
Author: Hakuyume@users.noreply.github.com
File Name: chainercv/extensions/semantic_segmentation/semantic_segmentation_vis_report.py
Class Name: SemanticSegmentationVisReport
Method Name: __call__


Project Name: keras-team/keras
Commit Name: 560cb94519ad5a5eed3adc323a9e1ad3cf0690e9
Time: 2015-06-30
Author: francois.chollet@gmail.com
File Name: keras/callbacks.py
Class Name: EarlyStopping
Method Name: on_epoch_end


Project Name: keras-team/keras
Commit Name: 560cb94519ad5a5eed3adc323a9e1ad3cf0690e9
Time: 2015-06-30
Author: francois.chollet@gmail.com
File Name: keras/callbacks.py
Class Name: ModelCheckpoint
Method Name: on_epoch_end


Project Name: chainer/chainercv
Commit Name: 76b060f625e037d479a2eb25462a3b3f70af5bb7
Time: 2018-05-01
Author: yuyuniitani@gmail.com
File Name: chainercv/links/model/resnet/resnet.py
Class Name: ResNet
Method Name: __init__