Skip to content

Commit f2e83f1

Browse files
committed
Merge branch 'main' of into main-public
2 parents 1612263 + 5ff85d3 commit f2e83f1

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ on making code changes.
106106
pip install tensorflow-text==2.11.0
107107
```
108108
109-
1. For distributed/multinode training, follow these additional [distributed training instructions](https://github.com/IntelAI/transfer-learning-tool/tlt/distributed).
109+
1. For distributed/multinode training, follow these additional [distributed training instructions](https://github.com/IntelAI/transfer-learning-tool/tree/main/tlt/distributed).
110110
111111
### Verify Installation
112112
@@ -155,13 +155,13 @@ efficientnet_b1 (tensorflow)
155155
...
156156
```
157157
158-
See the [full list of supported models](https://github.com/IntelAI/transfer-learning-tool/Models.md).
158+
See the [full list of supported models](https://github.com/IntelAI/transfer-learning-tool/tree/main/Models.md).
159159
160160
**Train a model**:
161161
This example uses the CLI to train an image classifier to identify different types of flowers.
162162
Make sure to specify your own file paths for `dataset-dir` and `output-dir`. The `dataset-dir` should
163163
point to the [extracted flowers dataset](#prepare-the-dataset). For more information on using different
164-
datasets, see the [CLI examples](https://github.com/IntelAI/transfer-learning-tool/examples/cli/).
164+
datasets, see the [CLI examples](https://github.com/IntelAI/transfer-learning-tool/tree/main/examples/cli).
165165
```
166166
tlt train -f tensorflow --model-name resnet_v1_50 --dataset-dir /tmp/dataset/flower_photos --output-dir /tmp/output
167167
```
@@ -183,12 +183,12 @@ is printed out to the console. A numbered folder is created for each training ru
183183
The training command also evalutes the trained model and prints out accuracy and loss metrics.
184184
Evaluation can also be called separately using `tlt eval`. The trained model can also be benchmarked
185185
using `tlt benchmark` or quantized using `tlt quantize`.
186-
See the [CLI documentation](https://github.com/IntelAI/transfer-learning-tool/examples/cli/README.md) for more examples using the CLI.
186+
See the [CLI documentation](https://github.com/IntelAI/transfer-learning-tool/tree/main/examples/cli/README.md) for more examples using the CLI.
187187
188188
## Use the Low-code API
189189
The following example trains an image classification model with the TensorFlow flowers dataset using the API.
190190
Additionally, the model is benchmarked and quantized to int8 precision for improved inference performance.
191-
If you want to run the API using a Jupyter notebook, see the [notebook setup instructions](https://github.com/IntelAI/transfer-learning-tool/blob/main/notebooks/setup.md).
191+
If you want to run the API using a Jupyter notebook, see the [notebook setup instructions](https://github.com/IntelAI/transfer-learning-tool/tree/main/notebooks/setup.md).
192192
193193
```python
194194
from tlt.datasets import dataset_factory
@@ -266,8 +266,8 @@ notebooks, and for real-world examples check out the reference workflows.
266266

267267
Check out these Reference Kits and Workflows that use Intel Transfer Learning Tool:
268268

269-
* [Breast Cancer Detection]()
270-
* [Anomaly Detection]()
269+
* [Breast Cancer Detection](https://github.com/IntelAI/transfer-learning/tree/main/workflows/disease_prediction)
270+
* [Anomaly Detection](https://github.com/IntelAI/transfer-learning/tree/main/workflows/vision_anomaly_detection)
271271

272272
## Support
273273

0 commit comments

Comments
 (0)