Sadly, we don't have a native tensorflow API yet :(.
Is there an easy way to wrap your algorithm as a scikit-learn estimator? (I remember there was scikit-flow, but this is now folded into TensorFlow itself, right?) If so, you can probably just piggyback on our sklearn API. I haven't tried that before, though.
If not, this will be quite a bit of work, since you'd basically need to write a tensorflow extension for our Python API.
Worst case, you could still use our Python API to download tasks (datasets + train/test splits), run experiments locally, and compare them to previous results on the same tasks. But you won't be able to upload your algorithms and experiments automatically yet.
If any of this sounds interesting, let me know.
Best,
Joaquin