I have code for BoostedTreesClassifier which works, but takes a very long time with the amount of data i'm feeding it and the parameters i'm choosing i.e max_depth https://www.tensorflow.org/api_docs/python/tf/estimator/BoostedTreesClassifier
I'm attempting to use BoostedTreesClassifier estimator in Colab with TPUs, using TPUEstimator https://www.tensorflow.org/api_docs/python/tf/contrib/tpu/TPUEstimator
Is BoostedTreesClassifier possible with TPUEstimator? I am seeing that only neural networks can be used with Estimator/TPUEstimator https://www.tensorflow.org/guide/using_tpu
What is the correct approach to get BoostedTreesClassifier working with Colab TPUs?
tpu_estimator = tf.contrib.tpu.TPUEstimator(
model_fn=model_fn,
config=my_tpu_run_config,
train_batch_size=100,
use_tpu=True)