zhongkaifu / RNNSharp

RNNSharp is a toolkit of deep recurrent neural network which is widely used for many different kinds of tasks, such as sequence labeling, sequence-to-sequence and so on. It's written by C# language and based on .NET framework 4.6 or above versions. RNNSharp supports many different types of networks, such as forward and bi-directional network, sequence-to-sequence network, and different types of layers, such as LSTM, Softmax, sampled Softmax and others.
BSD 3-Clause "New" or "Revised" License
285 stars 92 forks source link

GPU Training #2

Closed alexrisman closed 7 years ago

alexrisman commented 8 years ago

Hi, does this library support training on GPU?

zhongkaifu commented 8 years ago

Currently, RNNSharp doesn't support training on GPU, but I do have a plan for that. :)

BackT0TheFuture commented 8 years ago

Great to hear that. There's one project named "CUDAFY.NET", it allows easy development of high performance CUDA applications in C#. (CUDAFY.NET)[http://cudafy.codeplex.com/] <_>

zhongkaifu commented 8 years ago

Thanks for pointing out. I will look at CUDAFY.NET to see if we can use it.