Skip to content

Commit dba6893

Browse files
committed
add new model with more lag, reduce temp a bit
1 parent f6491cb commit dba6893

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

models/tinyphysics.onnx

0 Bytes
Binary file not shown.

tinyphysics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def get_current_lataccel(self, sim_states: List[State], actions: List[float], pa
8686
'states': np.expand_dims(states, axis=0).astype(np.float32),
8787
'tokens': np.expand_dims(tokenized_actions, axis=0).astype(np.int64)
8888
}
89-
return self.tokenizer.decode(self.predict(input_data, temperature=1.))
89+
return self.tokenizer.decode(self.predict(input_data, temperature=0.8))
9090

9191

9292
class TinyPhysicsSimulator:

0 commit comments

Comments
 (0)