Skip to content

Merge main to v2 #2464

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
7556dd8
Update timm requirement from <=1.0.7,>=1.0.7 to >=1.0.7,<=1.0.9 (#2274)
dependabot[bot] Sep 24, 2024
3768bb3
🐞Update `setuptools` requirement for PEP 660 support (#2320)
samet-akcay Sep 25, 2024
983ec58
Fix transforms for draem, dsr and rkde (#2324)
blaz-r Sep 26, 2024
f473df8
Add check before loading metrics data from checkpoint (#2323)
blaz-r Sep 26, 2024
191e21f
Add PIMO (#2329)
ashwinvaidya17 Oct 2, 2024
404e896
Makes batch size dynamic (#2339)
Marcus1506 Oct 3, 2024
2ba5ede
Add pimo tutorial advanced i (fixed) (#2336)
jpcbertoldo Oct 6, 2024
f1c734f
Pimo tutorials/02 advanced ii (#2347)
jpcbertoldo Oct 9, 2024
3acf51a
Create epic.yaml
samet-akcay Oct 14, 2024
71e4824
πŸ”¨ Update the issue templates (#2363)
samet-akcay Oct 14, 2024
e5dd67f
Update task.yaml
samet-akcay Oct 14, 2024
2c2fac1
Create user_story.yaml
samet-akcay Oct 14, 2024
4e13e8a
Update epic.yaml
samet-akcay Oct 15, 2024
71cb136
Pimo tutorials/03 advanced iii (#2348)
jpcbertoldo Oct 15, 2024
b36b780
πŸ”¨ Deprecate try import and replace it with Lightning's package_availa…
samet-akcay Oct 15, 2024
c99f868
Refactor folder3d to avoid complex-structure (C901) issue (#2185)
samet-akcay Oct 16, 2024
0823ab8
πŸš€ Add datumaro annotation dataloader (#2377)
ashwinvaidya17 Oct 17, 2024
1465b05
Pimo tutorials/04 advanced iv (#2352)
jpcbertoldo Oct 17, 2024
6eeb7f6
🐞 Defer OpenVINO import to avoid unnecessary warnings (#2385)
samet-akcay Oct 22, 2024
3a403ae
πŸš€ Add VLM based Anomaly Model (#2344)
ashwinvaidya17 Oct 22, 2024
db4c285
Add ensembling methods for tiling to Anomalib (#1226)
blaz-r Oct 24, 2024
0301d59
πŸ“š Add training from a checkpoint example (#2389)
samet-akcay Oct 24, 2024
c00e101
Export experiment duration in seconds in CSV. (#2392)
mzweilin Oct 24, 2024
31952db
Make single GPU benchmarking 5x more efficient (#2390)
mzweilin Oct 24, 2024
f4f9b9a
🐞 Fix installation package issues (#2395)
samet-akcay Oct 24, 2024
42b3ad5
Export the flattened config in benchmark CSV. (#2391)
mzweilin Oct 25, 2024
7d6b89c
`v1.2.0` Release (#2397)
samet-akcay Oct 31, 2024
6ed0067
Bump Anomalib version to `2.0.0dev` in `main` (#2402)
samet-akcay Oct 31, 2024
bcc0b43
🐞Replace package_available with module_available (#2407)
harimkang Nov 5, 2024
5fa82f4
Merge main and resolve conflicts
samet-akcay Dec 11, 2024
0e6aa90
ignore tiled ensemble for now
samet-akcay Dec 11, 2024
90eb35f
ollama version
samet-akcay Dec 11, 2024
3e9c76d
Exclude tiled ensemble unit tests
samet-akcay Dec 11, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions docs/source/markdown/guides/how_to/pipelines/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,6 @@ This section contains tutorials on how to use different pipelines of Anomalib an
:margin: 1 1 0 0
:gutter: 1

:::{grid-item-card} {octicon}`stack` Tiled Ensemble
:link: ./tiled_ensemble
:link-type: doc

Learn more about how to use the tiled ensemble pipelines.
:::

:::{grid-item-card} {octicon}`gear` Custom Pipeline
:link: ./custom_pipeline
:link-type: doc
Expand Down
157 changes: 0 additions & 157 deletions docs/source/markdown/guides/how_to/pipelines/tiled_ensemble.md

This file was deleted.

322 changes: 273 additions & 49 deletions notebooks/700_metrics/701b_aupimo_advanced_i.ipynb

Large diffs are not rendered by default.

152 changes: 134 additions & 18 deletions notebooks/700_metrics/701c_aupimo_advanced_ii.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/anomalib/models/components/base/export_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def to_onnx(
dynamic_axes = (
{"input": {0: "batch_size"}, "output": {0: "batch_size"}}
if input_size
else {"input": {0: "batch_size", 2: "height", 3: "width"}, "output": {0: "batch_size"}}
else {"input": {0: "batch_size", 2: "height", 3: "weight"}, "output": {0: "batch_size"}}
)
onnx_path = export_root / "model.onnx"
# apply pass through the model to get the output names
Expand Down
43 changes: 0 additions & 43 deletions tools/tiled_ensemble/ens_config.yaml

This file was deleted.

28 changes: 0 additions & 28 deletions tools/tiled_ensemble/eval.py

This file was deleted.

17 changes: 0 additions & 17 deletions tools/tiled_ensemble/train.py

This file was deleted.