diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index 47de948..f24d4cb 100644 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -30,7 +30,7 @@ jobs: If this is a 🐛 Bug Report, please provide a [minimum reproducible example](https://docs.ultralytics.com/help/minimum_reproducible_example/) to help us debug it. - If this is a custom training ❓ Question, please provide as much information as possible, including dataset image examples and training logs, and verify you are following our [Tips for Best Training Results](https://docs.ultralytics.com/yolov5/tutorials/tips_for_best_training_results/). + If this is a custom training ❓ Question, please provide as much information as possible, including dataset image examples and training logs, and verify you are following our [Tips for Best Training Results](https://docs.ultralytics.com/guides/model-training-tips//). Join the vibrant [Ultralytics Discord](https://ultralytics.com/discord) 🎧 community for real-time conversations and collaborations. This platform offers a perfect space to inquire, showcase your work, and connect with fellow Ultralytics users. diff --git a/README.md b/README.md index 0c286f9..a701c35 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ # 🚀 Ultralytics HUB-SDK -[![HUB-SDK CI](https://github.com/ultralytics/hub-sdk/actions/workflows/ci.yml/badge.svg)](https://github.com/ultralytics/hub-sdk/actions/workflows/ci.yml) [![codecov](https://codecov.io/github/ultralytics/hub-sdk/graph/badge.svg?token=vCJeCYMyjH)](https://codecov.io/github/ultralytics/hub-sdk) Discord +[![HUB-SDK CI](https://github.com/ultralytics/hub-sdk/actions/workflows/ci.yml/badge.svg)](https://github.com/ultralytics/hub-sdk/actions/workflows/ci.yml) [![codecov](https://codecov.io/github/ultralytics/hub-sdk/graph/badge.svg?token=vCJeCYMyjH)](https://codecov.io/github/ultralytics/hub-sdk) Discord Ultralytics Forums Welcome to the Ultralytics HUB-SDK documentation! 📖 Our aim is to guide you through the installation process and help you get started with using HUB-SDK for your machine learning endeavors. diff --git a/tests/conftest.py b/tests/conftest.py index f0e11e1..93e8924 100755 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,7 +1,7 @@ import pytest import requests - from hub_sdk import HUBClient + from tests.features.object_manager import ObjectManager from tests.test_data.data import TestData diff --git a/tests/functional/test_auth.py b/tests/functional/test_auth.py index 74db5d0..407ca5f 100755 --- a/tests/functional/test_auth.py +++ b/tests/functional/test_auth.py @@ -1,6 +1,6 @@ import pytest - from hub_sdk import HUBClient + from tests.test_data.data import TestData from tests.utils.base_class import BaseClass diff --git a/tests/utils/base_class.py b/tests/utils/base_class.py index 42bc7ef..7a9195f 100755 --- a/tests/utils/base_class.py +++ b/tests/utils/base_class.py @@ -4,7 +4,6 @@ import time import pytest - from hub_sdk import HUBClient