remove breakpoint
Browse files
dronescapes_reader/multitask_dataset.py
CHANGED
|
@@ -107,10 +107,7 @@ class MultiTaskDataset(Dataset):
|
|
| 107 |
if self._statistics is not None:
|
| 108 |
for task_name, task in self.name_to_task.items():
|
| 109 |
if not task.is_classification:
|
| 110 |
-
|
| 111 |
-
task.set_normalization(self.normalization[task_name], self._statistics[task_name])
|
| 112 |
-
except:
|
| 113 |
-
breakpoint()
|
| 114 |
|
| 115 |
# Public methods and properties
|
| 116 |
|
|
|
|
| 107 |
if self._statistics is not None:
|
| 108 |
for task_name, task in self.name_to_task.items():
|
| 109 |
if not task.is_classification:
|
| 110 |
+
task.set_normalization(self.normalization[task_name], self._statistics[task_name])
|
|
|
|
|
|
|
|
|
|
| 111 |
|
| 112 |
# Public methods and properties
|
| 113 |
|