We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44c8f96 commit 9b7385cCopy full SHA for 9b7385c
1 file changed
computer_vision/vision_transformer_demo.py
@@ -176,6 +176,14 @@ def main() -> None:
176
Main function demonstrating Vision Transformer usage.
177
178
Downloads a sample image and performs classification.
179
+
180
+ Examples:
181
+ >>> # Verify main is callable
182
+ >>> callable(main)
183
+ True
184
+ >>> # Verify main returns None
185
+ >>> main() is None # doctest: +SKIP
186
187
"""
188
print("Vision Transformer (ViT) Image Classification Demo")
189
print("=" * 60)
0 commit comments