Mikhail Simin

Results 42 comments of Mikhail Simin

@suragnair This is pretty close to where I wanted to have it. Take a look?

@suragnair this is working now. Would love your thoughts on this generalization

I'll put something together as a POC, but my limited knowledge of neural networks will prevent me from making best choices in abstraction here.

This started because my "board" is significantly larger than the examples here. I have a 35x70 board. With such a large board I think that only 4 layers with a...

Hey @NMO13! Can you paste your entire config from main? In particular I'm curious about your temperature threshold and numMCTS

Another thing worth checking (and this is similar to another thread) is your string representation of the state. If it is inaccurate (imagine ad absurdum example of always returning the...

I have 16 different caches and I need to keep them separate so that overflowing cache 3 does not pop out values from cache 1 and so on

I was able to come up with a hacky way of handling this, but a natural implementation would still be welcome. pseudo code: ```python def __init__(self): self.caches = [] for...

How about this syntax... Same concept as "contexts" for group actors, except it'll be "contexts-from" which defines another actor. ``` json { "actor": "group.Sync", "contexts-from": { "actor": "aws.GetMetaData", "options": {...

If we already had information passing then it would be just a separate actor such as `aws.GetMetaData` and the results would go into the context of subsequent actors. Since we...