MAIR
MAIR copied to clipboard
How to set the beta for TRADES and MART?
Thank you for your contributions, but I'd like to know how to set the beta for TRADES and MART.
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
)
Thank you very much.