Andrew DalPino
Andrew DalPino
> is there an option to get some percentage probably of how much this label corresponds to the image? You may be talking about a probability? If so, yes you...
Hey @neosaganeo good observation, the output layer is not as configurable as a hidden layer. The reason is because the output layer's configuration largely depends on the type of problem...
I think we can probably make Word Count Vectorizer more flexible, if not directly, then through the Tokenizer abstraction. Even with a custom vocabulary, text blobs still need to be...
I'm sure there's a way we can make it work. A custom vocabulary is the easy part. Tokenizing is the harder part because you still need to recognize words that...
Hey @neosaganeo, is there a pattern that would capture the words correctly for your language besides just spelling the exact words out in a list? What I'm thinking is that,...
Hey @ghostjat thanks for the great suggestion! I'm currently unfamiliar with YOLO and SSD but will do some research to see if it's something we can implement in Rubix. We...
I forgot to ask @ghostjat, how was your experience using FFI to interface with Darknet? We're considering moving some code from PHP to C if FFI is a viable solution...
Were you able to get Darknet to work still with the callback issue @ghostjat? If so, how slow are we talking? Comparing Darknet with and without FFI.
I've seen this before and yes I do believe it is related to the scale of the new features causing instability. The extra "classes" `0` and `null`/`""` I think if...
I'm pretty sure those blank predictions are the cause of the "new class" showing up in the report. I'll have to dig deeper as to why that occurs exactly but...