CoolFace
Modelpublic

Alas-V/ConvNeXt-Food-CLF-75

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
1likes53downloads
Model Card

<!-- METRICS: Macro F1=0.6546, mAP=0.7142, Val Loss=0.0489 -->

<!-- { "modelname": "ConvNeXt-Food-CLF-75", "version": "1.0.0", "author": "Artem V.", "license": "Apache-2.0", "datecreated": "2026-06-12", "framework": "PyTorch 2.5", "task": "multi-label-image-classification", "classescount": 75, "inputsize": "640x640", "outputformat": "ingredient names + probabilities (threshold 0.5)", "modelarchitecture": { "backbone": "ConvNeXt-Tiny (ImageNet-1k pretrained)", "attention": "CBAM (Channel + Spatial)", "pooling": "GeM (learnable p)", "head": "Linear(1024->512)->GELU->Dropout(0.3)->Linear(512->75)", "embeddingsize": 512, "activation": "GELU", "dropoutrate": 0.3 }, "dataset": { "name": "MM-Food-100K", "url": "https://huggingface.co/datasets/Codatta/MM-Food-100K", "cleanedversion": "cleaned subset (75 classes, ~88k images)", "cleaningpipeline": "https://github.com/Alas-V/ConvNeXt-Food-CLF-75/tree/main/datasetpreparation" }, "trainingconfig": { "optimizer": "AdamW", "learningrate": { "head": "1e-4", "backbone": "5e-6" }, "scheduler": "OneCycleLR (early) / CosineAnnealingWarmRestarts (late)", "weightdecay": "1e-4", "batchsize": 10, "lossfunction": "BCEWithLogitsLoss (class-weighted)", "mixupalpha": 0.2, "mixupprobability": 0.5, "mixedprecision": "AMP" }, "metrics": { "macrof1": 0.6546, "map": 0.7142, "valloss": 0.0489 }, "runtimeenvironment": { "hardware": { "gpu": "NVIDIA RTX 2060 (6GB VRAM)", "cpu": "Intel Xeon E5-2660 v3" }, "software": { "os": "CachyOS (Arch-based)", "python": "3.10+", "pytorch": "2.5", "timm": "1.0.9" }, "trainingtime": "~1 hour per epoch" }, "codeartifacts": { "sourcecode": "https://github.com/Alas-V/ConvNeXt-Food-CLF-75", "modelweights": "https://huggingface.co/Alas-V/ConvNeXt-Food-CLF-75", "freedemo": "https://huggingface.co/spaces/Alas-V/ConvNeXt-Food-CLF-75" }, "opensource": true, "fullcodeavailable": true } -->

