Nicole-M commited on
Commit
c432403
·
verified ·
1 Parent(s): a9b5ba7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -12
README.md CHANGED
@@ -1,20 +1,18 @@
1
  ---
 
2
  tags:
3
  - fastai
 
 
 
 
4
  ---
5
 
6
- # Amazing!
7
 
8
- 🥳 Congratulations on hosting your fastai model on the Hugging Face Hub!
9
-
10
- # Some next steps
11
- 1. Fill out this model card with more information (see the template below and the [documentation here](https://huggingface.co/docs/hub/model-repos))!
12
-
13
- 2. Create a demo in Gradio or Streamlit using 🤗 Spaces ([documentation here](https://huggingface.co/docs/hub/spaces)).
14
-
15
- 3. Join the fastai community on the [Fastai Discord](https://discord.com/invite/YKrxeNn)!
16
-
17
- Greetings fellow fastlearner 🤝! Don't forget to delete this content from your model card.
18
 
19
 
20
  ---
@@ -28,5 +26,24 @@ More information needed
28
  ## Intended uses & limitations
29
  More information needed
30
 
 
 
 
 
 
 
 
31
  ## Training and evaluation data
32
- More information needed
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ base_model: FastVIT
3
  tags:
4
  - fastai
5
+ - image-classification
6
+ - breast cancer
7
+ metrics:
8
+ - accuracy
9
  ---
10
 
 
11
 
12
+ This model is a fine-tuned version of FastViT on the Mammogram V1 dataset.
13
+ It achieves the following results on the evaluation set:
14
+ - Loss: 0.1645
15
+ - Accuracy: 0.9517
 
 
 
 
 
 
16
 
17
 
18
  ---
 
26
  ## Intended uses & limitations
27
  More information needed
28
 
29
+ ### Training hyperparameters
30
+
31
+ The following hyperparameters were used during training:
32
+ - learning_rate: 5e-04
33
+ - train_batch_size: 32
34
+ - eval_batch_size: 32
35
+
36
  ## Training and evaluation data
37
+ | Training Loss | Epoch | Validation Loss | Accuracy |
38
+ |:-------------:|:-----:|:---------------:|:--------:|
39
+ | 0.6094 | 1.0 | 0.6453 | 0.6135 |
40
+ | 0.4967 | 2.0 | 0.4347 | 0.8259 |
41
+ | 0.3796 | 3.0 | 0.3768 | 0.7799 |
42
+ | 0.2927 | 4.0 | 0.3472 | 0.8463 |
43
+ | 0.2822 | 5.0 | 0.1645 | 0.9517 |
44
+
45
+
46
+ ## Framework Versions
47
+ - Pytorch 2.3.1+cu121
48
+ - Datasets 2.21.0
49
+ - FastAi