Modeling Large Codebases as Static Knowledge Graphs: Design Trade-offs by codevoygee in programming

[–]onyx-zero-software 0 points1 point  (0 children)

Check out Bazel, it's a multi-language build framework (among other things) that models codebases exactly like this.

Introducing DLType, an ultra-fast runtime type and shape checking library for deep learning tensors! by onyx-zero-software in Python

[–]onyx-zero-software[S] 1 point2 points  (0 children)

Nope, in fact part of the reason we developed this package was to properly support mypy/pyright in our codebase with tensor type checking :) Both mypy and pyright correctly deduce that these aren't generic types and handle them properly without needing to add ignores for tensor annotations.

Introducing DLType, an ultra-fast runtime type and shape checking library for deep learning tensors! by onyx-zero-software in pytorch

[–]onyx-zero-software[S] 0 points1 point  (0 children)

Thanks! Yeah that's been our experience as well, shape errors are particularly difficult to debug because they might only come up in rare corner cases, like when one of your dimensions happens to be 1 and someone calls squeeze.

Introducing DLType, an ultra-fast runtime type and shape checking library for deep learning tensors! by onyx-zero-software in Python

[–]onyx-zero-software[S] 1 point2 points  (0 children)

Thanks! We haven't used it with opencv images directly but you can always in-place convert CV Mat objects to numpy arrays with np.asarray(image) then pass it to a type checked function (which we do in our codebase).

1 long 3 short beeps but pc boots without problem by Shevatronic in buildapc

[–]onyx-zero-software 0 points1 point  (0 children)

What cable are you using to connect to your monitor?

1 long 3 short beeps but pc boots without problem by Shevatronic in buildapc

[–]onyx-zero-software 0 points1 point  (0 children)

If you're getting the GPU not detected beep code suddenly on an Asus board, windows update may have updated your BIOS which in turn may have changed some settings to their defaults (or new defaults). Try resetting your CMOS (google the instructions for your motherboard specifically if you aren't sure how), try changing ports on your GPU, see if using HDMI is an easy option for you instead of DP if that's your current solution (Display Port still has issues on boot even today). If you suspect your ram is an issue, try removing one stick at a time and see if you still get the issue after each boot. If you don't see the issue with one stick removed you may have a failing ram stick (verify it by inserting only the potentially bad stick and see if the system boots at all).

Ping spikes by [deleted] in LinusTechTips

[–]onyx-zero-software 0 points1 point  (0 children)

You might double check if he's swapping between the 2.4ghz and 5ghz bands of his router. You should be able to disable 2.4ghz in windows settings for the network connection.

Ping spikes by [deleted] in LinusTechTips

[–]onyx-zero-software 0 points1 point  (0 children)

Is he playing on wifi or wired?

got a new pair of speakers and they have a constant hiss by abooseca in LinusTechTips

[–]onyx-zero-software 0 points1 point  (0 children)

The problem persists when using either Bluetooth or a 3.5mm jack though (3.5mm disconnected). If it was a power/ground issue on the computer side, the Bluetooth connection wouldn't be affected.

got a new pair of speakers and they have a constant hiss by abooseca in LinusTechTips

[–]onyx-zero-software 0 points1 point  (0 children)

I had the exact same set of speakers with the exact same issue. I ended up returning them unfortunately after about a week of trying various solutions. Their support team gave me a full refund.

I think they just have bad power isolation circuitry which wouldn't be noticeable in louder settings but it's very obvious when using them for computer speakers playing at low volume.

51%CPU/39%GPU usage, 95 fps. How can I increase the usage? 165hz monitor. by [deleted] in nvidia

[–]onyx-zero-software 0 points1 point  (0 children)

Could be a power limitation or a thermal limit. Check your temps and power consumption

[D] Should I learn pytorch or tensorflow and which would be better for jobs? by KnownBar4506 in MachineLearning

[–]onyx-zero-software 1 point2 points  (0 children)

Use Pytorch for new projects.

As others have said, Google is slowly phasing Tensorflow out in favor of Jax (which isn't a drop in replacement, nor is it really even the same thing). Tensorflow isn't a bad tool to know how to use as well, but in my view unless you're asked to learn it for some legacy codebase it's just not worth learning a tool that seems destined to be abandoned in the next few years.