Dan Bravender
Dan Bravender
> I disagree, something like TravisCI would be more useful. @psykzz I don't think my ticket was clear enough. I meant that it would be good to have tests that...
@maciel310 I ran into this exact same problem. I was able to perform a tflite export like this: ```python ppo_model = load_model(env, 'best_model.zip') with ppo_model.graph.as_default(): tf.saved_model.simple_save(ppo_model.sess, "TEST_OUTPUT", inputs={"obs": ppo_model.policy_pi.obs_ph}, outputs={"action":...
I added a script to do this in https://github.com/davidADSP/SIMPLE/pull/34
I am working on this now. I added an environment named `remote` and I've added a test client for Tic-Tac-Toe that responds like this: ```bash $ curl http://localhost:5000/newgame {"action_space_size":9,"current_player":0,"id":"213361bf-c1c9-40a9-bca2-4bbf880fbc6d","legal_actions":[1,1,1,1,1,1,1,1,1],"observation":[0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1],"observation_space_size":9,"player_count":2} $...