Can environment feed model data in addition to observations?
See original GitHub issueHey!
I would like to know if the obs returned by the env.step is the only input to the model or if there is a possibility that the environment adds additional info with the returned obs?
I am not sure if the Markov state is equal to the observation provided.
Adding part of the code I refer to:
obs = env.reset()
for i in range(10000):
action, _state = model.predict(obs, deterministic=True)
obs, reward, done, info = env.step(action)
if done:
env.render()
obs = env.reset()
break
Thank you for your time!
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Should a model be re-trained if new observations are available?
When new observations are available, there are three ways to retrain your model: Online: each time a new observation is available, you use...
Read more >Integrating Multiscale Observations of US Waters (2008)
Read chapter 3 Integrating Observations, Models, and Users : Water is essential to life for humans and their food crops, and for ecosystems....
Read more >Observations Data Model 2: A community information model ...
We report an information model for spatially discrete Earth observations. •. Scientists' ability to capture metadata describing observations is improved.
Read more >How can Big Data and machine learning benefit environment ...
EWM Big Data may originate from (a) high-frequency data products derived from Earth observation systems, (b) multi-sensor data collected from ...
Read more >Q&A: How do climate models work? - Carbon Brief
Climate models are run using data on the factors that drive the climate, and projections about how these might change in the future....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
yes.
obs
is what is calledstate
in MDP, but in practice, as the env is not always fully observable,observation
is a more general term.Appreciate that, thanks!