Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ab9820f

Browse files
antmarakisnorvig
authored andcommitted
Readme/Intro Inconsistencies (aimacode#624)
* Update README.md * Update intro.ipynb
1 parent 718224a commit ab9820f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ In addition to the `filename.py` files, there are also `filename.ipynb` files, w
1616

1717
## Structure of the Project
1818

19-
When complete, this project will have Python code for all the pseudocode algorithms in the book. For each major topic, such as `logic`, we will have the following three files in the main branch:
19+
When complete, this project will have Python code for all the pseudocode algorithms in the book. For each major topic, such as `nlp`, we will have the following three files in the main branch:
2020

2121
- `nlp.py`: Implementations of all the pseudocode algorithms, and necessary support functions/classes/data.
2222
- `nlp.ipynb`: A Jupyter (IPython) notebook that explains and gives examples of how to use the code.
@@ -29,7 +29,7 @@ Here is a table of algorithms, the figure, name of the algorithm in the book and
2929

3030
| **Figure** | **Name (in 3<sup>rd</sup> edition)** | **Name (in repository)** | **File** | **Tests**
3131
|:--------|:-------------------|:---------|:-----------|:-------|
32-
| 2.1 | Environment | `Environment` | [`agents.py`][agents] | |
32+
| 2.1 | Environment | `Environment` | [`agents.py`][agents] | Done |
3333
| 2.1 | Agent | `Agent` | [`agents.py`][agents] | Done |
3434
| 2.3 | Table-Driven-Vacuum-Agent | `TableDrivenVacuumAgent` | [`agents.py`][agents] | |
3535
| 2.7 | Table-Driven-Agent | `TableDrivenAgent` | [`agents.py`][agents] | |

intro.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"source": [
77
"# An Introduction To `aima-python` \n",
88
" \n",
9-
"The [aima-python](https://github.com/aimacode/aima-python) repository implements, in Python code, the algorithms in the textbook *[Artificial Intelligence: A Modern Approach](http://aima.cs.berkeley.edu)*. A typical module in the repository has the code for a single chapter in the book, but some modules combine several chapters. See [the index](https://github.com/aimacode/aima-python#index-of-code) if you can't find the algorithm you want. The code in this repository attempts to mirror the pseudocode in the textbook as closely as possible and to stress readability foremost; if you are looking for high-performance code with advanced features, there are other repositories for you. For each module, there are three files, for example:\n",
9+
"The [aima-python](https://github.com/aimacode/aima-python) repository implements, in Python code, the algorithms in the textbook *[Artificial Intelligence: A Modern Approach](http://aima.cs.berkeley.edu)*. A typical module in the repository has the code for a single chapter in the book, but some modules combine several chapters. See [the index](https://github.com/aimacode/aima-python#index-of-code) if you can't find the algorithm you want. The code in this repository attempts to mirror the pseudocode in the textbook as closely as possible and to stress readability foremost; if you are looking for high-performance code with advanced features, there are other repositories for you. For each module, there are three/four files, for example:\n",
1010
"\n",
1111
"- [**`nlp.py`**](https://github.com/aimacode/aima-python/blob/master/nlp.py): Source code with data types and algorithms for natural language processing; functions have docstrings explaining their use.\n",
1212
"- [**`nlp.ipynb`**](https://github.com/aimacode/aima-python/blob/master/nlp.ipynb): A notebook like this one; gives more detailed examples and explanations of use.\n",

0 commit comments

Comments
 (0)