fcf9813198d63169d0e93c1086746645e9432218,ilastik/applets/dataSelection/datasetInfoEditorWidget.py,DatasetInfoEditorWidget,accept,#DatasetInfoEditorWidget#,262

Before Change


            else:
                location = DatasetInfo.Location.FileSystem
                if newStorageLocation == StorageLocation.RelativeLink:
                    filePath = Path(filePath).absolute().relative_to(self.projectFileDir).as_posix()
                else:
                    filePath = Path(filePath).absolute().as_posix()

            edited_info = info.modified_with(

After Change


        self.edited_infos = []
        for info in self.current_infos:
            location = info.location if new_location is None else new_location
            new_full_paths = [Path(ep) / internal_path for ep in info.external_paths]
            filepath = os.path.pathsep.join(str(path) for path in new_full_paths)

            edited_info = DatasetInfo(
                filepath=filepath,
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: ilastik/ilastik
Commit Name: fcf9813198d63169d0e93c1086746645e9432218
Time: 2019-07-19
Author: tomaz.vieira@embl.de
File Name: ilastik/applets/dataSelection/datasetInfoEditorWidget.py
Class Name: DatasetInfoEditorWidget
Method Name: accept


Project Name: deepmipt/DeepPavlov
Commit Name: f7062eca7c924ee2a58d1255a4efb06b31b63110
Time: 2017-12-26
Author: ol.gure@gmail.com
File Name: deeppavlov/models/intent_recognition/intent_keras/intent_model.py
Class Name: KerasIntentModel
Method Name: save


Project Name: deepmipt/DeepPavlov
Commit Name: d86f0ef86868899b112ac61e598a3333fac66ad2
Time: 2018-01-24
Author: arkhipov@yahoo.com
File Name: deeppavlov/core/models/tf_model.py
Class Name: TFModel
Method Name: save