Mads Dabros
Mads Dabros
Hi Haoran Xue, Thanks for your kind words. I hope Sharplearning will help you develop some great and intelligent applications. If you should find any bugs or requests for new...
Hi @ammar88400, Currently there is no standard method for loading images in SharpLearning. So you basically have write your own methods for converting them to the `F64Matrix´. I think there...
It is an interesting feature. However, I am a bit reluctant to add more data to the decision tree nodes, especially something like a list, which can potentially become very...
If I understand correctly, what you are seeking seems to be a tool for decision tree analysis, like described here: https://en.wikipedia.org/wiki/Decision_tree. Where the main purpose of the decision tree is...
The main purpose of SharpLearning is to provide machine learning algorithms and models for prediction. So decision tree analysis, while very useful, is something I would categorize as a secondary...
Hi nmfisher, Thanks for your interest in SharpLeraning, I am glad you find it useful. Regarding using Math.Net matrices as a replacement for the SharpLearning matrices, it is a bit...
I believe Microsoft will release the initial/preliminary training API for C# during September/October. At least, it is included in their August – September iteration plan: https://github.com/Microsoft/CNTK/issues/2194 So hopefully, we will...
It seem like microsoft will eventually add support for a [Tensor type](https://blogs.msdn.microsoft.com/dotnet/2017/11/15/introducing-tensor-for-multi-dimensional-machine-learning-and-ai-data/). So if a tensor class is to be introduced SharpLearning, it would probably make sense to use the...
Hi @liqunfu, Thanks for taking the time to inform me and thanks for the great work! Looking forward to the 2.3 release :-).
Initial work/investigation for creating "backend" projects for interfacing with CNTK and TensorFlowSharp has been started in the branch: [backends](https://github.com/mdabros/SharpLearning/tree/backends). This approach focuses on creating a common low level API for...