MAIR icon indicating copy to clipboard operation
MAIR copied to clipboard

How to set the beta for TRADES and MART?

Open ryliu68 opened this issue 2 years ago • 2 comments

Thank you for your contributions, but I'd like to know how to set the beta for TRADES and MART.

ryliu68 avatar Mar 08 '24 08:03 ryliu68

Here are two simple examples

trainer = TRADES(
      rmodel,
      eps=EPS,
      alpha=ALPHA,
      steps=STEPS,
      beta=5.0, // the beta value
  )
trainer = MART(
      rmodel,
      eps=EPS,
      alpha=ALPHA,
      steps=STEPS,
      beta=5.0, // the beta value
  )

rikonaka avatar Jan 13 '25 08:01 rikonaka

Thank you very much.

ryliu68 avatar Jan 13 '25 12:01 ryliu68