Skip to content

Commit c02453d

Browse files
authored
added-missing-div-tag (#2185)
1 parent d3b2abd commit c02453d

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

examples/vision/ipynb/mobilevit.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"\n",
1111
"**Author:** [Sayak Paul](https://twitter.com/RisingSayak)<br>\n",
1212
"**Date created:** 2021/10/20<br>\n",
13-
"**Last modified:** 2024/02/11<br>\n",
13+
"**Last modified:** 2025/09/30<br>\n",
1414
"**Description:** MobileViT for image classification with combined benefits of convolutions and Transformers."
1515
]
1616
},

examples/vision/md/mobilevit.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**Author:** [Sayak Paul](https://twitter.com/RisingSayak)<br>
44
**Date created:** 2021/10/20<br>
5-
**Last modified:** 2024/02/11<br>
5+
**Last modified:** 2025/09/30<br>
66
**Description:** MobileViT for image classification with combined benefits of convolutions and Transformers.
77

88

@@ -727,6 +727,7 @@ print(f"Number of validation examples: {num_val}")
727727
train_dataset = prepare_dataset(train_dataset, is_training=True)
728728
val_dataset = prepare_dataset(val_dataset, is_training=False)
729729
```
730+
</div>
730731

731732
<div class="k-default-codeblock">
732733
```

examples/vision/mobilevit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Title: MobileViT: A mobile-friendly Transformer-based model for image classification
33
Author: [Sayak Paul](https://twitter.com/RisingSayak)
44
Date created: 2021/10/20
5-
Last modified: 2024/02/11
5+
Last modified: 2025/09/30
66
Description: MobileViT for image classification with combined benefits of convolutions and Transformers.
77
Accelerator: GPU
88
"""

0 commit comments

Comments
 (0)