Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/torchvision/datasets/mnist.py b/torchvision/datasets/mnist.py | |
index e87cd46e..bfd59914 100644 | |
--- a/torchvision/datasets/mnist.py | |
+++ b/torchvision/datasets/mnist.py | |
@@ -131,6 +131,11 @@ class MNIST(VisionDataset): | |
def class_to_idx(self) -> Dict[str, int]: | |
return {_class: i for i, _class in enumerate(self.classes)} | |
+ def _check_raw_data_exists(self) -> bool: | |
+ return all([ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/optuna/integration/allennlp.py b/optuna/integration/allennlp.py | |
index 872ed56f..5e8c7d7c 100644 | |
--- a/optuna/integration/allennlp.py | |
+++ b/optuna/integration/allennlp.py | |
@@ -383,7 +383,7 @@ class AllenNLPPruningCallback(TrainerCallback): | |
See `the example <https://github.com/optuna/optuna/blob/master/ | |
examples/allennlp/allennlp_simple.py>`__ | |
- if you want to add a proning callback which observes a metric. | |
+ if you want to add a pruning callback which observes a metric. |
NewerOlder