First, we need to ensure you have a recent version of Anaconda installed:
-
If you don't have Anaconda, follow this Anaconda installation tutorial.
-
If you already have Anaconda: On Windows open the Start menu and open an Anaconda Command Prompt. On macOS or Linux open a terminal window:
conda update --all- In your terminal:
cdinto a folder you want to install all demos.
cd your-path- Clone the repository containing all demos
git clone https://github.com/kirenz/tfx- cd into the tfx folder
cd tfx- Now we install all needed Python libraries from the
environment.ymlfile to create a virtual environment namedtfx-env. This includes the latest version of Tensor Flow and Tensor Flow Extended:
conda env create -f environment.yml- Activate the
tfx-envenvironment:
conda activate tfx-env-
Check your version of TFX with
tfx_check.ipynb. -
Go to the folder
penguin_templateand use the starter code inpenguin_simple.ipynbto build your TFX-pipeline. -
The folder
penguin_solutionincludes a succesfull run of thepenguin_simple.ipynbfile.
- Penguin_simple
- Penguin_tfdv