Update LICENSE to AGPL-3.0 (#2031)

This commit is contained in:
Glenn Jocher
2023-04-14 15:17:41 +02:00
committed by GitHub
parent 5065ca36a8
commit 2c6fc0a444
131 changed files with 200 additions and 213 deletions

View File

@ -1,4 +1,4 @@
# Ultralytics YOLO 🚀, GPL-3.0 license
# Ultralytics YOLO 🚀, AGPL-3.0 license
from .base import BaseDataset
from .build import build_classification_dataloader, build_dataloader, load_inference_source

View File

@ -1,4 +1,4 @@
# Ultralytics YOLO 🚀, GPL-3.0 license
# Ultralytics YOLO 🚀, AGPL-3.0 license
import math
import random

View File

@ -1,4 +1,4 @@
# Ultralytics YOLO 🚀, GPL-3.0 license
# Ultralytics YOLO 🚀, AGPL-3.0 license
import glob
import math

View File

@ -1,4 +1,4 @@
# Ultralytics YOLO 🚀, GPL-3.0 license
# Ultralytics YOLO 🚀, AGPL-3.0 license
import os
import random

View File

@ -1,4 +1,4 @@
# Ultralytics YOLO 🚀, GPL-3.0 license
# Ultralytics YOLO 🚀, AGPL-3.0 license
import glob
import math

View File

@ -1,4 +1,4 @@
# Ultralytics YOLO 🚀, GPL-3.0 license
# Ultralytics YOLO 🚀, AGPL-3.0 license
"""
Image augmentation functions
"""

View File

@ -1,4 +1,4 @@
# Ultralytics YOLO 🚀, GPL-3.0 license
# Ultralytics YOLO 🚀, AGPL-3.0 license
"""
Dataloaders and dataset utils
"""

View File

@ -1,4 +1,4 @@
# Ultralytics YOLO 🚀, GPL-3.0 license
# Ultralytics YOLO 🚀, AGPL-3.0 license
from itertools import repeat
from multiprocessing.pool import ThreadPool

View File

@ -1,4 +1,4 @@
# Ultralytics YOLO 🚀, GPL-3.0 license
# Ultralytics YOLO 🚀, AGPL-3.0 license
import collections
from copy import deepcopy

View File

@ -1,5 +1,5 @@
#!/bin/bash
# Ultralytics YOLO 🚀, GPL-3.0 license
# Ultralytics YOLO 🚀, AGPL-3.0 license
# Download latest models from https://github.com/ultralytics/assets/releases
# Example usage: bash ultralytics/yolo/data/scripts/download_weights.sh
# parent

View File

@ -1,5 +1,5 @@
#!/bin/bash
# Ultralytics YOLO 🚀, GPL-3.0 license
# Ultralytics YOLO 🚀, AGPL-3.0 license
# Download COCO 2017 dataset http://cocodataset.org
# Example usage: bash data/scripts/get_coco.sh
# parent

View File

@ -1,5 +1,5 @@
#!/bin/bash
# Ultralytics YOLO 🚀, GPL-3.0 license
# Ultralytics YOLO 🚀, AGPL-3.0 license
# Download COCO128 dataset https://www.kaggle.com/ultralytics/coco128 (first 128 images from COCO train2017)
# Example usage: bash data/scripts/get_coco128.sh
# parent

View File

@ -1,5 +1,5 @@
#!/bin/bash
# Ultralytics YOLO 🚀, GPL-3.0 license
# Ultralytics YOLO 🚀, AGPL-3.0 license
# Download ILSVRC2012 ImageNet dataset https://image-net.org
# Example usage: bash data/scripts/get_imagenet.sh
# parent

View File

@ -1,4 +1,4 @@
# Ultralytics YOLO 🚀, GPL-3.0 license
# Ultralytics YOLO 🚀, AGPL-3.0 license
import contextlib
import hashlib