playerConfig.py 230 B

1234567891011121314151617181920
  1. import numpy as np
  2. DIMENSION=4
  3. MAX_STATE=10
  4. PASS=0
  5. ACT=1
  6. LOOK=2
  7. Actions=[0]*3
  8. Actions[ACT]='Act'
  9. Actions[PASS]='Pass'
  10. Actions[LOOK]='Look'
  11. Prices=[0]*3
  12. Prices[ACT]=10
  13. Prices[PASS]=3
  14. Prices[LOOK]=1
  15. Weights=np.array([3,2,1,1])