Skip to content

Commit

Permalink
Infernce Model string support of TFNet (intel-analytics#2452)
Browse files Browse the repository at this point in the history
Noted InferenceModel predict batchSize is removed
  • Loading branch information
Song Jiaming authored Jun 15, 2020
1 parent a19757b commit 670e0ef
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/*
* Copyright 2018 Analytics Zoo Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.intel.analytics.zoo.serving

import com.intel.analytics.bigdl.tensor.Tensor
import com.intel.analytics.zoo.serving.utils.{ClusterServingHelper, SerParams}
import org.scalatest.{FlatSpec, Matchers}

class InferenceSpec extends FlatSpec with Matchers {
"TF String input" should "work" in {
// val configPath = "/home/litchy/pro/analytics-zoo/config.yaml"
val str = "abc|dff|aoa"
val eleList = str.split("\\|")
// val helper = new ClusterServingHelper(configPath)
// helper.initArgs()
// val param = new SerParams(helper)
// val model = helper.loadInferenceModel()
// val res = model.doPredict(t)
// res
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,12 @@ class PreProcessingSpec extends FlatSpec with Matchers {
val a = pre.decodeTensor(info)
a
}
"decode string tensor" should "work" in {
val pre = new PreProcessing(null)
val str = "abc|dff|aoa"
val tensor = pre.decodeString(str)
assert(tensor.valueAt(1) == "abc")
assert(tensor.valueAt(2) == "dff")
assert(tensor.valueAt(3) == "aoa")
}
}

0 comments on commit 670e0ef

Please sign in to comment.