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
Comment in the line 279 states that the probability density is 25%, but after that the randint function is used: relic_node_configs = ( jax.random.randint(... maxval=10, ).astype(jnp.float32) >= 7.5 )
Shouldn't it be something like: relic_node_configs = ( jax.random.randint(... maxval=100, ).astype(jnp.float32) >= 75 )
The text was updated successfully, but these errors were encountered:
Hello! I might be mistaking, but these lines look strange:
https://github.com/Lux-AI-Challenge/Lux-Design-S3/blob/71236024b06fb65118dc814b483339e8c7ebc11f/src/luxai_s3/state.py#L279C9-L292C10
Comment in the line 279 states that the probability density is 25%, but after that the
randint
function is used:relic_node_configs = ( jax.random.randint(... maxval=10, ).astype(jnp.float32) >= 7.5 )
Shouldn't it be something like:
relic_node_configs = ( jax.random.randint(... maxval=100, ).astype(jnp.float32) >= 75 )
The text was updated successfully, but these errors were encountered: