1

I'm new to TFX and a bit confused about what the v1 about, and what is its relationship with the code outside v1?

Do I understand correctly that the official APIs are in v1, meaning I should always do

import tfx.v1.something

instead of just

import tfx.something
zyxue
  • 7,904
  • 5
  • 48
  • 74
  • `tfx.v1` is a public API from `TFX` which is designed to have similar notation as that of `TensorFlow`, where if we `import tfx.v1 as tfx` once, We can use any function `tfx.a.b.c` instead of doing `from tfx.a.b import c` separately every single time. Thanks! –  Mar 30 '22 at 04:26

0 Answers0