tensorflow / moonlight

Optical music recognition in TensorFlow

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support TF 2.0

ringw opened this issue · comments

TF 2.0 deletes the "contrib" package, and image functions have moved to the "addons" project: tensorflow/addons#25

It seems like every function is getting a clean-room implementation there. This project is the main user of connected_components so no one else has re-implemented it yet in addons. We should avoid any C++ ops in this project, and contribute image ops to addons instead.

Some tf.contrib.learn functions might have moved to tf.estimator. Otherwise, we will need to find a replacement in addons.

The addons blocker looks like it was implemented (API docs), so this ought to be feasible now.