I have a question about the regression model in tutorials (model_7), Getting started | TensorFlow Decision Forests
I want to log the accuracy, but the output is blank. I have tried:
model_7.compile(metrics=[“accuracy”])
or
model_7.compile(metrics=[“mae”, “acc”])
After evaluation, the accuracy is vary low:
evaluation = model_7.evaluate(test_ds, return_dict=True)
print()
loss: 0.0000e+00 - mae: 0.9490 - acc: 3.4258e-04
The log has no accuracy data:
logs = model_7.make_inspector().training_logs()
Do I miss something?
Thank you!