Chanchana Sornsoontorn

Results 59 comments of Chanchana Sornsoontorn

@charlesq34 I tried training by duplicating the points and it works but not sure if it works roughly the same when testing on variable length. I want to ask to...

@Maheshiitmandi But normalizing before duplications is also having its benefits. Suppose you have 70 points and you want to expand to 100 points, if you normalize before duplicates you will...

Let's say a batch consists of multiple clouds. And a cloud consists of multiple points. If the batch size is 32 it means you are training 32 clouds at a...

> Here's a class that serves as a wrapper to a pyserial object. It allows you to read lines without 100% CPU. It does not contain any timeout logic. If...

> > Here's a class that serves as a wrapper to a pyserial object. It allows you to read lines without 100% CPU. It does not contain any timeout logic....

Yes, this feature would be valuable. I want a script that can generate a TOC section on a cell for me and also update the link for each header automatically....

The child thread should be handling its own message queue and sending the message to the python server. You should not try to do this networking stuff in the main...

If you want that when a button is pressed, it should do something, then you can define a request queue as a field of the HelloRequester class. And whenever a...

@rileyshu53 It's probably because you are blocking the main thread somehow e.g. by an infinite loop or handling messages in the main thread. Make sure you aren't doing that. There...

What's the conclusion of the most bug-free way for communicating between Unity and other processes (e.g. python)? Is it still NetMQ?