A python package to determine if an Image is an Advertisement
Project description
Detect Advertisement Images
Usage
pip install adlike
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 = ad_openai_clip_vitl_patch14_336()
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.5.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.5.tar.gz.
File metadata
- Download URL: adlike-0.0.5.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 |
c6af5e2bb7de2935302d18f377944c56ddfa3994ca3576eb2ef037e63c1e23a0
|
|
| MD5 |
ea3bf24798ad028660bad56af0e88aaf
|
|
| BLAKE2b-256 |
61195045da5aa72ef9930968e1410c5176574bb92bd9ef4ce62d5a1729b16abf
|
File details
Details for the file adlike-0.0.5-py3-none-any.whl.
File metadata
- Download URL: adlike-0.0.5-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 |
d5883ecb7beb5fdffd38baa3d85d2ceb7ffc56b21097f89a09e32e84de04b531
|
|
| MD5 |
5c165a4016f0eeddd3a15f568ef911dc
|
|
| BLAKE2b-256 |
af0a9e3b75ff06ff2ac02e74593a8135bf675b6335073807907ebe0c48f75b6d
|