mattn
mattn
I prefer to do with TeeReader. ```go type Client struct { ... JsonWriter io.Writer } ``` ```go if c.JsonWriter != nil { return json.NewDecoder(io.TeeReader(resp.Body, c.JsonWriter)).Decode(&res) } else { return json.NewDecoder(resp.Body).Decode(&res)...
It can check before call Write() ```go if resetter, ok := c.JSONWriter.(WriterResetter); ok { resetter.Reset() } ```
Did you see example directory?
What about ssd ? https://user-images.githubusercontent.com/10111/200126310-98cb6ea0-903a-496b-9f52-c217d6de22ba.mp4
Could you please share the stacktrace of SEGV ?
Could you please show me the diff ?
I wonder that boundary of the slice which is defined your model file is matched.
Do you mean that the libtensorflowlite_flex.so is delegator for flex ? Then, go-tflite does not support it.
go-tflite is using delegate interface https://github.com/mattn/go-tflite/tree/master/delegates If want to add the feature, we need to add new delegate.