Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Llama Index
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
MachineLearning
run-llama
Llama Index
Commits
ead70653
Unverified
Commit
ead70653
authored
11 months ago
by
Chandrashekar V.T
Committed by
GitHub
11 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Added support to load clip model from local file path (#12577)
parent
41763bd3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
llama-index-integrations/embeddings/llama-index-embeddings-clip/llama_index/embeddings/clip/base.py
+3
-1
3 additions, 1 deletion
...index-embeddings-clip/llama_index/embeddings/clip/base.py
with
3 additions
and
1 deletion
llama-index-integrations/embeddings/llama-index-embeddings-clip/llama_index/embeddings/clip/base.py
+
3
−
1
View file @
ead70653
...
@@ -7,6 +7,7 @@ from llama_index.core.constants import DEFAULT_EMBED_BATCH_SIZE
...
@@ -7,6 +7,7 @@ from llama_index.core.constants import DEFAULT_EMBED_BATCH_SIZE
from
llama_index.core.embeddings.multi_modal_base
import
MultiModalEmbedding
from
llama_index.core.embeddings.multi_modal_base
import
MultiModalEmbedding
from
llama_index.core.schema
import
ImageType
from
llama_index.core.schema
import
ImageType
from
PIL
import
Image
from
PIL
import
Image
import
os
logger
=
logging
.
getLogger
(
__name__
)
logger
=
logging
.
getLogger
(
__name__
)
...
@@ -86,7 +87,8 @@ class ClipEmbedding(MultiModalEmbedding):
...
@@ -86,7 +87,8 @@ class ClipEmbedding(MultiModalEmbedding):
try
:
try
:
self
.
_device
=
"
cuda
"
if
torch
.
cuda
.
is_available
()
else
"
cpu
"
self
.
_device
=
"
cuda
"
if
torch
.
cuda
.
is_available
()
else
"
cpu
"
if
self
.
model_name
not
in
AVAILABLE_CLIP_MODELS
:
is_local_path
=
os
.
path
.
exists
(
self
.
model_name
)
if
not
is_local_path
and
self
.
model_name
not
in
AVAILABLE_CLIP_MODELS
:
raise
ValueError
(
raise
ValueError
(
f
"
Model name
{
self
.
model_name
}
is not available in CLIP.
"
f
"
Model name
{
self
.
model_name
}
is not available in CLIP.
"
)
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment