Shortcuts

Note

You are reading the documentation for MMSelfSup 0.x, which will soon be deprecated by the end of 2022. We recommend you upgrade to MMSelfSup 1.0.0rc versions to enjoy fruitful new features and better performance brought by OpenMMLab 2.0. Check out the changelog, code and documentation of MMSelfSup 1.0.0rc for more details.

Source code for mmselfsup.datasets.single_view

# Copyright (c) OpenMMLab. All rights reserved.
import torch
from mmcv.utils import print_log

from .base import BaseDataset
from .builder import DATASETS
from .utils import to_numpy


[docs]@DATASETS.register_module() class SingleViewDataset(BaseDataset): """The dataset outputs one view of an image, containing some other information such as label, idx, etc. Args: data_source (dict): Data source defined in `mmselfsup.datasets.data_sources`. pipeline (list[dict]): A list of dict, where each element represents an operation defined in `mmselfsup.datasets.pipelines`. prefetch (bool, optional): Whether to prefetch data. Defaults to False. """ def __init__(self, data_source, pipeline, prefetch=False): super(SingleViewDataset, self).__init__(data_source, pipeline, prefetch) self.gt_labels = self.data_source.get_gt_labels() def __getitem__(self, idx): label = self.gt_labels[idx] img = self.data_source.get_img(idx) img = self.pipeline(img) if self.prefetch: img = torch.from_numpy(to_numpy(img)) return dict(img=img, label=label, idx=idx)
[docs] def evaluate(self, results, logger=None, topk=(1, 5)): """The evaluation function to output accuracy. Args: results (dict): The key-value pair is the output head name and corresponding prediction values. logger (logging.Logger | str | None, optional): The defined logger to be used. Defaults to None. topk (tuple(int)): The output includes topk accuracy. """ eval_res = {} for name, val in results.items(): val = torch.from_numpy(val) target = torch.LongTensor(self.data_source.get_gt_labels()) assert val.size(0) == target.size(0), ( f'Inconsistent length for results and labels, ' f'{val.size(0)} vs {target.size(0)}') num = val.size(0) _, pred = val.topk(max(topk), dim=1, largest=True, sorted=True) pred = pred.t() correct = pred.eq(target.view(1, -1).expand_as(pred)) # [K, N] for k in topk: correct_k = correct[:k].contiguous().view(-1).float().sum( 0).item() acc = correct_k * 100.0 / num eval_res[f'{name}_top{k}'] = acc if logger is not None and logger != 'silent': print_log(f'{name}_top{k}: {acc:.03f}', logger=logger) return eval_res
Read the Docs v: 0.x
Versions
latest
stable
1.x
dev-1.x
0.x
Downloads
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.