-
Notifications
You must be signed in to change notification settings - Fork 286
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
philippmwirth
committed
Sep 7, 2023
1 parent
9cb9202
commit 4c44677
Showing
14 changed files
with
151 additions
and
206 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
from lightly.utils.benchmarking.benchmark_module import BenchmarkModule | ||
from lightly.utils.benchmarking.knn import knn_predict | ||
from lightly.utils.benchmarking.knn_classifier import KNNClassifier | ||
from lightly.utils.benchmarking.linear_classifier import LinearClassifier | ||
from lightly.utils.benchmarking.metric_callback import MetricCallback | ||
from lightly.utils.benchmarking.online_linear_classifier import OnlineLinearClassifier | ||
from typing import TYPE_CHECKING | ||
|
||
if not TYPE_CHECKING: | ||
from lightly.utils.benchmarking.benchmark_module import BenchmarkModule | ||
from lightly.utils.benchmarking.knn import knn_predict | ||
from lightly.utils.benchmarking.knn_classifier import KNNClassifier | ||
from lightly.utils.benchmarking.linear_classifier import LinearClassifier | ||
from lightly.utils.benchmarking.metric_callback import MetricCallback | ||
from lightly.utils.benchmarking.online_linear_classifier import ( | ||
OnlineLinearClassifier, | ||
) |
Oops, something went wrong.