Matthew Tovbin
Matthew Tovbin
Use HTTPS: ``` resolvers += "Sonatype snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/" ```
Yeah, we were planning to add it - #394 . Mot likely nobody is working on it yet. @wsuchy @leahmcguire please confirm.
@leahmcguire @gerashegalov correct me if I am wrong, but I don't think anyone is working on neither Pything nor OCaml interface this an this point. That's mainly due to the...
I started by following [this discussion](https://issues.apache.org/jira/browse/SPARK-5226) and then reading the [paper](http://www.cse.cuhk.edu.hk/~taoyf/paper/sigmod15-dbscan.pdf) revisited DBSCAN. It seems that we should aim for ρ-approximate DBSCAN instead, since that one is the only feasible...
I found a newer Java [implementation of DBSCAN](https://github.com/haifengl/smile/blob/master/core/src/main/java/smile/clustering/DBSCAN.java) in SMILE library. We can try and port or to Spark I presume.
@LakshKD yes, we are planning to add some DL support for TransmogrifAI, in particular integration with TensorFlow runtime. Do you have a particular use case you want to solve with...
In order to add TensorFlow support we would need roughly the following: 1. research and evaluate which libraries can be used to provide TensorFlow model training on Spark (if not...
For binary data we have `Base64` type.
Hmm, are you trying to use MLP with TF? Because we already have [MLP implementation](https://github.com/salesforce/TransmogrifAI/blob/master/core/src/main/scala/com/salesforce/op/stages/impl/classification/OpMultilayerPerceptronClassifier.scala) from Spark ML. And as for MNIST problem in particular @ajayborra tried solving it with...
Which Scala version are you using?