You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, our directory structure is basically a bunch of week* folders at the top level. However, some code is consistently reused across weeks, the most prominent example being launching xvfb. I propose to put all reusable code into a top-level directory called practical_rl.
In this case, all notebooks will have to start with
Thinking a little more about this, there is a problem which must be addressed: in the current state, our notebooks are mostly standalone and can be run via Colab. The inclusion of a library will change that.
Currently, our directory structure is basically a bunch of
week*
folders at the top level. However, some code is consistently reused across weeks, the most prominent example being launchingxvfb
. I propose to put all reusable code into a top-level directory calledpractical_rl
.In this case, all notebooks will have to start with
rather that the current (rather diverse) set of preambles.
Alternatively, we could maybe setup a custom
PYTHONPATH
, although that solution is brittle.Here is an example of what can be put in
practical_rl/__init__.py
:The text was updated successfully, but these errors were encountered: