• 2 Posts
  • 19 Comments
Joined 1 year ago
cake
Cake day: June 15th, 2023

help-circle
  • Yep, and for good reason honestly. I work in CV and while I don’t work on autonomous vehicles, many of the folks I know have previously worked at companies or research institutes on these kinds of problems and all of them agree that in a scenario like this, you should treat the state of the vehicle as compromised and go into an error/shutdown mode.

    Nobody wants to give their vehicle an override that can potentially harm the safety of those inside it or around it, and practically speaking there aren’t many options that guarantee safety other than this.




  • I’m a researcher in ML and that’s not the definition that I’ve heard. Normally the way I’ve seen AI defined is any computational method with the ability to complete tasks that are thought to require intelligence.

    This definition admittedly sucks. It’s very vague, and it comes with the problem that the bar for requiring intelligence shifts every time the field solves something new. We sort of go “well, given these relatively simple methods could solve it, I guess it couldn’t have really required intelligence.”

    The definition you listed is generally more in line with AGI, which is what people likely think of when they hear the term AI.



  • I’ve been using FreeTube since Piped was very inconsistent for me, but I guess that’s just the nature of these services. I’ll have to check out Invidious again, last time I tried it was several years ago and I stopped using it after the main instance shut down. Is it still under active development? I remember its development status being unclear, partially because the language it uses is not super mainstream, but it’s probably changed since then.







  • Thank you for the feedback!

    I think you may want to increase your dither size (or do them more often)

    Good catch! What happened was that I forgot to tick the box to enable dithering on the first night, so the first ~180 subs or so had no dithering at all, which definitely caused the pattern noise. That said, I’d be interested to hear if you know of a rule of thumb for dithering settings (i.e. how frequently should you dither, and how many pixels). When I was dithering on the second night, I dithered every 2 frames by 2 pixels, but I more or less picked those values arbitrarily.

    Also if your tracking allows for some longer subs, you could try to HDR those with your 30" exposure

    Gotcha, I’ll give that a try next time. I’m shooting with an unmodified and unfiltered camera from an urban area (Bortle 7-8) so I figured longer exposures wouldn’t help too much, but it sounds like it might still be worthwhile. Thanks for the tip!





  • I’m curious what field you’re in. I’m in computer vision and ML and most conferences have clauses saying not to use ChatGPT or other LLM tools. However, most of the folks I work with see no issue with using LLMs to assist in sentence structure, wording, etc, but they generally don’t approve of using LLMs to write accuracy critical sections (such as background, or results) outside of things like rewording.

    I suspect part of the reason conferences are hesitant to allow LLM usage has to do with copyright, since that’s still somewhat of a gray area in the US AFAIK.





  • As an added comment, I think INDIGO and Ain Imager are worth trying for anyone using INDI, especially if you’re using a Sony camera. Sony cameras on INDIGO have focuser support and in my experience the driver is much more stable. Furthermore, the architecture of distributed agents controlling different functions makes setup easier and more performant on low-power and potentially slow wireless systems like an ARM single board computer.

    To explain that a bit more, I image through Ain Imager on my Linux laptop. However, this imager program is more or less just a frontend where I select options, but everything is executed on the agents on the ROCKPro64. This includes imaging and frame capture, guiding, and plate solving. This has some benefits compared to KStars + INDI. For example, you avoid the latency of transferring a guider image to a laptop and then sending a message back to the SBC with a guiding pulse (you can avoid this on INDI by running PHD2 separately, but then you have the overhead of running a whole desktop environment), and you don’t need to wait to frames to download before starting another exposure (they’re downloaded asynchronously instead).

    (Disclaimer - I contribute to INDIGO occasionally but I’m not a member of the project, just an open source developer adding features to it)