-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
fixed typos in gui folder #1150
Conversation
Changed queue to set in AC3 (as in the pseudocode of the original algorithm) to reduce the number of consistency-check due to the redundancy of the same arcs in queue. For example, on the harder1 configuration of the Sudoku CSP the number consistency-check has been reduced from 40464 to 12562!
AC3 algorithm has non-optimal worst case time-complexity O(cd^3 ), while AC4 algorithm runs in O(cd^2) worst case time
…he constant propagation algorithm in mac inference
…eady present in test_csp.py
This reverts commit 20ab0e5.
This reverts commit f743146.
This reverts commit 9e0fa55.
… are already present in test_csp.py" This reverts commit b3cd24c.
…oosing the constant propagation algorithm in mac inference" This reverts commit 6986247.
This reverts commit 03551fb.
This reverts commit 93af259.
This reverts commit 6641c2c.
This reverts commit 9d37ae0.
….inf and numpy.isclose
same issue as with pr #1148 |
I would like to know, what are you planning on doing with the DL functions you removed? Are you going to add them to |
I removed the classes that use Keras because I think that the repository's focus is to propose simple and intuitive implementations to the problems proposed in the book and not to wrap other high-level DL libraries. |
Thing is, I was not the one who merged these commits, so I am not sure what to do with them. I remember a while ago Dr. Norvig wanted to start using TensorFlow in here, so maybe this is it. I would prefer if they remained in there, just to be safe. |
Ok @antmarakis, in the meanwhile I provided to re-added Keras class in order to give you the possibility to merge the others changes. |
No description provided.