Skip to content

Commit

Permalink
Revert "A minor correction in a comment (ultralytics#12782)"
Browse files Browse the repository at this point in the history
This reverts commit b24177b.
  • Loading branch information
kumar-selvakumaran committed Mar 4, 2024
1 parent b2ffe05 commit 4889954
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 7 deletions.
6 changes: 3 additions & 3 deletions export.py
Original file line number Diff line number Diff line change
Expand Up @@ -742,9 +742,9 @@ def pipeline_coreml(model, im, file, names, y, prefix=colorstr("CoreML Pipeline:
model = ct.models.MLModel(pipeline.spec)
model.input_description["image"] = "Input image"
model.input_description["iouThreshold"] = f"(optional) IOU Threshold override (default: {nms.iouThreshold})"
model.input_description["confidenceThreshold"] = (
f"(optional) Confidence Threshold override (default: {nms.confidenceThreshold})"
)
model.input_description[
"confidenceThreshold"
] = f"(optional) Confidence Threshold override (default: {nms.confidenceThreshold})"
model.output_description["confidence"] = 'Boxes × Class confidence (see user-defined metadata "classes")'
model.output_description["coordinates"] = "Boxes × [x, y, width, height] (relative to image size)"
model.save(f) # pipelined
Expand Down
1 change: 0 additions & 1 deletion models/experimental.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# YOLOv5 🚀 by Ultralytics, AGPL-3.0 license
"""Experimental modules."""

import math

import numpy as np
Expand Down
1 change: 0 additions & 1 deletion utils/loggers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# YOLOv5 🚀 by Ultralytics, AGPL-3.0 license
"""Logging utils."""

import json
import os
import warnings
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 @@
"""Main Logger class for ClearML experiment tracking."""

import glob
import re
from pathlib import Path
Expand Down
2 changes: 1 addition & 1 deletion utils/loss.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


def smooth_BCE(eps=0.1):
"""Returns label smoothing BCE targets for reducing overfitting; pos: `1.0 - 0.5*eps`, neg: `0.5*eps`. For details see https://github.com/ultralytics/yolov3/issues/238#issuecomment-598028441"""
"""Returns label smoothing BCE targets for reducing overfitting; pos: `1.0 - 0.5*eps`, neg: `0.5*eps`. For details see ttps://github.com/ultralytics/yolov3/issues/238#issuecomment-598028441"""
return 1.0 - 0.5 * eps, 0.5 * eps


Expand Down

0 comments on commit 4889954

Please sign in to comment.