Andrew DalPino

Results 132 comments of Andrew DalPino
trafficstars

Since 0.4.0 we now can perform [Latent Semantic Indexing](https://en.wikipedia.org/wiki/Latent_semantic_analysis) to the document matrix. ```php use Rubix\ML\Transformers\HTMLStripper; use Rubix\ML\Transformers\TextNormalizer; use Rubix\ML\Transformers\WordCountVectorizer; use Rubix\ML\Transformers\BM25Transformer; use Rubix\ML\Transformers\TruncatedSVD; $dataset = $dataset->apply(new HTMLStripper()) ->apply(new TextNormalizer())...

Hey @DrDub that would be awesome actually. Let me know if you need any help getting started!

Hey @Pmulwahali thanks for the great question! There's plenty of talk among the community regarding implementing LSTM networks in Rubix, however, our plan was to first implement an optimized (cache,...

Hey @halimkun it sounds like you might need a custom transformation. You can create a separate category to represent the absence of a symptom (such as "no") and impute that...

Version 1.2.3 contains no breaking changes to the public API of the library as far as I know. There was a renaming of the private variable that references the Softmax...

Ok, I apologize for the inconvenience. While we are waiting for a complete solution, I will try to be mindful of renaming of private properties in a bugfix release. I...

The problem is that you are trying to train a Learner that is not compatible with continuous data with continuous data (i.e. word count vectors). If you'd like to stick...

Hey @chegmarco1989 thanks for the question. Unfortunately, we don't have the primitives (hidden and output layers) to build an LSTM network at this time. There's been alot of talk about...

Hey @alitokmakci thanks for the feedback. It looks like you're code is correct. I've long been wondering what issues we could run into with Online learning. We might have to...

> Is scienide/tensor a replacement for rubix/tensor? We've moved the development of Tensor to a repository outside of Rubix since it can apply to many areas of computing not just...