![GitHub Repo](https://github.com/Alas-V/ConvNeXt-Food-CLF-75) ![License: Apache 2.0](https://opensource.org/licenses/Apache-2.0)

![F1 Macro]() ![mAP]()

![HF Space](https://huggingface.co/spaces/Alas-V/ConvNeXt-Food-CLF-75)

ConvNeXt-Food-CLF-75

Multi‑label food ingredient classifier (75 classes) based on ConvNeXt‑Tiny with CBAM attention and GeM pooling. Trained on a heavily cleaned subset of MM‑Food‑100K. The model serves as a semantic guide for a downstream segmentation pipeline, but can also be used standalone for ingredient recognition.

📊 Key Metrics: Macro F1 = 0.6546 | mAP = 0.7142 | Validation Loss = 0.0489

💡 Full source code, training scripts, and detailed dataset preparation are available in the [GitHub repository](https://github.com/Alas-V/ConvNeXt-Food-CLF-75). This model card focuses on how to use the model. For deeper technical details, see the links throughout or visit the GitHub repo.

Model Description

ConvNeXt-Food-CLF-75 takes an RGB food image and predicts which of 75 ingredients it contains. Each prediction is a multi‑label probability – a dish can contain multiple ingredients simultaneously (e.g., “rice” and “chicken”).

  • Input: RGB image (any size, automatically resized to 640×640 and normalized with ImageNet statistics)
  • Output:
  • A list of ingredient names (default threshold 0.5)
  • Raw probability scores for each of the 75 classes
  • Optional: feature embedding from the penultimate layer (for transfer learning)

Supported Classes (75 ingredients)

almondcheese buttergrapeonionsauce
applechicken duckice creamorangesausage
asparaguschocolatejuicepastaseaweed
avocadocilantro mintkiwipeachshellfish
bananacoffeelambpeanutshrimp
beanscornlemonpearsoup
biscuitcrablettucepeasspring onion
breadcucumbermangopeppersprouts
broccolidatemeatpineapplesteak
cabbageeggmelonpizzastrawberry
cakeeggplantmilkporktea
carrotfishmushroompotatotofu
cashewfrench friesnoodlepumpkintomato
cauliflowergarlicokraricewatermelon
celery stickgingerolivessaladwonton dumplings

Intended Uses

  • Food ingredient classification into 75 categories independently or for downstream systems (calorie estimation, dietary logging, recipe retrieval).
  • Feature extraction: the embedding before the final layer can be fed into a segmentation network to condition mask prediction.
  • Research on multi‑label classification with long‑tail distributions and noisy training data.

Bias, Risks, and Limitations

  • Dataset bias: Trained on a cleaned subset of MM‑Food‑100K. It may underrepresent cuisines not well covered in that dataset.
  • Class imbalance: The smallest classes contain as few as ~100 training images; performance may be lower for those ingredients.
  • Ambiguity: Visually similar dishes (e.g., “apple” vs. “peach”) may be confused.
  • Hallucinations: The model can occasionally predict ingredients that are not visible, especially when cues are subtle or missing.

Recommendations

  • Always use the provided preprocessing pipeline (resize to 640×640, ImageNet normalization).
  • Consider using Test‑Time Augmentation (TTA) for critical applications.
  • Validate predictions against your own data distribution if you plan to deploy the model.

Out‑of‑Scope Use

  • Not intended for medical diagnosis or dietary prescription.
  • Not a zero‑shot classifier – it only covers the 75 classes listed above.

Training Procedure

Full training logs, hyperparameters, and stage‑by‑stage breakdown are in the [GitHub model documentation](https://github.com/Alas-V/ConvNeXt-Food-CLF-75/tree/main/model).

Model Architecture

ComponentDetails
BackboneConvNeXt‑Tiny (pretrained on ImageNet‑1k)
AttentionCBAM (Channel + Spatial)
PoolingGeM (Generalized Mean) with learnable p
HeadLinear(1024 → 512) → GELU → Dropout(0.3) → Linear(512 → 75)
InputRGB image resized to 640×640
OutputMulti‑label logits (binary relevance per ingredient)

Training Configuration

ParameterValue
LossBCEWithLogitsLoss (class weights: background=1, others=30)
OptimizerAdamW (head LR=1e‑4, backbone LR=5e‑6)
SchedulerOneCycleLR (early stages), CosineAnnealingWarmRestarts (later)
Weight decay1e‑4
Batch size10
Input size640×640
MixUpp=0.5, α=0.2
Mixed precisionAMP (torch.amp)

Training Stages

  1. 1.Feature Extraction (28 epochs): Only the classification head is trained, backbone frozen.
  2. 2.Discriminative Fine‑Tuning (8 epochs): Head + stages 2‑3 of backbone unfrozen, lower LR for backbone.
  3. 3.Staged Unfreezing (1 epoch): Head is trained again to adapt to newly unfrozen features.
  4. 4.Final Feature Extraction (5 epochs): Only the classification head is trained at a low LR (5e‑5).

Stage‑by‑Stage Results

StageEpochF1 (macro)mAPVal Loss
Feature Extraction280.35330.50670.0637
Discriminative Fine‑Tuning360.61210.70170.0469
Staged Unfreezing370.64260.70970.0479
Final Feature Extraction400.65460.71420.0489

Evaluation Results (Final Model)

MetricValue
Macro F10.6546
mAP0.7142
Validation loss0.0489

Validation set: 2,000 fixed images, split before training.


Hardware and Training Time

ComponentDetail
GPUNVIDIA RTX 2060 (6 GB VRAM)
CPUIntel Xeon E5‑2660 v3
OSCachyOS (Arch‑based)
Python3.10+
PyTorch2.5
timm1.0.9
Training time≈1 hour per epoch
Batch size10
Mixed precisionAMP

Despite the limited 6 GB VRAM, the model trains comfortably with a batch size of 10 at 640×640 resolution.


Dataset

The model was trained on a cleaned subset of MM‑Food‑100K, a large‑scale food dataset with noisy 4,000+ ingredient labels. A rigorous multi‑step cleaning pipeline reduced the original chaos to 75 balanced classes:

  • Manually curated target class list (103 initial classes).
  • Extracted all matching ingredient names from the dataset.
  • Merged semantically identical ingredients (e.g., “enoki mushrooms” + “shiitake mushrooms” → “mushroom”).
  • Removed irrelevant matches (e.g., “cheesecake” for the “cheese” class).
  • Filtered out classes with fewer than 100 images.
  • Created multi‑hot label vectors and serialized the final dataset.

Result: ~88k images (86.3k train, 2k validation), 75 classes.

🔗 The complete cleaning pipeline with all scripts and documentation is here: `dataset_preparation/` on GitHub


How to Use

👉 [Try it live on Spaces](https://huggingface.co/spaces/Alas-V/ConvNeXt-Food-CLF-75) - no installation required!

Quick inference using the provided script (recommended)

The repository includes a self‑contained inference.py script. First, clone this HF repo or download the files, then:

Linux / MacOS:

bash
git clone https://huggingface.co/Alas-V/ConvNeXt-Food-CLF-75
cd ConvNeXt-Food-CLF-75
python -m venv venv
source venv/bin/activate
pip install -r requirements-inference.txt
python -m model.inference --image path/to/meal.jpg --checkpoint pytorch_model.bin --mode text

for Windows

bash
git clone https://huggingface.co/Alas-V/ConvNeXt-Food-CLF-75
cd ConvNeXt-Food-CLF-75
python -m venv venv
.\venv\Scripts\Activate
pip install -r requirements-inference.txt
python -m model.inference --image path/to/photo.jpg --checkpoint checkpoint.pth.tar
ArgumentDescriptionDefault
--imagePath to an image or a folderrequired
--checkpointPath to the model checkpointrequired
--thresholdConfidence threshold (0.0–1.0)0.5
--modetext prints ingredients, image saves annotated phototext
--output_dirFolder for annotated images (only with --mode image)predictions
--devicecuda or cpucuda if available, else cpu

Qualitative Examples

Correct Predictions

<img src="https://github.com/user-attachments/assets/5e76c336-2790-4028-860d-643dd8dd830b" width="600"> <img src="https://github.com/user-attachments/assets/793c9be7-b35e-46fe-8acb-5774de1849fe" width="600"> <img src="https://github.com/user-attachments/assets/e42850b6-2891-46ac-9a2d-f960a27d3ba4" width="600"> <img src="https://github.com/user-attachments/assets/9361a11e-9267-4747-9ecc-afa0e008b4c2" width="600"> <img src="https://github.com/user-attachments/assets/3dbba780-5a33-4a91-9f33-a46db5e57a75" width="600">

Challenging Cases (Hallucinations / Missing Ingredients)

<img src="https://github.com/user-attachments/assets/693eea71-ac2b-44fc-9f0b-839beaf2aebb" width="600"> <img src="https://github.com/user-attachments/assets/d8a7de56-eaed-4351-8027-4007b4de0f0d" width="600">


🙏 Acknowledgements

MM‑Food‑100K for the original dataset.

timm for the ConvNeXt backbone.

Albumentations for image augmentations.


Citation

If you use this model or the cleaned dataset in your work, please cite it as follows:

bibtex
@misc{alasv2026convnextfoodclf75,
  author       = {Artem V.},
  title        = {ConvNeXt-Food-CLF-75: A Multi-Label Food Ingredient Classifier},
  year         = {2026},
  publisher    = {Hugging Face},
  howpublished = {\url{https://huggingface.co/Alas-V/ConvNeXt-Food-CLF-75}},
  note         = {Model trained on a cleaned subset of MM-Food-100K}
}

📄 License

This project is licensed under the Apache 2.0 License. See the LICENSE file for details.