Image Classification
volumetric
3D
X-ray_tomography
mozzarella
cheese
food_science
nielsr HF Staff commited on
Commit
4d63873
·
verified ·
1 Parent(s): 9ce97b6

Add pipeline tag and improve model card

Browse files

This PR adds the `image-classification` pipeline tag to the model metadata to improve its discoverability on the Hugging Face Hub. It also refines the model card structure by adding links to the paper, project page, and GitHub repository, along with a brief description of the MozzaVID dataset.

Files changed (1) hide show
  1. README.md +22 -17
README.md CHANGED
@@ -1,42 +1,47 @@
1
  ---
2
- license: mit
3
  datasets:
4
  - PaPieta/MozzaVID_Small
5
  - PaPieta/MozzaVID_Base
6
  - PaPieta/MozzaVID_Large
 
 
7
  tags:
8
- - volumetric
9
- - 3D
10
- - X-ray_tomography
11
- - mozzarella
12
- - cheese
13
- - food_science
14
  ---
15
 
16
- # MozzaVID dataset - evaluated models checkpoints
17
 
18
- Checkpoints of models evaluated on the MozzaVID dataset in the associated article.
19
 
20
- ### [[Paper](https://arxiv.org/abs/2412.04880)] [[Project website](https://papieta.github.io/MozzaVID/)]
21
 
22
- For details on model use, visit our [GitHub](https://github.com/PaPieta/MozzaVID).
 
 
23
 
24
  ## Data
25
 
26
- Hugging Face - WebDataset format:
27
-
28
  * [Small split](https://huggingface.co/datasets/PaPieta/MozzaVID_Small)
29
  * [Base split](https://huggingface.co/datasets/PaPieta/MozzaVID_Base)
30
  * [Large split](https://huggingface.co/datasets/PaPieta/MozzaVID_Large)
31
 
32
- Raw data: [[LINK](https://archive.compute.dtu.dk/files/public/projects/MozzaVID/)].
 
 
33
 
 
34
 
35
  ## Citation
36
 
37
- If you use the dataset or models in your work, please consider citing our publication:
38
 
39
- ```
40
  @misc{pieta2024b,
41
  title={MozzaVID: Mozzarella Volumetric Image Dataset},
42
  author={Pawel Tomasz Pieta and Peter Winkel Rasmussen and Anders Bjorholm Dahl and Jeppe Revall Frisvad and Siavash Arjomand Bigdeli and Carsten Gundlach and Anders Nymark Christensen},
@@ -47,4 +52,4 @@ If you use the dataset or models in your work, please consider citing our public
47
  primaryClass={cs.CV},
48
  url={https://arxiv.org/abs/2412.04880},
49
  }
50
- ```
 
1
  ---
 
2
  datasets:
3
  - PaPieta/MozzaVID_Small
4
  - PaPieta/MozzaVID_Base
5
  - PaPieta/MozzaVID_Large
6
+ license: mit
7
+ pipeline_tag: image-classification
8
  tags:
9
+ - volumetric
10
+ - 3D
11
+ - X-ray_tomography
12
+ - mozzarella
13
+ - cheese
14
+ - food_science
15
  ---
16
 
17
+ # MozzaVID: Mozzarella Volumetric Image Dataset
18
 
19
+ This repository contains model checkpoints evaluated on the **MozzaVID** dataset, as presented in the paper "[MozzaVID: Mozzarella Volumetric Image Dataset](https://huggingface.co/papers/2412.04880)".
20
 
21
+ MozzaVID is a large, clean, and versatile volumetric classification dataset containing X-ray computed tomography (CT) images of mozzarella microstructure. It enables the classification of 25 cheese types and 149 cheese samples across three different resolutions.
22
 
23
+ - **Paper:** [arXiv:2412.04880](https://arxiv.org/abs/2412.04880)
24
+ - **Project Website:** [MozzaVID Project Page](https://papieta.github.io/MozzaVID/)
25
+ - **Repository:** [GitHub - PaPieta/MozzaVID](https://github.com/PaPieta/MozzaVID)
26
 
27
  ## Data
28
 
29
+ The dataset is available on Hugging Face in WebDataset format:
 
30
  * [Small split](https://huggingface.co/datasets/PaPieta/MozzaVID_Small)
31
  * [Base split](https://huggingface.co/datasets/PaPieta/MozzaVID_Base)
32
  * [Large split](https://huggingface.co/datasets/PaPieta/MozzaVID_Large)
33
 
34
+ Raw data can also be accessed via the [DTU archive](https://archive.compute.dtu.dk/files/public/projects/MozzaVID/).
35
+
36
+ ## Usage
37
 
38
+ For details on model training and evaluation, please visit the [official GitHub repository](https://github.com/PaPieta/MozzaVID). The repository provides scripts such as `evaluate_model.py` and `train_model.py` to work with these checkpoints.
39
 
40
  ## Citation
41
 
42
+ If you use the dataset or models in your work, please consider citing the following publication:
43
 
44
+ ```bibtex
45
  @misc{pieta2024b,
46
  title={MozzaVID: Mozzarella Volumetric Image Dataset},
47
  author={Pawel Tomasz Pieta and Peter Winkel Rasmussen and Anders Bjorholm Dahl and Jeppe Revall Frisvad and Siavash Arjomand Bigdeli and Carsten Gundlach and Anders Nymark Christensen},
 
52
  primaryClass={cs.CV},
53
  url={https://arxiv.org/abs/2412.04880},
54
  }
55
+ ```