-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bc::copy, copy vector data to cube, don't support, now! #65
Comments
Hi, I've added tests to cover this issue However I was able to successfully compile the above code (Windows VS2019) and have tests run successfully. Without having to change any internal code, so I am unsure why it wouldn't work. Could you post the error and compilation output? |
Additionally I haven't yet documented but there is a new class named
|
I meet a strange problem, every functions is ok, when i do not call them. But when i call the function, so many compile errors. |
Hi, I fixed the issue. A while back a re-ordered the template arguments for the Allocator class. using allocator_type = bc::Allocator<System, value_type> to using allocator_type = bc::Allocator<value_type, System>; So if you pull the newest commits and make those changes your code should be able to work. I added tests to cover this issue. Thanks! |
thanks, it works. Other problem is that, i predict with the trained data, it seems well, but i predict with the untrained data, it seems not good, i try to decrease the epoch, but it seems not work. I don't know why? |
Hmmm... I am not sure why, if you send me what you are working on i could take a look? |
like this: auto network = bc::nn::neuralnetwork(
|
I will check! |
Fixed! Silly bug (infinite recursion), added set_learning_rate to the mnist_recurrent example to catch this bug in the future! |
now i can't use bc::copy, copy vector data to cube input!
The text was updated successfully, but these errors were encountered: