Help for dissertation in BSc CS #24313
|
Hello All, I hope you are well. I would like some help on an issue I have on my thesis and I should mention that my timeline is very short. I would appreciate any help and advices and thanks for your time reading this! |
Replies: 1 comment 5 replies
|
👋 Hello @akonst08, thank you for your interest in Ultralytics 🚀, and thanks for sharing the context around your dissertation. This is an automated response to help get things moving quickly; an Ultralytics engineer will also assist you soon 😊 We recommend a visit to the Docs for new users where you can find many Python and CLI usage examples and where many of the most common questions may already be answered. If this is a 🐛 Bug Report, please provide a 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. For your case, since this looks like a training/workflow question under time pressure, it would help a lot if you could share: Join the Ultralytics community where it suits you best. For real-time chat, head to Discord 🎧. Prefer in-depth discussions? Check out Discourse. Or dive into threads on our Subreddit to share knowledge with the community. UpgradeUpgrade to the latest pip install -U ultralyticsEnvironmentsYOLO may be run in any of the following up-to-date verified environments (with all dependencies including CUDA/CUDNN, Python and PyTorch preinstalled): -Notebooks with free GPU: StatusIf this badge is green, all Ultralytics CI tests are currently passing. CI tests verify correct operation of all YOLO Modes and Tasks on macOS, Windows, and Ubuntu every 24 hours and on every commit. |
Given your timeline, the fastest practical route is weakly supervised mining rather than direct 9-class retraining: extract frames at 1-2 FPS, drop blurry and near-duplicate frames, rank candidates detector-independently with image-embedding outlier scores, keep only temporally consistent runs of 3-5 consecutive high-score frames, use SAM on those runs for region proposals, manually verify only the top few hundred boxes to build a small seed set, then fine-tune from your existing
best.pton a mixed 9-class dataset plus a small replay subset of the original 8 classes to reduce forgetting; after that, pseudo-label the remaining videos with highconfandsave_txt=True, keep boxes only if the…