IMDB_GO_CLIENT.md 3.6 KB
Newer Older
D
Dong Daxiang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
# How to use Go Client of Paddle Serving

This document shows how to use Go as your client language. For Go client in Paddle Serving, a simple client package is provided https://github.com/PaddlePaddle/Serving/tree/develop/go/serving_client, a user can import this package as needed. Here is a simple example of sentiment analysis task based on IMDB dataset.

### Install

We suppose you have 1.9.2 or later version installed and python 2.7 version installed

```shell
go get github.com/PaddlePaddle/Serving/go/serving_client
go get github.com/PaddlePaddle/Serving/go/proto
pip install paddle-serving-server
```

### Download Text Classification Model

``` shell
wget https://paddle-serving.bj.bcebos.com/data%2Ftext_classification%2Fimdb_serving_example.tar.gz
tar -xzf imdb_serving_example.tar.gz
```

### Start Server

``` shell
D
dongdaxiang 已提交
25
python -m paddle_serving_server.serve --model ./serving_server_model/ --port 9292
D
Dong Daxiang 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
```

### Client code example

``` go
// imdb_client.go
package main

import (
       "io"
       "fmt"
       "strings"
       "bufio"
       "strconv"
       "os"
D
Dong Daxiang 已提交
41
       serving_client "github.com/PaddlePaddle/Serving/go/serving_client"
D
Dong Daxiang 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
)

func main() {
     var config_file_path string
     config_file_path = os.Args[1]
     handle := serving_client.LoadModelConfig(config_file_path)
     handle = serving_client.Connect("127.0.0.1", "9292", handle)

     test_file_path := os.Args[2]
     fi, err := os.Open(test_file_path)
     if err != nil {
     	fmt.Print(err)
     }

     defer fi.Close()
     br := bufio.NewReader(fi)

     fetch := []string{"cost", "acc", "prediction"}     

     var result map[string][]float32

     for {
     	 line, err := br.ReadString('\n')
D
Dong Daxiang 已提交
65
	 if err == io.EOF {
D
Dong Daxiang 已提交
66
	       break
D
Dong Daxiang 已提交
67
	 }
D
Dong Daxiang 已提交
68

D
Dong Daxiang 已提交
69
	 line = strings.Trim(line, "\n")
D
Dong Daxiang 已提交
70

D
Dong Daxiang 已提交
71
	 var words = []int64{}
D
Dong Daxiang 已提交
72

D
Dong Daxiang 已提交
73 74 75
	 s := strings.Split(line, " ")
	 value, err := strconv.Atoi(s[0])
	 var feed_int_map map[string][]int64
D
Dong Daxiang 已提交
76
       
D
Dong Daxiang 已提交
77
	 for _, v := range s[1:value + 1] {
D
Dong Daxiang 已提交
78 79
	       int_v, _ := strconv.Atoi(v)
	       words = append(words, int64(int_v))
D
Dong Daxiang 已提交
80
	 }
D
Dong Daxiang 已提交
81

D
Dong Daxiang 已提交
82
	 label, err := strconv.Atoi(s[len(s)-1])
D
Dong Daxiang 已提交
83

D
Dong Daxiang 已提交
84
	 if err != nil {
D
Dong Daxiang 已提交
85
	       panic(err)
D
Dong Daxiang 已提交
86
	 }
D
Dong Daxiang 已提交
87

D
Dong Daxiang 已提交
88 89 90
	 feed_int_map = map[string][]int64{}
	 feed_int_map["words"] = words
	 feed_int_map["label"] = []int64{int64(label)}
D
Dong Daxiang 已提交
91
	 
D
Dong Daxiang 已提交
92 93
	 result = serving_client.Predict(handle, feed_int_map, fetch)
	 fmt.Println(result["prediction"][1], "\t", int64(label))
D
Dong Daxiang 已提交
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
    }
}
```

### Prediction based on IMDB Test set

``` python
go run imdb_client.go serving_client_conf/serving_client_conf.stream.prototxt test.data > result
```



### Compute accuracy

```python
// acc.go
package main

import (
       "io"
       "os"
       "fmt"
       "bufio"
       "strings"
       "strconv"
)

func main() {
     score_file := os.Args[1]
     fi, err := os.Open(score_file)
     if err != nil {
     	fmt.Print(err)
     }

     defer fi.Close()
     br := bufio.NewReader(fi)     
    
     total := int(0)
     acc := int(0)
     for {
     	 line, err := br.ReadString('\n')
     if err == io.EOF {
        break
     }
    
     line = strings.Trim(line, "\n")
     s := strings.Split(line, "\t")
     prob_str := strings.Trim(s[0], " ")
     label_str := strings.Trim(s[1], " ")
     prob, err := strconv.ParseFloat(prob_str, 32)
     if err != nil {
        panic(err)
     }
     label, err := strconv.ParseFloat(label_str, 32)
     if err != nil {
        panic(err)
     }
     if (prob - 0.5) * (label - 0.5) > 0 {
        acc++
     }
     total++
    }
    fmt.Println("total num: ", total)
    fmt.Println("acc num: ", acc)
    fmt.Println("acc: ", float32(acc) / float32(total))    

}
```

D
Dong Daxiang 已提交
163
```shell
D
Dong Daxiang 已提交
164
go run acc.go result
D
Dong Daxiang 已提交
165 166 167
total num:  25000
acc num:  22014
acc:  0.88056
D
Dong Daxiang 已提交
168
```