- 17 avr., 2016 4 validations
-
-
Darius Bacon a écrit
-
Darius Bacon a écrit
-
Darius Bacon a écrit
-
Darius Bacon a écrit
-
- 16 avr., 2016 1 validation
-
-
Darius Bacon a écrit
Style: delete excess parentheses. In some of these cases you need to read ahead to see that the paren is not introducing a tuple, for example.
-
- 13 avr., 2016 2 validations
-
-
Surya Teja Cheedella a écrit
* fixes an error in search.py * modifies the method name 'exec' which is a built-in name
-
Surya Teja Cheedella a écrit
* modifies Fig. to Figure all over the repository * fixed a small type in logic.py
-
- 12 avr., 2016 1 validation
-
-
Tarun Kumar Vangani a écrit
* Change variable names from s_prime to s1, current_state to s1 * Sane default for update_state
-
- 10 avr., 2016 1 validation
-
-
Surya Teja Cheedella a écrit
* removes obsolete Fig dictionary from utils.py * modified rl notebook according to the new Figure conventions * removes 'import Fig' and changed the names of Figures * fixes a small error (by me) in executing the cells in rl notebook
-
- 09 avr., 2016 1 validation
-
-
Tarun Kumar Vangani a écrit
* Made Log Usage Consistent in text.py * Added Explicit Imports from utils
-
- 05 avr., 2016 2 validations
-
-
Peter Norvig a écrit
-
Peter Norvig a écrit
-
- 04 avr., 2016 2 validations
-
-
Surya Teja Cheedella a écrit
* changes a typo of file name to /aima-data * modified some documentaion and removed doc tests * changed the names like Fig[2, 3] and added unit tests for search.py
-
Surya Teja Cheedella a écrit
* adds Fig[4.23] graph which is 1-dim state space problem * adds LRTA star agent class * adds fully implemented LRTA star agent * adds tests for LRTA star agent
-
- 30 mar., 2016 1 validation
-
-
SnShine a écrit
-
- 24 mar., 2016 2 validations
-
-
Larry He a écrit
Apparently, set() does not equal {}
-
Larry He a écrit
Problems fixed: Replaced cmp: 1 instance in line 323 of search.py Convert set() to {}: 3 instances in line 29 of MDP.py, line 181 and 215 of search.py Convert .sort() to sorted(): 1 instance in line 150 of text.py Cast map to list: 1 instance in line 47 of grid.py
-
- 22 mar., 2016 1 validation
-
-
SnShine a écrit
-
- 15 mar., 2016 1 validation
-
-
Chipe1 a écrit
-
- 11 mar., 2016 5 validations
-
-
Chipe1 a écrit
-
Tarun Kumar a écrit
-
Lucas Moura a écrit
-
Chipe1 a écrit
-
Chipe1 a écrit
-
- 10 mar., 2016 2 validations
-
-
Tarun Kumar a écrit
-
MircoT a écrit
-
- 09 mar., 2016 2 validations
- 06 mar., 2016 4 validations
- 05 mar., 2016 3 validations
-
-
Tarun Kumar a écrit
-
norvig a écrit
These functions, which I had to implement in Python 2.2, are now available in standard Python.
-
norvig a écrit
use “raise NotImplementedError” for abstract methods
-
- 03 nov., 2011 1 validation
-
-
withal a écrit
Remove astar row from compare_graph_searchers table because it's sensitive to trivial changes. Needs real tests instead.
-
- 29 oct., 2011 2 validations
-
-
withal a écrit
-
withal a écrit
* graph_search missed deduping nodes in the frontier * astar_search didn't use 3rd-edition pseudocode * InstrumentedProblem didn't forward the path_cost method, so all the doctest results on instrumented cost-sensitive problems were wrong Also filled in breadth_first_search and per-node memoization of h (to fulfill the doc comment saying that was done). There's a remaining problem that sometimes trivial refactorings change the amount of search that is done, slightly, which should not happen since the code is supposed to be deterministic.
-
- 28 oct., 2011 1 validation
-
-
withal a écrit
Don't compare strings with 'is not'. (Broke things in pypy.) Also show Struct members in sorted order so doctests work in pypy.
-
- 26 oct., 2011 1 validation
-
-
withal a écrit
-