-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
50 lines (40 loc) · 1.06 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package main
import (
"flag"
"fmt"
"log"
"math/rand"
"net/http"
"time"
)
const (
maxImageHeight = 600
maxImageWidth = 1000
)
var (
htmlRoot = flag.String("html-root", "html-root", "directory containing files to serve")
port = flag.Int("port", 8080, "port to listen on")
modelServerURL = flag.String("model-server-url", "http://localhost:8000", "model server URL")
)
func main() {
rand.Seed(time.Now().UnixNano())
flag.Parse()
log.Println("requesting categories from model server")
categories, err := getCategories(*modelServerURL)
if err != nil {
log.Fatal(err)
}
log.Printf("%d categories loaded\n", len(categories))
http.Handle("/", http.FileServer(http.Dir(*htmlRoot)))
http.Handle("/classify", &classifyHandler{
MaxImageHeigth: maxImageHeight,
MaxImageWidth: maxImageWidth,
modelServerURL: *modelServerURL,
categories: categories,
})
http.Handle("/categories", &categoryHandler{
categories: categories,
})
log.Println("ready to serve requests")
log.Fatal(http.ListenAndServe(fmt.Sprintf("0.0.0.0:%d", *port), nil))
}