Skip to content

Commit a81b018

Browse files
committed
Updating the installation guides by adding the Nightly package availability on PyPI cloud.
PiperOrigin-RevId: 339694831
1 parent 1985bc3 commit a81b018

File tree

3 files changed

+47
-3
lines changed

3 files changed

+47
-3
lines changed

README.md

+13
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,19 @@ The recommended way to install TFDV is using the
4141
```bash
4242
pip install tensorflow-data-validation
4343
```
44+
### Nightly Packages
45+
46+
TFDV also hosts nightly packages at https://pypi-nightly.tensorflow.org on
47+
Google Cloud. To install the latest nightly package, please use the following
48+
command:
49+
50+
```bash
51+
pip install -i https://pypi-nightly.tensorflow.org/simple tensorflow-data-validation
52+
```
53+
54+
This will install the nightly packages for the major dependencies of TFDV such
55+
as TensorFlow Transform (TFT), TFX Basic Shared Libraries (TFX-BSL), TensorFlow
56+
Metadata (TFMD).
4457

4558
## Build with Docker
4659

RELEASE.md

+17-3
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,25 @@
66

77
* Add support for detecting drift and distribution skew in numeric features.
88
* `tfdv.validate_statistics` now also reports the raw measurements of
9-
distribution skew/drift (if any is done), regardless whether skew/drift
10-
is detected. The report is in the `drift_skew_info` of the `Anomalies`
11-
proto (return value of `validate_statistics`).
9+
distribution skew/drift (if any is done), regardless whether skew/drift is
10+
detected. The report is in the `drift_skew_info` of the `Anomalies` proto
11+
(return value of `validate_statistics`).
12+
* From this release TFDV will also be hosting nightly packages on
13+
https://pypi-nightly.tensorflow.org. To install the nightly package use the
14+
following command:
15+
16+
```
17+
pip install -i https://pypi-nightly.tensorflow.org/simple tensorflow-data-validation
18+
```
19+
20+
Note: These nightly packages are unstable and breakages are likely to
21+
happen. The fix could often take a week or more depending on the complexity
22+
involved for the wheels to be available on the PyPI cloud service. You can
23+
always use the stable version of TFDV available on PyPI by running the
24+
command `pip install tensorflow-data-validation` .
1225
1326
## Bug Fixes and Other Changes
27+
1428
* Added `tfdv.load_stats_binary` to load stats what were written using
1529
`tfdv.WriteStatisticsToText` (now `tfdv.WriteStatisticsToBinaryFile`).
1630

g3doc/install.md

+17
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,23 @@ The recommended way to install TFDV is using the
4040
pip install tensorflow-data-validation
4141
```
4242

43+
### Nightly Packages
44+
45+
TFDV also hosts nightly packages at https://pypi-nightly.tensorflow.org on
46+
Google Cloud. To install the latest nightly package, please use the following
47+
command:
48+
49+
```bash
50+
pip install -i https://pypi-nightly.tensorflow.org/simple tensorflow-data-validation
51+
```
52+
53+
This will install the nightly packages for the major dependencies of TFDV such
54+
as TensorFlow Transform (TFT), TensorFlow Metadata (TFMD), TFX Basic Shared
55+
Libraries (TFX-BSL).
56+
57+
Note: These nightly packages are unstable and breakages are likely to happen.
58+
The fix could often take a week or more depending on the complexity involved.
59+
4360
## Build with Docker
4461

4562
This is the recommended way to build TFDV under Linux, and is continuously

0 commit comments

Comments
 (0)