Not working when initial_value is numpy. #43
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
In ValueIteration, Numpy and Integer can't be compared when initial_value is given as numpy.
vi = mdptoolbox.mdp.ValueIteration(P,R,discount, initial_value=initial_values)
If initial_values is integer and greater than zero. len(integer) won't work.
Or initial_values is Numpy and it's Lengths are exactly same as S (states). initial_value == 0 won't work.
and will make Error.
"""
import mdptoolbox.example
import mdptoolbox.mdp
import numpy as np
P,R = mdptoolbox.example.forest()
initial_values = np.array([ # Forest have three state.
0,0,0
])
discount = 0.96
vi = mdptoolbox.mdp.ValueIteration(P,R,discount, initial_value=initial_values)
vi.run()
print(vi.V)
#expected : (5.93215488, 9.38815488, 13.38815488)
#result : ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()
"""