- 28 sept., 2018 1 validation
-
-
DKE a écrit
`self.heap.append` simply appends to the end of the `self.heap` Since `self.heap` is just a python list. `self.append` calls the append method of the class instance, effectively putting the item in its proper place.
-
- 19 sept., 2018 4 validations
-
-
Muhammad Junaid a écrit
Added a few new sentences, modified the sentence structure at a few places, and corrected some grammatical errors.
-
Nouman Ahmed a écrit
* added relu activation * added default parameters
-
Muhammad Junaid a écrit
To make it more descriptive and accurate.
-
Muhammad Junaid a écrit
To make it more accurate.
-
- 18 sept., 2018 1 validation
-
-
Muhammad Junaid a écrit
-
- 17 sept., 2018 1 validation
-
-
Leandro Casuso Montero a écrit
Remove unnecessary initial goal test in best_first_graph_search. The loop will catch that case immediately.
-
- 03 sept., 2018 1 validation
-
-
Anthony Marakis a écrit
-
- 30 août, 2018 1 validation
-
-
Aman Deep Singh a écrit
* Added KB_AgentProgram and subst * Added doctests * Updated README.md * Fixed doctest * Fixed doctest * Fixed doctest * Added definite_clauses_KB to logic.py * Fixed a doctest, again * Fixed another doctest * Fixed another doctest * Moved unnecessary doctests to unit tests * Added unit test for ModelBasedReflexAgent * Added unit test for ModelBasedReflexAgent * Updated README.md * Minor fix * Fixed a doctest
-
- 27 août, 2018 4 validations
-
-
Peter Norvig a écrit
-
Peter Norvig a écrit
-
Peter Norvig a écrit
-
Peter Norvig a écrit
-
- 12 août, 2018 1 validation
-
-
MariannaSpyrakou a écrit
* Minor modifications in planning_angelic_search.ipynb and knowledge_FOIL.ipynb notebooks.
-
- 09 août, 2018 1 validation
-
-
Pierre de Lacaze a écrit
-
- 08 août, 2018 1 validation
-
-
MariannaSpyrakou a écrit
* Modified FOIL_container * Added unit tests for FOIL_container functions * Added knowledge_current_best notebook * Added knowledge_FOIL notebook * Added knowledge_version_space notebook * Added images for knowledge_FOIL notebook * knowledge.ipynb replaced by knowledge_current_best.ipynb, knowledge_version_space.ipynb, knowledge_FOIL.ipynb * modify knowledge.py
-
- 02 août, 2018 2 validations
-
-
Aman Deep Singh a écrit
* Added tests for online dfs agent * Minor formatting fixes * Completed notebook sections * Updated README.md * Fixed a test * Added new algorithms to display_visual notebook function * Added RBFS visualization
-
Aman Deep Singh a écrit
* Added notebook section for DTAgentProgram * Updated README.md * Minor * Added TODO to fix pomdp tests * Added notebook section on AC3 * Added doctests to agents.py * Fixed pomdp tests * Fixed a doctest * Fixed pomdp test * Added doctests for rl.py * Fixed NameError in rl.py doctests * Fixed NameError in rl.py doctests * Minor fixes * Minor fixes * Fixed ImportErrors * Fixed all doctests
-
- 27 juil., 2018 2 validations
-
-
Pierre de Lacaze a écrit
-
MariannaSpyrakou a écrit
* created notebooks for GraphPlan, Total Order Planner and Partial Order Planner * Added hierarchical search and tests * Created notebook planning_hierarchical_search.ipynb * Added making progress and tests, minor changes in decompose * image for planning_hierarchical_search.ipynb
-
- 22 juil., 2018 1 validation
-
-
MariannaSpyrakou a écrit
* Added angelic search to planning code * Added unit tests for angelic search * Created notebook planning_angelic_search.ipynb * Fixed refinements function for HLAs
-
- 18 juil., 2018 1 validation
-
-
Anthony Marakis a écrit
-
- 15 juil., 2018 1 validation
-
-
Anthony Marakis a écrit
-
- 11 juil., 2018 3 validations
-
-
Aman Deep Singh a écrit
* Formatting fixes * Added runtime comparisons of algorithms * Added tests * Updated README.md * Added HMM explanation and contents tab * Added section on fixed lag smoothing * Added notebook sections on particle filtering and monte carlo localization * Updated README.md * Minor formatting fix * Added decision networks and information gathering agent * Added notebook sections for decision networks and information gathering agent * Updated README.md
-
Aman Deep Singh a écrit
* Added POMDP value iteration * Added plot_pomdp_utility function * Added tests for pomdp-value-iteration * Updated README.md * Fixed notebook import * Changed colors * Added notebook sections for POMDP and pomdp_value_iteration * Fixed notebook parsing error * Replace pomdp.ipynb * Updated README.md * Fixed line endings * Fixed line endings * Fixed line endings * Fixed line endings * Removed numpy dependency * Added docstrings * Fix tests * Added a test for pomdp_value_iteration * Remove numpy dependencies from mdp.ipynb * Added POMDP to mdp_apps.ipynb
-
Aman Deep Singh a écrit
* Added PartialOrderPlanner * Added doctests * Fix doctests * Added tests for PartialOrderPlanner methods * Added test for PartialOrderPlanner * Rerun planning.ipynb * Added notebook section for TotalOrderPlanner * Added image * Added notebook section for PartialOrderPlanner * Updated README.md * Refactor double tennis problem * Refactored test for double_tennis_problem * Updated README.md * Added notebook sections for job_shop_problem and double_tennis_problem * Updated README.md * Fixed refinements example * Added go_to_sfo problem * Rename TotalOrderPlanner * Renamed PDDL to PlanningProblem
-
- 22 juin, 2018 1 validation
-
-
Devesh Sawant a écrit
* test case for zebra problem * Revert "Merge remote-tracking branch 'upstream/master'" This reverts commit 5ceab1a27ff73b410200c2f84d22e0a1d79b6fbe, reversing changes made to 34997e48547a57939d568f170c60e442c2d54db5. * discarded HEAD changes for merge * added ensemble_learner jpeg * updated travis and search * Added logarithmic learner in nlp_apps (#890) * Remove zebra tests * revised Bayes learner explanation * added missing SimpleReflexAgent from upstream
-
- 23 mai, 2018 2 validations
-
-
Aman Deep Singh a écrit
* Refactored HLA * Refactors * Refactored broken tests * Cleaned up duplicated code * Cleaned up duplicated code * Added TotalOrderPlanner * Linearize helper function * Added tests for TotalOrderPlanner * Readd sussman anomaly test
-
DKE a écrit
* Added a line to child node `child_node` method of `Node` uses the `problem.result` which returns normally a state not a node according to its docstring in `Problem`. Naming the variable `next_node` can be confusing to users when it actually refers to a resulting state. * Update search.py * Update search.py
-
- 15 mai, 2018 1 validation
-
-
Aman Deep Singh a écrit
* PDDLs and Actions can now be defined using Exprs as well as Strings * Minor refactors
-
- 11 mai, 2018 4 validations
-
-
AdityaDaflapurkar a écrit
* Add stochastic game class * Update backgammon class * Update Expectiminimax * Fix lint issues * Correct compute_utility function
-
tbcdebug a écrit
should be '# Body of alphabeta_search:'
-
Aman Deep Singh a écrit
* Added MDP2 class * Updated loop termination condition in value_iteration
-
Aman Deep Singh a écrit
-
- 10 mai, 2018 1 validation
-
-
Aman Deep Singh a écrit
* GraphPlan fixed * Updated test_planning.py * Added test for spare_tire * Added test for graphplan * Added shopping problem * Added tests for shopping_problem * Updated README.md * Refactored planning notebook * Completed shopping problem * Refactors * Updated notebook * Updated test_planning.py * Removed doctest temporarily * Added planning graph image * Added section on GraphPlan * Updated README.md
-
- 15 avr., 2018 1 validation
-
-
Vinay Varma a écrit
* corrected cell type * fixed umbrella_prior not defined error * minor changes
-
- 09 avr., 2018 1 validation
-
-
AdityaDaflapurkar a écrit
* Resolve recursion issue in Backgammon class * Handle empty action list in player functions * Add play_game method for backgammon * Refactor functions * Update argmax function call
-
- 08 avr., 2018 2 validations
-
-
Vinay Varma a écrit
* added have_cake_and_eat_cake_too * renamed effect_neg to effect_rem * added have_cake_and_eat_cake_too to readme * added details to Problems in planning.ipynb Added more information for the problems Air Cargo, Spare Tire, Three Block Tower, Have Cake and Eat Cake Too. * removed a test from planning.py A test for three block tower problem is written here. I have removed it. * Style fixes * minor style fix * fixed a typo * minor fixes some sentence issues * minor changes * minor fixes
-
Vinay Varma a écrit
* refactored changes * added DLS and IDS to readme
-
- 01 avr., 2018 1 validation
-
-
Anthony Marakis a écrit
* deleting * reuploading
-