Skip to content

Commit baf44d5

Browse files
authored
Update README.md
1 parent 7b5fac8 commit baf44d5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Covered knowledge points:
2020

2121
# Build on OSX
2222

23-
## Build TensorFlow
23+
## 1) Build TensorFlow
2424
Follow the instruction [build tensorflow from source](https://github.com/tensorflow/tensorflow/tree/master/tensorflow/contrib/makefile)
2525
```bash
2626
git clone --recursive https://github.com/tensorflow/tensorflow.git
@@ -29,7 +29,7 @@ sh tensorflow/contrib/makefile/build_all_linux.sh (works for linux and osx)
2929
cd ..
3030
```
3131

32-
## Build this repo
32+
## 2) Build this repo
3333
Keep this repo in the same directory with tensorflow.
3434
```bash
3535
git clone https://github.com/formath/tensorflow-predictor-cpp.git
@@ -73,24 +73,24 @@ This demo show a real-world deep model usage in click through rate prediction.
7373

7474
More detail in Chinese: [tensorflow_c++_api_prediction](http://mathmach.com/2017/10/11/tensorflow_c++_api_prediction_second/)
7575

76-
## Transform LibFM data into TFRecord
76+
## 1) Transform LibFM data into TFRecord
7777
* LibFM format: `label fieldId:featureId:value ...`
7878
```bash
7979
cd demo/deep_model
8080
sh trans_data_to_tfrecord.sh
8181
```
8282

83-
## Train model
83+
## 2) Train model
8484
```bash
8585
sh train.sh
8686
```
8787

88-
## Freeze model
88+
## 3) Freeze model
8989
```bash
9090
sh freeze_graph.sh
9191
```
9292

93-
## Predict using C++
93+
## 4) Predict using C++
9494
```bash
9595
sh predict.sh
9696
```

0 commit comments

Comments
 (0)