Skip to content
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

Add ChatGPT #2341

Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
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
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ core = [
"open-clip-torch>=2.23.0,<2.26.1",
]
openvino = ["openvino>=2024.0", "nncf>=2.10.0", "onnx>=1.16.0"]
vlm = ["ollama", "openai", "transformers"]
loggers = [
"comet-ml>=3.31.7",
"gradio>=4",
Expand Down Expand Up @@ -84,7 +85,7 @@ test = [
"coverage[toml]",
"tox",
]
full = ["anomalib[core,openvino,loggers,notebooks]"]
full = ["anomalib[core,openvino,loggers,notebooks, vlm]"]
dev = ["anomalib[full,docs,test]"]

[project.scripts]
Expand Down
6 changes: 2 additions & 4 deletions src/anomalib/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,13 @@
Ganomaly,
Llava,
Llavanext,
Llm,
Llmollama,
Padim,
Patchcore,
ReverseDistillation,
Rkde,
Stfpm,
Uflow,
VlmAd,
WinClip,
)
from .video import AiVad
Expand Down Expand Up @@ -62,9 +61,8 @@ class UnknownModelError(ModuleNotFoundError):
"Stfpm",
"Uflow",
"AiVad",
"VlmAd",
"WinClip",
"Llm",
"Llmollama",
"Llava",
"Llavanext",
]
Expand Down
6 changes: 2 additions & 4 deletions src/anomalib/models/image/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,13 @@
from .ganomaly import Ganomaly
from .llava import Llava
from .llava_next import Llavanext
from .llm import Llm
from .llm_ollama import Llmollama
from .padim import Padim
from .patchcore import Patchcore
from .reverse_distillation import ReverseDistillation
from .rkde import Rkde
from .stfpm import Stfpm
from .uflow import Uflow
from .vlm_ad import VlmAd
from .winclip import WinClip

__all__ = [
Expand All @@ -44,9 +43,8 @@
"Rkde",
"Stfpm",
"Uflow",
"VlmAd",
"WinClip",
"Llm",
"Llmollama",
"Llava",
"Llavanext",
]
8 changes: 0 additions & 8 deletions src/anomalib/models/image/llm/__init__.py

This file was deleted.

Loading
Loading