Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I intend to use Reinforcement learning in my project but I do not know much how to implement it..
So I am looking for a library with different RL algorithms that I can use in my C# project..
Thanks
Please Note:
I found NeuronDotNet library for neural networks, I am now looking for RL library..
EDIT: Or a Dot NET library
For who care, I have found this library for socket supported languages (C#):
Rl-Glue
I encourage you to try this solution:
http://sourceforge.net/projects/dotrl/
I am the main author, any comments are welcome :)
If you don't know how to implement them because you lack an understanding of the algorithms, a book by Sutton and Barton should help clear up any issues you have.
http://webdocs.cs.ualberta.ca/~sutton/book/the-book.html
But otherwise, what you found should suit your needs.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm trying to write my own LDAP Client Library.
Would you like to give me some examples of such libraries which use OOP.
They can be written in C++, Java, C#, etc.
Thanks in advance!
In java, LDAP can be connected through javax.naming.ldap.* packages which comes in standard distribution. I found the following two links, where in you can get sample codes.
http://www.adamretter.org.uk/blog/entries/LDAPTest.java
http://code.google.com/p/java-use-examples/source/browse/trunk/src/com/aw/ad/LdapBasicExample.java?r=2
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Can anyone suggest me some websites to learn WPF Application Framework (WAF ) for beginner ? I haved read here http://waf.codeplex.com/. But its not show up any tutorial links even Google.
Look around on MSDN, they have lots of good tutorials. In particular I would recommend this article.
In general though, just try stuff. Create a simple application, hook it up to a simple view model, and once you get something working, start changing small pieces to make it do what you want. In my experience that is always the best way to learn a new technology!
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Could anyone suggest a good step-by-step C# MVC4 tutorial? I need to learn this language but I could not find any really great tutorial with sample code and explanation yet. I should create web sites with these things but it's really different from PHP what I have used till now.
Thank you in advance!
Microsoft's MVC Music Store is a pretty classic example.
You can also visit the channel9 to see different kind of vidoes http://channel9.msdn.com/search?term=mvc
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm wondering what the best supported way of accessing the youtube data api is with c#?
Are any of the library's up to date? I can quite easily switch to Django or Rails for this app, but thought I would start with C# as it seems that it is referred to in the current docs. However the examples seem inconsistent, so I'd rather just switch to something that works than mess about with this.
And you can get c# examples at https://github.com/youtube/api-samples/tree/master/dotnet
and the library is in https://developers.google.com/api-client-library/dotnet/apis/youtube/v3
Google has a variety of libraries to make this fairly simple:
https://developers.google.com/youtube/v3/libraries
Including this .NET version:
https://code.google.com/p/google-api-dotnet-client/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm looking for an open source (GPL, LGPL etc) graph layout library for .net framework, preferably fully managed code. Im not worried about the visualisation aspect of things.
I can find lots of them for Java, but none for .net...
Thanks!
http://graphsharp.codeplex.com/ (Nice "visualisation aspect of things" :)
(...and for the "oldie" GraphViz, you can get no less than 3 language bindings for C#)
http://satsumagraph.sourceforge.net
Has force-directed graph layout (charged particles & springs model).
http://zedgraph.org/wiki/index.php?title=Main_Page
Tried it before...works great.