Code Monkey home page Code Monkey logo

Comments (2)

github-actions avatar github-actions commented on July 1, 2024

πŸ‘‹ Hello @wleisenr, 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 July 1, 2024

Hello! Thanks for reaching out with your issue on pose estimation accuracy during dynamic motions like a baseball pitch. πŸš€

It sounds like the model might be struggling with occlusions and fast movements typical in sports actions. Here are a couple of suggestions that might help improve the accuracy:

  1. Data Augmentation: If not already done, consider augmenting your training dataset with more examples of similar poses and motions, especially where limbs overlap or move rapidly.

  2. Model Fine-tuning: If possible, fine-tune the model on a dataset that includes more sports actions, particularly baseball pitching, to help the model better learn these specific movements.

  3. Post-processing: Since you've tried interpolation, consider also implementing more advanced smoothing techniques that can handle sudden changes in pose estimation, like Kalman filters or moving average filters.

  4. Increase Model Complexity: If computational resources allow, using a more complex model might capture dynamics better.

Here's a quick example of how you might implement a simple moving average for smoothing:

import numpy as np

def smooth_pose(predictions, window_size=3):
    return np.convolve(predictions, np.ones(window_size)/window_size, mode='valid')

# Example usage with dummy data
predicted_poses = np.array([10, 12, 15, 20, 28, 18, 15, 14, 13, 12])
smoothed_poses = smooth_pose(predicted_poses)
print(smoothed_poses)

Hope this helps! Let us know how it goes or if you have further questions.

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.