1ef3ad90a3423ed15ca41e0ea4e81012ebe84a9f,catalyst/data/scripts/project_embeddings.py,,main,#Any#Any#,88

Before Change


        img_data = np.stack(
            [load_image(name, args.img_size) for name in image_names], axis=0
        )
        img_data = (
            img_data.transpose((0, 3, 1, 2)) / 255.0  // noqa: WPS432
        ).astype(np.float32)
        img_data = torch.from_numpy(img_data)
    else:
        img_data = None

    summary_writer = SummaryWriter(args.out_dir)

After Change


    if args.num_rows is not None:
        indices = np.random.choice(len(df), args.num_rows)
        features = features[indices, :]
        df = df.iloc[indices]

    if args.img_col is not None:
        img_data = _load_image_data(
            rootpath=args.img_rootpath, paths=df[args.img_col].values
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 6

Instances


Project Name: catalyst-team/catalyst
Commit Name: 1ef3ad90a3423ed15ca41e0ea4e81012ebe84a9f
Time: 2020-08-11
Author: scitator@gmail.com
File Name: catalyst/data/scripts/project_embeddings.py
Class Name:
Method Name: main


Project Name: tsurumeso/waifu2x-chainer
Commit Name: ea3d444d36853e38c0361d5091aa3b3f1aef5e0a
Time: 2017-01-01
Author: nstm101339@gmail.com
File Name: lib/pairwise_transform.py
Class Name:
Method Name: pairwise_transform


Project Name: chainer/chainercv
Commit Name: 7bc13739e7cd4e6962873269ef8cd16358e61e58
Time: 2018-06-19
Author: shingogo@hotmail.co.jp
File Name: chainercv/experimental/links/model/fcis/utils/proposal_target_creator.py
Class Name: ProposalTargetCreator
Method Name: __call__