2020-01-09 01:21:09 +01:00
|
|
|
/*
|
2020-02-21 01:14:45 +01:00
|
|
|
Package classify encapsulates image classification functionnality using TensorFlow
|
2020-01-09 01:21:09 +01:00
|
|
|
|
|
|
|
Additional information can be found in our Developer Guide:
|
|
|
|
|
|
|
|
https://github.com/photoprism/photoprism/wiki
|
|
|
|
*/
|
|
|
|
package classify
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/photoprism/photoprism/internal/event"
|
|
|
|
)
|
|
|
|
|
|
|
|
//go:generate go run gen.go
|
|
|
|
|
|
|
|
var log = event.Log
|