new_ir_blacklist.py 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # copyright (c) 2024 PaddlePaddle Authors. All Rights Reserve.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. NEWIR_BLOCKLIST = [
  15. "FasterRCNN-ResNet34-FPN",
  16. "FasterRCNN-ResNet50",
  17. "FasterRCNN-ResNet50-FPN",
  18. "FasterRCNN-ResNet50-vd-FPN",
  19. "FasterRCNN-ResNet50-vd-SSLDv2-FPN",
  20. "FasterRCNN-ResNet101",
  21. "FasterRCNN-ResNet101-FPN",
  22. "FasterRCNN-ResNeXt101-vd-FPN",
  23. "FasterRCNN-Swin-Tiny-FPN",
  24. "Cascade-FasterRCNN-ResNet50-FPN",
  25. "Cascade-FasterRCNN-ResNet50-vd-SSLDv2-FPN",
  26. "PP-YOLOE_plus_SOD-S",
  27. "PP-YOLOE_plus_SOD-L",
  28. "PP-YOLOE_plus_SOD-largesize-L",
  29. "PP-YOLOE_seg-S",
  30. "MaskRCNN-ResNet50",
  31. "MaskRCNN-ResNet50-FPN",
  32. "MaskRCNN-ResNet50-vd-FPN",
  33. "MaskRCNN-ResNet101-FPN",
  34. "MaskRCNN-ResNet101-vd-FPN",
  35. "MaskRCNN-ResNeXt101-vd-FPN",
  36. "Cascade-MaskRCNN-ResNet50-vd-SSLDv2-FPN",
  37. "Cascade-MaskRCNN-ResNet50-FPN",
  38. "DLinear_ad",
  39. "PatchTST_ad",
  40. "Nonstationary_ad",
  41. ]