A python package to determine if an Image is an Advertisement
Project description
Detect Advertisement Images
Usage
import requests
from PIL import Image
from adlike import ad_openai_clip_vitl_patch14_336
device = "cuda" if torch.cuda.is_available() else "cpu"
model, preprocess = clip.load("ViT-B/32", device=device)
url = "https://literacyideas.com/wp-content/uploads/2021/08/christmas_advertising.jpg"
image = Image.open(requests.get(url, stream=True).raw)
with torch.no_grad():
image = preprocess(img).to(device).unsqueeze(0)
probs = model(image)
print("Label probs:", probs) # prints: tensor([[0.9753]])
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
adlike-0.0.1.tar.gz
(3.4 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file adlike-0.0.1.tar.gz.
File metadata
- Download URL: adlike-0.0.1.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99740aa50e97e12ff675ba67b6bb98217d98a1307e0d2796251e8290bb0e4113
|
|
| MD5 |
1cac4f5b18489ab9e7645a49f69f2ae8
|
|
| BLAKE2b-256 |
13c4d89201f85610e1fc77ccd386b4be5a7eb02295715abf8d7c4082ba70f03f
|
File details
Details for the file adlike-0.0.1-py3-none-any.whl.
File metadata
- Download URL: adlike-0.0.1-py3-none-any.whl
- Upload date:
- Size: 3.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a557775157d9b928528bd911bd4ccf50d4f9c6ad9fe77e8265f529069defe7fd
|
|
| MD5 |
4847fb0f1c13aaa6c09ebc41b48ede54
|
|
| BLAKE2b-256 |
efe82ba06dc26f66333ef5fb45193dfa4f68b2ea07505f763514596143c474c5
|