Code Monkey home page Code Monkey logo

Comments (2)

github-actions avatar github-actions commented on August 18, 2024

πŸ‘‹ Hello @bhavyabjb, thank you for raising an issue about Ultralytics HUB πŸš€! Please visit our HUB Docs to learn more:

  • Quickstart. Start training and deploying YOLO models with HUB in seconds.
  • Datasets: Preparing and Uploading. Learn how to prepare and upload your datasets to HUB in YOLO format.
  • Projects: Creating and Managing. Group your models into projects for improved organization.
  • Models: Training and Exporting. Train YOLOv5 and YOLOv8 models on your custom datasets and export them to various formats for deployment.
  • Integrations. Explore different integration options for your trained models, such as TensorFlow, ONNX, OpenVINO, CoreML, and PaddlePaddle.
  • Ultralytics HUB App. Learn about the Ultralytics App for iOS and Android, which allows you to run models directly on your mobile device.
    • iOS. Learn about YOLO CoreML models accelerated on Apple's Neural Engine on iPhones and iPads.
    • Android. Explore TFLite acceleration on mobile devices.
  • Inference API. Understand how to use the Inference API for running your trained models in the cloud to generate predictions.

If this is a πŸ› Bug Report, please provide screenshots and steps to reproduce your problem to help us get started working on a fix.

If this is a ❓ Question, please provide as much information as possible, including dataset, model, environment details etc. so that we might provide the most helpful response.

We try to respond to all issues as promptly as possible. Thank you for your patience!

from hub.

pderrenger avatar pderrenger commented on August 18, 2024

@bhavyabjb hello,

Thank you for reaching out and providing details about the issue you're encountering. The error you're seeing, requests.exceptions.SSLError: HTTPSConnectionPool, typically indicates a problem with SSL certificate verification, which can occur due to various reasons such as network configuration or outdated packages.

To help us better understand and resolve the issue, could you please provide a minimal reproducible example of your code? This will allow us to replicate the problem on our end and offer a more precise solution. You can find guidance on how to create a minimal reproducible example here.

In the meantime, here are a few steps you can take to troubleshoot the issue:

  1. Update Packages: Ensure that you are using the latest versions of all relevant packages, including requests and yolov8. You can update them using pip:

    pip install --upgrade requests yolov8
  2. Verify SSL Certificates: Sometimes, SSL certificate issues can be resolved by updating your system's certificate store. On some systems, you can do this by running:

    pip install --upgrade certifi
  3. Network Configuration: If you are behind a corporate firewall or using a proxy, it might be interfering with SSL verification. You can try setting the REQUESTS_CA_BUNDLE environment variable to point to your certificate bundle:

    export REQUESTS_CA_BUNDLE=/path/to/your/certificate.pem
  4. Bypass SSL Verification: As a temporary workaround, you can bypass SSL verification by setting verify=False in your request. However, this is not recommended for production use due to security risks.

    import requests
    response = requests.get('https://api.github.com/repos/ultralytics/assets/releases/tags/v8.2.0', verify=False)

Please try these steps and let us know if the issue persists. Providing the minimal reproducible example will greatly assist us in diagnosing the problem further.

Thank you for your cooperation, and we look forward to helping you resolve this issue!

from hub.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.