README.md 4.61 KB
Newer Older
1
2
3
4
5
<div align="center">
  <img src="https://storage.googleapis.com/tf_model_garden/tf_model_garden_logo.png">
</div>

[![Python](https://img.shields.io/pypi/pyversions/tensorflow.svg?style=plastic)](https://badge.fury.io/py/tensorflow)
Hongkun Yu's avatar
Hongkun Yu committed
6
[![tf-models-official PyPI](https://badge.fury.io/py/tf-models-official.svg)](https://badge.fury.io/py/tf-models-official)
Hongkun Yu's avatar
Hongkun Yu committed
7

Jaeyoun Kim's avatar
Jaeyoun Kim committed
8

Jaeyoun Kim's avatar
Jaeyoun Kim committed
9
# Welcome to the Model Garden for TensorFlow
Quoc Le's avatar
Quoc Le committed
10

11
12
13
14
15
16
17
18
19
The TensorFlow Model Garden is a repository with a number of different
implementations of state-of-the-art (SOTA) models and modeling solutions for
TensorFlow users. We aim to demonstrate the best practices for modeling so that
TensorFlow users can take full advantage of TensorFlow for their research and
product development.

To improve the transparency and reproducibility of our models, training logs on
[TensorBoard.dev](https://tensorboard.dev) are also provided for models to the
extent possible though not all models are suitable.
Quoc Le's avatar
Quoc Le committed
20

21
| Directory | Description |
Jaeyoun Kim's avatar
Jaeyoun Kim committed
22
|-----------|-------------|
23
24
| [official](official) | • A collection of example implementations for SOTA models using the latest TensorFlow 2's high-level APIs<br />• Officially maintained, supported, and kept up to date with the latest TensorFlow 2 APIs by TensorFlow<br />• Reasonably optimized for fast performance while still being easy to read |
| [research](research) | • A collection of research model implementations in TensorFlow 1 or 2 by researchers<br />• Maintained and supported by researchers |
25
| [community](community) | • A curated list of the GitHub repositories with machine learning models and implementations powered by TensorFlow 2 |
Jaeyoun Kim's avatar
Jaeyoun Kim committed
26
| [orbit](orbit) | • A flexible and lightweight library that users can easily use or fork when writing customized training loop code in TensorFlow 2.x. It seamlessly integrates with `tf.distribute` and supports running on different device types (CPU, GPU, and TPU). |
Quoc Le's avatar
Quoc Le committed
27

28
29
30
31
32
33
34
35
## Installation

To install the current release of tensorflow-models, please follow any one of the methods described below.

#### Method 1: Install the TensorFlow Model Garden pip package

<details>

Hongkun Yu's avatar
Hongkun Yu committed
36
37
**tf-models-official** is the stable Model Garden package. Please check out the [releases](https://github.com/tensorflow/models/releases) to see what are available modules.

38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
pip will install all models and dependencies automatically.

```shell
pip3 install tf-models-official
```

If you are using nlp packages, please also install **tensorflow-text**:

```shell
pip3 install tensorflow-text
```

Please check out our [example](https://github.com/tensorflow/text/blob/master/docs/tutorials/fine_tune_bert.ipynb)
to learn how to use a PIP package.

Note that **tf-models-official** may not include the latest changes in this
github repo. To include latest changes, you may install **tf-models-nightly**,
which is the nightly Model Garden package created daily automatically.

```shell
pip3 install tf-models-nightly
```

If you are using `nlp` packages, please also install tensorflow-text-nightly

```shell
pip3 install tensorflow-text-nightly
```
</details>


#### Method 2: Clone the source

<details>

1. Clone the GitHub repository:

```shell
git clone https://github.com/tensorflow/models.git
```

2. Add the top-level ***/models*** folder to the Python path.

```shell
export PYTHONPATH=$PYTHONPATH:/path/to/models
```

If you are using a Colab notebook, please set the Python path with os.environ.

```python
import os
os.environ['PYTHONPATH'] += ":/path/to/models"
```

3. Install other dependencies

```shell
pip3 install --user -r official/requirements.txt
```

Finally, if you are using nlp packages, please also install
**tensorflow-text-nightly**:

```shell
pip3 install tensorflow-text-nightly
```

</details>


## Announcements

Please check [this page](https://github.com/tensorflow/models/wiki/Announcements) for recent announcements.
111
112

## Contributions
113

Jaeyoun Kim's avatar
Jaeyoun Kim committed
114
[![help wanted:paper implementation](https://img.shields.io/github/issues/tensorflow/models/help%20wanted%3Apaper%20implementation)](https://github.com/tensorflow/models/labels/help%20wanted%3Apaper%20implementation)
Jaeyoun Kim's avatar
Jaeyoun Kim committed
115

Jaeyoun Kim's avatar
Jaeyoun Kim committed
116
If you want to contribute, please review the [contribution guidelines](https://github.com/tensorflow/models/wiki/How-to-contribute).
117
118
119
120

## License

[Apache License 2.0](LICENSE)
Jaeyoun Kim's avatar
Jaeyoun Kim committed
121
122
123
124
125
126
127

## Citing TensorFlow Model Garden

If you use TensorFlow Model Garden in your research, please cite this repository.

```
@misc{tensorflowmodelgarden2020,
128
129
  author = {Hongkun Yu, Chen Chen, Xianzhi Du, Yeqing Li, Abdullah Rashwan, Le Hou, Pengchong Jin, Fan Yang,
            Frederick Liu, Jaeyoun Kim, and Jing Li},
Jaeyoun Kim's avatar
Jaeyoun Kim committed
130
  title = {{TensorFlow Model Garden}},
Jaeyoun Kim's avatar
Jaeyoun Kim committed
131
  howpublished = {\url{https://github.com/tensorflow/models}},
Jaeyoun Kim's avatar
Jaeyoun Kim committed
132
  year = {2020}
Jaeyoun Kim's avatar
Jaeyoun Kim committed
133
134
}
```