Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

#18534 Create .dockerignore

Merged
Glenn Jocher merged 1 commits into Ultralytics:main from ultralytics:dockerignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  1. # Ultralytics YOLO ๐Ÿš€, AGPL-3.0 license
  2. from .ai_gym import AIGym
  3. from .analytics import Analytics
  4. from .distance_calculation import DistanceCalculation
  5. from .heatmap import Heatmap
  6. from .object_counter import ObjectCounter
  7. from .parking_management import ParkingManagement, ParkingPtsSelection
  8. from .queue_management import QueueManager
  9. from .region_counter import RegionCounter
  10. from .security_alarm import SecurityAlarm
  11. from .speed_estimation import SpeedEstimator
  12. from .streamlit_inference import Inference
  13. from .trackzone import TrackZone
  14. __all__ = (
  15. "AIGym",
  16. "DistanceCalculation",
  17. "Heatmap",
  18. "ObjectCounter",
  19. "ParkingManagement",
  20. "ParkingPtsSelection",
  21. "QueueManager",
  22. "SpeedEstimator",
  23. "Analytics",
  24. "Inference",
  25. "RegionCounter",
  26. "TrackZone",
  27. "SecurityAlarm",
  28. )
Discard
Tip!

Press p or to see the previous file or, n or to see the next file