Andrei Moraru

Results 10 issues of Andrei Moraru

Maybe not PR worthy, but I guess one can abstract the MLP implementation even more, making use of the layers instead of number of inputs and outputs yet again, since...

Hi, I've been able to build and use CppFlow (only tested the [QuickStart](https://serizba.github.io/cppflow/quickstart.html)), but I'm not sure why there is a `cd` in the steps provided, so I had to...

Hey, I mostly use CLion for C/C++ and I noticed the [instruction markdown](https://github.com/cmuratori/computer_enhance/blob/main/langs_to_asm.md) for how to view ASM does not mention it. This could be covered inside the "Using a...

### `DrawBoundingBoxesV3Op` can essentially only draw one text output per image I think this issue got first mentioned in https://github.com/tensorflow/io/issues/1088. However, it got labelled as an enhancement, though it looks...

Hi @gespona, Currently, the Dai Face Detector script crashes when setting `UseDepth` to false. This is because some cases were not handled in the source library. This PR adds those...

Hi @gespona. The Object Detector unity pipeline seems to crash after a few seconds into the feed, at least on Windows. Here is how it looks: ![image](https://github.com/user-attachments/assets/ee4fd6bb-83c5-451b-aee3-3cc1df3d6585) Besides on main,...

I noticed codon does not mangle names, which is what canonically allows C++ to overload anything. For example, it would be cool if I could drop the "2" from the...

Hi again folks, Looking for more ways to solve Advent of Code, I found out that at least for Tuples, type extension in the case of addition wants to behave...

bug

Hi again folks, I'm doing Advent of Code this year to try out Codon. Today, I discovered that Codon does not capture loop variables. For instance, in Python, for this...

Hi folks, Python uses the tokens `(/)` and `(*)` to separate positional and keyword arguments in a function signature. It also uses the `(*)` and `(**)` tokens for unpacking iterables...