tf_agents learner.run() blocked - python

I've encountered a weird question. When I'm using tf_agents, I create a learner. However, when I call learner.run(), it never returned. Seems like it got stuck somewhere, but I don't know why. There is no error in the output. The program just 'stopped'. Is there any possible explaination towards this problem?

Related

#local_config_python issue in RBE

I've been having this error while setting up remote exec with python.
The #local_config_python platform rule says it doesn't find the Python-ast.h file. Please, has anyone encountered a problem like that. Here's out it looks. I apologize for my lack of clarity, I don't really understand the problem.

Recover unsaved code in spyder IDE with history log

Spyder crashed but I didn't saved the code I was working on. When I restarted Spyder, obviously my code was gone. I found out, that I somehow can get the code back with the command hist -g. I have tried this, but this only allows me to see statements like this: runfile('XXXX', wdir='XXX')
Is there a way to get my code back? Despite of one other question on stackoverflow i couldnt find anything related to my problem.
[Sorry if I understood something completly wrong or if I have grammar- or spellingerros. This is my first coding internship and English is not my native language, I'll try to improve both in the future :)]

How can I Bypass Error to Continue a Call Made in Python?

This is my first time coding and Python seems to be a pretty easy language. However, I am running into an issue.
I am getting SNS topic attributes from AWS and it returns quite a few results. It stalls and gives an internal error -- I have researched the try/except statement and so far I have been able to use it to clear the error. How do I get the script to continue after the error has been cleared?

Ride.py shows Calling method 'start_keyword' of listener XXX failed

I'm trying to run an automated test in Ride.py. This test works on my colleague's computer but for some reason does not work on mine. The test starts but at a certain point i get the following error:
[ ERROR ] Calling method 'start_keyword' of listener 'C:\Python27\lib\site-packages\robotide\contrib\testrunner\TestRunnerAgent.py' failed: IndexError: list index out of range
The interesting part is that this error occurs on the same spot ever time, but with a different test it happens at a different time.
I tried to google several things and nothing worked. One solution suggested there was a '#' commented somewhere and this caused the crash. I looked but I don't see a '#' commented anywhere.
Another suggestion lead me to believe my testrunneragent.py file must have been installed wrong. I went online to find the file and replaced it. This did not work either (reran the test before and after a restart of ride)
We tried to re-import the test files thinking perhaps something went wrong there. This did not help either.
Googling juts the last part (IndexError: list index out of range) gave me the suggestion it does not recognize all the lines of code in the back-end file. I would have no clue how to solve this as im not a major coder.
One difference between me and my colleague could be the versions. I downloaded python version 2.7.16 and ride 1.7.3.1. My colleague uses an older version of both python and RIDE. Perhaps the problem could be here?
https://paste.fedoraproject.org/paste/TLekH3az0m4wuUyM8C2RYw
I expect the test will run without failing (it is a happy flow) I have included some screenshots with code in the previous segment that might help
downgraded to the same version of Ride.py
This seems to have fixed the issue

What does StructMeta mean in an error message, and how do I fix it?

I obtained the error message below in a Python program using Gtk.TreeStore and its associated classes.
TypeError: Expected Gtk.TreeIter, but got StructMeta
The error was generated immediately after using using the Gtk.TreeModelFilter method convert_child_iter_to_iter(), which is supposed to return a Gtk.TreeIter. However, the first use of the returned object generates the above message, which does not seem to make any sense to me. What is really confusing, I have been using the reverse process Gtk.TreeModelFilter.convert_iter_to_child_iter() with no ill effects at all.
I have trolled the internet looking for some explanation, but so far I have drawn a blank. I can't even decide if this is a Gtk problem, a Python problem, or a Gtk-introspection problem. Is there anyone out there who can shed light on this?

Categories

Resources