- 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 1 validation
-
-
Nouman Ahmed a écrit
* added relu activation * added default parameters
-
- 24 mar., 2018 1 validation
-
-
Rahul Goswami a écrit
-
- 09 mar., 2018 1 validation
-
-
Peter Norvig a écrit
A new function, `injection` for dependency injection of globals (for classes and functions that weren't designed for dependency injection).
-
- 23 fév., 2018 1 validation
-
-
Robert Hönig a écrit
-
- 19 oct., 2017 1 validation
-
-
Anthony Marakis a écrit
* add failure_test method to utils * comment fix * Update test_learning.py * Update test_csp.py
-
- 02 août, 2017 1 validation
-
-
Anthony Marakis a écrit
* add prob-grammar to notebook * Update nlp.py * add weighted choice * tests for prob grammar + generation * add test for weighted choice * Update nlp.py
-
- 24 juil., 2017 2 validations
-
-
Anthony Marakis a écrit
* Update README.md * add powerset to utils * add powerset test * Create knowledge.py * Create test_knowledge.py * add header docstring to knowledge.py * update learning docstring * minor edits in knowledge.py
-
C.G.Vedant a écrit
* Fixed truncated_svd * Moved SVD algorithm to learning.py
-
- 19 juil., 2017 1 validation
-
-
C.G.Vedant a écrit
-
- 13 juin, 2017 1 validation
-
-
Anthony Marakis a écrit
* DataFile Update * Update learning.py * Update search.py * Update test_learning.py * Update test_text.py * Add files via upload * Update text.ipynb * Update search-4e.ipynb * Create CONTRIBUTING.md
-
- 08 juin, 2017 1 validation
-
-
Antonis Maronikolakis a écrit
* Delete test_grid.py * Delete grid.ipynb * Delete grid.py * Move grid functions to utils * Move grid tests to utils * Update agents.py * Update mdp.py * Update search.py
-
- 28 mai, 2017 1 validation
-
-
lucasmoura a écrit
* Create function to initialize random weights * Add sigmoid derivative function
-
- 24 mai, 2017 1 validation
-
-
C.G.Vedant a écrit
* Fix flake8 warnings * Remove unnecessary #noqa * Fix doctest
-
- 17 avr., 2017 2 validations
-
-
Antonis Maronikolakis a écrit
* Add Gaussian Function * Added Tests Add tests for Continuous Naive Bayes + Means/Standard Deviation * Update learning.py * Commenting Fix * Add test for gaussian * test for every class * Update test_learning.py * Round float results to make sure test passes
-
articuno12 a écrit
* Added test for FIFOQueue * Updated FIFOQueue * Updated FIFOQueue * FIFOQueue using deque * fixed flake8 warnings
-
- 12 avr., 2017 1 validation
-
-
C.G.Vedant a écrit
* Adds hashable dict type * Implemented permutation decoder * added test for permutation decode * Optimized permutationdecoder * relaxed tests * uses isinstance
-
- 06 avr., 2017 2 validations
-
-
C.G.Vedant a écrit
* change string format * Fixed string format
-
C.G.Vedant a écrit
* Adds hashable dict type * Implemented permutation decoder * added test for permutation decode * Optimized permutationdecoder * relaxed tests
-
- 25 mar., 2017 2 validations
-
-
lucasmoura a écrit
* Exclude test files from flake8 check * Fix flake8 for main files * Add flake8 check to build
-
lucasmoura a écrit
-
- 22 mar., 2017 1 validation
-
-
Angira Sharma a écrit
* Update test_agents.py pep8 changes, showed flake8 errors * Update test_agents.py * Update test_agents.py * Update test_agents.py * Update test_text.py added missing whitespace after comma * Update utils.py added space after comma * Update search.py added space after comma * Update probability.py added space after comma * Update learning.py added space after comma * Update planning.py added double_tennis_problem * Update rl.py In the pseudocode figure 21.8, the first 'if' starts with argument 's', which is the previous state, not s1(i.e, the current state). * Update search.py the 'uniform_cost_search' in notebook 'search-4e.ipynb' resembles more to the pseudocode in book. * Update search.py * Update search.py * Update search.py
-
- 18 mar., 2017 2 validations
-
-
articuno12 a écrit
-
sofmonk a écrit
* Update utils.py in pseudo code the sequence of arguments is " WEIGHTED-SAMPLE-WITH-REPLACEMENT(N, S, W)" same must follow in function "particle_filtering" in the file probability.py * Update learning.py weight_sample_with_replacement sequence of args * Update probability.py weighted_sample_with_replacement sequence of args * Update search.py
-
- 07 mar., 2017 2 validations
-
-
Peter Norvig a écrit
-
Peter Norvig a écrit
-
- 03 mar., 2017 1 validation
-
-
Antonis Maronikolakis a écrit
* Update search.py Commenting issues fixed (spacing and punctuation was off sometimes). * Update agents.py * Update canvas.py Grammar * Update grid.py * Update learning.py Added period * Update logic.py Fix quoting * Update mdp.py Fixed quoting * Update nlp.py Capitalization and punctuation fixes * Update planning.py * Update probability.py * Update rl.py 'th' to 'the' * Update search.py * Update text.py * Update utils.py * Update utils.py * Update utils.py * Update learning.py Typo * Update utils.py
-
- 06 août, 2016 2 validations
-
-
Tarun Kumar Vangani a écrit
-
Tarun Kumar Vangani a écrit
-
- 20 juin, 2016 1 validation
-
-
Tarun Kumar Vangani a écrit
-
- 18 avr., 2016 1 validation
-
-
Tarun Kumar Vangani a écrit
-
- 17 avr., 2016 3 validations
-
-
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 1 validation
-
-
Tarun Kumar Vangani a écrit
* Replaced mean with standard lib function introduced in 3.4 * #TODO Replaced every with all * Proper names for variables introduced in 2to3 conversion.
-
- 11 avr., 2016 2 validations
-
-
Peter Norvig a écrit
Following a suggestion by C.G.Vedant, changed |implies| to |’==>’|
-
Peter Norvig a écrit
-
- 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
* Used isclose from utils to maintain compatibilty for 3.4 * Removed redundant distancesquared function * Removed duplicate definition of clip in grid.py and used import from instead. * Fixed spelling typo
-