在Tensorflow服务中使用TF文本时出现问题

时间:2019-07-03 16:56:12

标签: python-3.x tensorflow tensorflow-serving

我有一个带有TF文本预处理的模型,该模型包含在为Tensorflow Serving导出的图中,但存在以下错误:

library(shiny)
ui <- fluidPage(
  sidebarPanel(
    selectInput('names', 'Names', choices = c('Manel', 'Carla', 'Matilde'))
    ),
  mainPanel(
    uiOutput('name'),
    uiOutput('age'),
    uiOutput('sons')
  )
)

server <- function(input, output, session) {
  output$name <- renderText(Manel$name)
  output$age <- renderText(Manel$age)
  output$sons <- renderText(Manel$sons)
}

shinyApp(ui, server)

似乎来自TF文本的'UnicodeScriptTokenizeWithOffsets'Op不包含在TF服务器中。我看到一个解决方案可能是使用Tensorflow docker开发映像构建一个自定义服务映像以包含TF Text Ops和内核,对吗?我该怎么办?还是有一个更简单的解决方案?

我正在使用:

  • Tensorflow 2.0.0b0

  • Tensorflow文本1.0.0b0

使用来自tensorflow / serving:latest

的官方docker镜像进行服务

谢谢

马克西姆

0 个答案:

没有答案