|
386 | 386 | "## Data Formats and Schema\n", |
387 | 387 | "\n", |
388 | 388 | "TFT Beam implementation accepts two different input data formats. The\n", |
389 | | - "\"instance dict\" format (as seen in the example above and [simple.ipynb](https://www.tensorflow.org/tfx/tutorials/transform/simple) \u0026 [simple_example.py](https://github.com/tensorflow/transform/blob/master/examples/simple_example.py))\n", |
| 389 | + "\"instance dict\" format (as seen in the example above and [simple.ipynb](https://tensorflow.github.io/tfx/tutorials/transform/simple) \u0026 [simple_example.py](https://github.com/tensorflow/transform/blob/master/examples/simple_example.py))\n", |
390 | 390 | "is an intuitive format and is suitable for small datasets while the TFXIO\n", |
391 | 391 | "([Apache Arrow](https://arrow.apache.org)) format provides improved performance\n", |
392 | 392 | "and is suitble for large datasets.\n", |
|
562 | 562 | "## Compatibility with TensorFlow\n", |
563 | 563 | "\n", |
564 | 564 | "`tf.Transform` provides support for exporting the `transform_fn` as\n", |
565 | | - "a SavedModel, see the [simple tutorial](https://www.tensorflow.org/tfx/tutorials/transform/simple) for an example. The default behavior before the `0.30` release\n", |
| 565 | + "a SavedModel, see the [simple tutorial](https://tensorflow.github.io/tfx/tutorials/transform/simple) for an example. The default behavior before the `0.30` release\n", |
566 | 566 | "exported a TF 1.x SavedModel. Starting with the `0.30` release, the default\n", |
567 | 567 | "behavior is to export a TF 2.x SavedModel unless TF 2.x behaviors are explicitly\n", |
568 | 568 | "disabled (by calling `tf.compat.v1.disable_v2_behavior()`).\n", |
569 | 569 | "\n", |
570 | 570 | "If using TF 1.x concepts such as `tf.estimator` and `tf.Sessions`, you can retain the previous behavior by passing `force_tf_compat_v1=True` to\n", |
571 | | - "[`tft_beam.Context`](https://www.tensorflow.org/tfx/transform/api_docs/python/tft_beam/Context)\n", |
| 571 | + "[`tft_beam.Context`](https://tensorflow.github.io/api_docs/python/tft-beam/#tensorflow_transform.beam.Context)\n", |
572 | 572 | "if using `tf.Transform` as a standalone library or to the\n", |
573 | | - "[Transform](https://www.tensorflow.org/tfx/api_docs/python/tfx/components/Transform)\n", |
| 573 | + "[Transform](https://tensorflow.github.io/tfx/api/v1/components/#tfx.v1.components.Transform)\n", |
574 | 574 | "component in TFX.\n", |
575 | 575 | "\n", |
576 | 576 | "When exporting the `transform_fn` as a TF 2.x SavedModel, the `preprocessing_fn`\n", |
|
580 | 580 | "[here](https://beam.apache.org/documentation/sdks/python-pipeline-dependencies/#multiple-file-dependencies).\n", |
581 | 581 | "\n", |
582 | 582 | "Known issues with using `tf.Transform` to export a TF 2.x SavedModel are\n", |
583 | | - "documented [here](https://www.tensorflow.org/tfx/transform/tf2_support)." |
| 583 | + "documented [here](../tf2_support)." |
584 | 584 | ] |
585 | 585 | }, |
586 | 586 | { |
|
618 | 618 | "and can also give `tfxio.TensorAdapterConfig`, including inferred\n", |
619 | 619 | "`tfxio.TensorRepresentations`.\n", |
620 | 620 | "\n", |
621 | | - "Those `TFXIO`s can be found in package `tfx_bsl` ([`tfx_bsl.public.tfxio`](https://www.tensorflow.org/tfx/tfx_bsl/api_docs/python/tfx_bsl/public/tfxio)).\n" |
| 621 | + "Those `TFXIO`s can be found in package `tfx_bsl` ([`tfx_bsl.public.tfxio`](https://tensorflow.github.io/tfx-bsl/api_docs/python/tfxio/)).\n" |
622 | 622 | ] |
623 | 623 | }, |
624 | 624 | { |
|
753 | 753 | " from the type and shape information. One can get the Schema either by\n", |
754 | 754 | " using a helper function we provide to translate from TF parsing specs\n", |
755 | 755 | " (shown in this example), or by running\n", |
756 | | - " [TensorFlow Data Validation](https://www.tensorflow.org/tfx/tutorials/data_validation/tfdv_basic).\n", |
| 756 | + " [TensorFlow Data Validation](https://tensorflow.github.io/tfx/tutorials/data_validation/tfdv_basic).\n", |
757 | 757 | " - a list of column names, in the order they appear in the CSV file. Note\n", |
758 | 758 | " that those names must match the feature names in the Schema." |
759 | 759 | ] |
|
1047 | 1047 | "id": "OllPVQJl2dRx" |
1048 | 1048 | }, |
1049 | 1049 | "source": [ |
1050 | | - "To see how to use these artifacts refer to the [Advanced preprocessing tutorial](https://www.tensorflow.org/tfx/tutorials/transform/census)." |
| 1050 | + "To see how to use these artifacts refer to the [Advanced preprocessing tutorial](https://tensorflow.github.io/tfx/tutorials/transform/census)." |
1051 | 1051 | ] |
1052 | 1052 | } |
1053 | 1053 | ], |
|
0 commit comments