Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
UltralyticsAssistant committed Jan 15, 2025
1 parent 1b9f59d commit ae3d05a
Show file tree
Hide file tree
Showing 37 changed files with 0 additions and 37 deletions.
1 change: 0 additions & 1 deletion benchmarks.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""
Run YOLOv3 benchmarks on all supported export formats.
Expand Down
1 change: 0 additions & 1 deletion classify/predict.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""
Run YOLOv3 classification inference on images, videos, directories, globs, YouTube, webcam, streams, etc.
Expand Down
1 change: 0 additions & 1 deletion classify/train.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""
Train a YOLOv3 classifier model on a classification dataset.
Expand Down
1 change: 0 additions & 1 deletion classify/val.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""
Validate a trained YOLOv3 classification model on a classification dataset.
Expand Down
1 change: 0 additions & 1 deletion detect.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""
Run YOLOv3 detection inference on images, videos, directories, globs, YouTube, webcam, streams, etc.
Expand Down
1 change: 0 additions & 1 deletion export.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""
Export a YOLOv3 PyTorch model to other formats. TensorFlow exports authored by https://github.com/zldrobit.
Expand Down
1 change: 0 additions & 1 deletion hubconf.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""
PyTorch Hub models https://pytorch.org/hub/ultralytics_yolov5.
Expand Down
1 change: 0 additions & 1 deletion models/common.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""Common modules."""

import ast
Expand Down
1 change: 0 additions & 1 deletion models/experimental.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""Experimental modules."""

import math
Expand Down
1 change: 0 additions & 1 deletion models/tf.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""
TensorFlow, Keras and TFLite versions of YOLOv3
Authored by https://github.com/zldrobit in PR https://github.com/ultralytics/yolov5/pull/1127.
Expand Down
1 change: 0 additions & 1 deletion models/yolo.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""
YOLO-specific modules.
Expand Down
1 change: 0 additions & 1 deletion segment/predict.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""
Run YOLOv3 segmentation inference on images, videos, directories, streams, etc.
Expand Down
1 change: 0 additions & 1 deletion segment/train.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""
Train a YOLOv3 segment model on a segment dataset Models and datasets download automatically from the latest YOLOv3
release.
Expand Down
1 change: 0 additions & 1 deletion segment/val.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""
Validate a trained YOLOv3 segment model on a segment dataset.
Expand Down
1 change: 0 additions & 1 deletion train.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""
Train a YOLOv3 model on a custom dataset. Models and datasets download automatically from the latest YOLOv3 release.
Expand Down
1 change: 0 additions & 1 deletion utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""utils/initialization."""

import contextlib
Expand Down
1 change: 0 additions & 1 deletion utils/activations.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""Activation functions."""

import torch
Expand Down
1 change: 0 additions & 1 deletion utils/augmentations.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""Image augmentation functions."""

import math
Expand Down
1 change: 0 additions & 1 deletion utils/autoanchor.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""AutoAnchor utils."""

import random
Expand Down
1 change: 0 additions & 1 deletion utils/autobatch.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""Auto-batch utils."""

from copy import deepcopy
Expand Down
1 change: 0 additions & 1 deletion utils/callbacks.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""Callback utils."""

import threading
Expand Down
1 change: 0 additions & 1 deletion utils/dataloaders.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""Dataloaders and dataset utils."""

import contextlib
Expand Down
1 change: 0 additions & 1 deletion utils/downloads.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""Download utils."""

import logging
Expand Down
1 change: 0 additions & 1 deletion utils/flask_rest_api/example_request.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""Perform test request."""

import pprint
Expand Down
1 change: 0 additions & 1 deletion utils/flask_rest_api/restapi.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""Run a Flask REST API exposing one or more YOLOv5s models."""

import argparse
Expand Down
1 change: 0 additions & 1 deletion utils/general.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""General utils."""

import contextlib
Expand Down
1 change: 0 additions & 1 deletion utils/loggers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""Logging utils."""

import os
Expand Down
1 change: 0 additions & 1 deletion utils/loggers/clearml/clearml_utils.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""Main Logger class for ClearML experiment tracking."""

import glob
Expand Down
1 change: 0 additions & 1 deletion utils/loss.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""Loss functions."""

import torch
Expand Down
1 change: 0 additions & 1 deletion utils/metrics.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""Model validation metrics."""

import math
Expand Down
1 change: 0 additions & 1 deletion utils/plots.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""Plotting utils."""

import contextlib
Expand Down
1 change: 0 additions & 1 deletion utils/segment/augmentations.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""Image augmentation functions."""

import math
Expand Down
1 change: 0 additions & 1 deletion utils/segment/dataloaders.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""Dataloaders."""

import os
Expand Down
1 change: 0 additions & 1 deletion utils/segment/metrics.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""Model validation metrics."""

import numpy as np
Expand Down
1 change: 0 additions & 1 deletion utils/torch_utils.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""PyTorch utils."""

import math
Expand Down
1 change: 0 additions & 1 deletion utils/triton.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""Utils to interact with the Triton Inference Server."""

import typing
Expand Down
1 change: 0 additions & 1 deletion val.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Ultralytics πŸš€ AGPL-3.0 License - https://ultralytics.com/license

"""
Validate a trained YOLOv3 detection model on a detection dataset.
Expand Down

0 comments on commit ae3d05a

Please sign in to comment.