Kyungwon Chun

Results 20 issues of Kyungwon Chun

- The listing numbers from 7.03 to 7.13 were not the same as in the book. - Set the environment variable to suppress the debugging messages from TensorFlow. - Add...

- Insert listing numbers for the better contents retrival. - Limit lines of print out. Too long output makes Jupyter notebook slow. Also, it helps users navigate content easily. -...

- Change variable name, `final_cost` to `final_coeffs`. The `final_cost` is not cost, but coefficients. - Sort x_train and y1 before plotting them. The tangled curve is due to the unordered...

- `err` should be the value from `cost`, not coefficient. - Set '1' for the environment variable, 'TF_CPP_MIN_LOG_LEVEL' to suppress debugging messages. - Set seed value to `np.random` for the...

Though the lines are commented out, the first dimensions of X and Y should be one of batch_size or train_size.

The COPA training process fails with the following exception. ``` Traceback (most recent call last): File "/opt/conda/lib/python3.6/runpy.py", line 193, in _run_module_as_main "__main__", mod_spec) File "/opt/conda/lib/python3.6/runpy.py", line 85, in _run_code exec(code,...

This patch resolves the concern raised in issue #23.

The constructor of the `Graph` class has `[]` as the default value for the `vertices` parameter. However, this implementation would fail the following test code. ```python class TestGraph(unittest.TestCase): def setUp(self):...

While debugging `missionaries.py`, I discovered that the `explored` set accumulates duplicate `MCState`s. To solve this problem, I've overridden the `__eq__` and `__hash__` of the `MCState`. This patch resolves the issue...