Downloads · 30 days
0
lucid-dl/xception
xception is a image classification model from lucid-dl. Use it when you need a label for an image. It is set up for lucid. The card lists the license as apache-2.0.
Chollet, 2017 — Xception: Deep Learning with Depthwise Separable Convolutions (arXiv:1610.02357)
Downloads · 30 days
0
Access
Public
Updated May 29, 2026
Repo size
91.7 MB
Likes
0
Public
Click a slice to open those files.
.safetensors91.7 MB · 100%
From the Hugging Face model README
Chollet, 2017 — Xception: Deep Learning with Depthwise Separable Convolutions (arXiv:1610.02357)
Lucid port of timm/legacy_xception.tf_in1k,
converted to Lucid-native safetensors.
| Tag | acc@1 | acc@5 | Params | GFLOPs | Size | Source |
|---|---|---|---|---|---|---|
TF_IN1K (default) | 79.0 | — | 22.9M | — | 87.42 MB | timm |
import lucid.models as models
from lucid.models.weights import XceptionWeights
# default tag
model = models.xception_cls(pretrained=True)
# explicit tag (enum or string)
model = models.xception_cls(weights=XceptionWeights.TF_IN1K)
model = models.xception_cls(pretrained="TF_IN1K")
# preprocessing travels with the weights
weights = XceptionWeights.TF_IN1K
preprocess = weights.transforms()
logits = model(preprocess(image)[None]).logits
Converted from timm/legacy_xception.tf_in1k via
python -m tools.convert_weights xception --tag TF_IN1K.
Key mapping + numerical parity verified against the source.
apache-2.0 — inherited from the original weights.
@inproceedings{chollet2017xception,
title={Xception: Deep Learning with Depthwise Separable Convolutions},
author={Chollet, Fran\c{c}ois},
booktitle={CVPR}, year={2017}
}