Skip to content

Commit c73e411

Browse files
πŸ—‘οΈ Remove RKDE (#2455)
* remove rkde Signed-off-by: Ashwin Vaidya <[email protected]> * update changelog Signed-off-by: Ashwin Vaidya <[email protected]> * Remove R-KDE model references and documentation Signed-off-by: Ashwin Vaidya <[email protected]> --------- Signed-off-by: Ashwin Vaidya <[email protected]>
1 parent 00b01b1 commit c73e411

File tree

16 files changed

+6
-613
lines changed

16 files changed

+6
-613
lines changed

β€Ž.github/CODEOWNERSβ€Ž

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
/src/anomalib/models/padim @samet-akcay
4242
/src/anomalib/models/patchcore @djdameln
4343
/src/anomalib/models/reverse_distillation @ashwinvaidya17
44-
/src/anomalib/models/rkde @djdameln
4544
/src/anomalib/models/stfpm @samet-akcay
4645

4746
/src/anomalib/post_processing @ashwinvaidya17 @djdameln

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
1111
- Add `AUPIMO` tutorials notebooks in https://github.com/openvinotoolkit/anomalib/pull/2330 and https://github.com/openvinotoolkit/anomalib/pull/2336
1212
- Add `AUPIMO` metric by [jpcbertoldo](https://github.com/jpcbertoldo) in https://github.com/openvinotoolkit/anomalib/pull/1726 and refactored by [ashwinvaidya17](https://github.com/ashwinvaidya17) in https://github.com/openvinotoolkit/anomalib/pull/2329
1313

14+
### Removed
15+
16+
- Remove `RKDE` in https://github.com/openvinotoolkit/anomalib/pull/2455
17+
1418
### Changed
1519

1620
### Deprecated

β€Žconfigs/README.mdβ€Ž

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ configs/
3232
β”œβ”€β”€ padim.yaml
3333
β”œβ”€β”€ patchcore.yaml
3434
β”œβ”€β”€ reverse_distillation.yaml
35-
β”œβ”€β”€ rkde.yaml
3635
└── stfpm.yaml
3736

3837
```

β€Žconfigs/model/rkde.yamlβ€Ž

Lines changed: 0 additions & 11 deletions
This file was deleted.

β€Ždocs/source/markdown/guides/reference/models/image/index.mdβ€Ž

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,6 @@ Towards Total Recall in Industrial Anomaly Detection
9595
Anomaly Detection via Reverse Distillation from One-Class Embedding.
9696
:::
9797

98-
:::{grid-item-card} {material-regular}`model_training;1.5em` R-KDE
99-
:link: ./rkde
100-
:link-type: doc
101-
102-
Region-Based Kernel Density Estimation (RKDE)
103-
:::
104-
10598
:::{grid-item-card} {material-regular}`model_training;1.5em` STFPM
10699
:link: ./stfpm
107100
:link-type: doc
@@ -141,7 +134,6 @@ WinCLIP: Zero-/Few-Shot Anomaly Classification and Segmentation
141134
./padim
142135
./patchcore
143136
./reverse_distillation
144-
./rkde
145137
./stfpm
146138
./uflow
147139
./winclip

β€Ždocs/source/markdown/guides/reference/models/image/rkde.mdβ€Ž

Lines changed: 0 additions & 25 deletions
This file was deleted.

β€Žsrc/anomalib/models/__init__.pyβ€Ž

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
Padim,
2828
Patchcore,
2929
ReverseDistillation,
30-
Rkde,
3130
Stfpm,
3231
Uflow,
3332
VlmAd,
@@ -55,7 +54,6 @@ class UnknownModelError(ModuleNotFoundError):
5554
"Padim",
5655
"Patchcore",
5756
"ReverseDistillation",
58-
"Rkde",
5957
"Stfpm",
6058
"Uflow",
6159
"VlmAd",

β€Žsrc/anomalib/models/image/__init__.pyβ€Ž

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
from .padim import Padim
1818
from .patchcore import Patchcore
1919
from .reverse_distillation import ReverseDistillation
20-
from .rkde import Rkde
2120
from .stfpm import Stfpm
2221
from .uflow import Uflow
2322
from .vlm_ad import VlmAd
@@ -38,7 +37,6 @@
3837
"Padim",
3938
"Patchcore",
4039
"ReverseDistillation",
41-
"Rkde",
4240
"Stfpm",
4341
"Uflow",
4442
"VlmAd",

β€Žsrc/anomalib/models/image/rkde/README.mdβ€Ž

Lines changed: 0 additions & 45 deletions
This file was deleted.

β€Žsrc/anomalib/models/image/rkde/__init__.pyβ€Ž

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
Β (0)