Skip to content

Commit f8b0008

Browse files
Merge pull request #12 from renansantosmendes/hotfix/fix-functions-erros
Hotfix/fix functions erros
2 parents d6b86e3 + 4810e54 commit f8b0008

5 files changed

Lines changed: 1437 additions & 2 deletions

File tree

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
"""
2+
Convenience re-exports for deep learning problems utilities.
3+
"""
4+
5+
from ..problems.casting_manufacturing_product import (
6+
CropCircular,
7+
CutOut,
8+
show_examples,
9+
show_normalized,
10+
_get_grad_cam,
11+
grad_cam,
12+
show_grad_cam,
13+
show_predictions_with_gradcam,
14+
inspect_batch,
15+
plot_kernels,
16+
plot_feature_maps,
17+
plot_convergence_curves,
18+
plot_confusion_matrix,
19+
)
20+
21+
__all__ = [
22+
"CropCircular",
23+
"CutOut",
24+
"show_examples",
25+
"show_normalized",
26+
"_get_grad_cam",
27+
"grad_cam",
28+
"show_grad_cam",
29+
"show_predictions_with_gradcam",
30+
"inspect_batch",
31+
"plot_kernels",
32+
"plot_feature_maps",
33+
"plot_convergence_curves",
34+
"plot_confusion_matrix",
35+
]

0 commit comments

Comments
 (0)