-
-
Notifications
You must be signed in to change notification settings - Fork 21
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
[finite_markov] notational changes #174
Conversation
source/rst/finite_markov.rst
Outdated
@@ -1483,7 +1484,7 @@ Exercise 2 | |||
from operator import itemgetter | |||
|
|||
infile = 'web_graph_data.txt' | |||
alphabet = 'abcdefghijklmnopqrstuvwxyz' | |||
lambdabet = 'abcdefghijklmnopqrstuvwxyz' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please fix this and other examples of "alphabet" below.
source/rst/finite_markov.rst
Outdated
@@ -1343,7 +1344,7 @@ The following code snippet provides a hint as to how you can go about this | |||
.. code-block:: python3 | |||
|
|||
import re | |||
re.findall('\w', 'x +++ y ****** z') # \w matches alphanumerics | |||
re.findall('\w', 'x +++ y ****** z') # \w matches lambdanumerics | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @Harveyt47 , here also should be changed to "alphanumerics"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @sayaikegawa yes I'll make a the change. Thanks @sayaikegawa.
Hi @jstac
This is the notational change in finite markov of #51 .
I changed the notation of \alpha -> \lambda, \beta -> \alpha and \lambda -> \pi.
I have also clarified that here beta is a discount factor.