#
# 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.
#
import sys
import six
from bigdl.util.common import JavaValue
from zoo.common.utils import callZooFunc
if sys.version >= '3':
long = int
unicode = str
[docs]class TextFeature(JavaValue):
"""
Each TextFeature keeps information of a single text record.
It can include various status (if any) of a text,
e.g. original text content, uri, category label, tokens, index representation
of tokens, BigDL Sample representation, prediction result and so on.
"""
def __init__(self, text=None, label=None, uri=None, jvalue=None, bigdl_type="float"):
if text is not None:
assert isinstance(text, six.string_types), "text of a TextFeature should be a string"
if uri is not None:
assert isinstance(uri, six.string_types), "uri of a TextFeature should be a string"
if label is not None:
super(TextFeature, self).__init__(jvalue, bigdl_type, text, int(label), uri)
else:
super(TextFeature, self).__init__(jvalue, bigdl_type, text, uri)
[docs] def get_text(self):
"""
Get the text content of the TextFeature.
:return: String
"""
return callZooFunc(self.bigdl_type, "textFeatureGetText", self.value)
[docs] def get_label(self):
"""
Get the label of the TextFeature.
If no label is stored, -1 will be returned.
:return: Int
"""
return callZooFunc(self.bigdl_type, "textFeatureGetLabel", self.value)
[docs] def get_uri(self):
"""
Get the identifier of the TextFeature.
If no id is stored, None will be returned.
:return: String
"""
return callZooFunc(self.bigdl_type, "textFeatureGetURI", self.value)
[docs] def has_label(self):
"""
Whether the TextFeature contains label.
:return: Boolean
"""
return callZooFunc(self.bigdl_type, "textFeatureHasLabel", self.value)
[docs] def set_label(self, label):
"""
Set the label for the TextFeature.
:param label: Int
:return: The TextFeature with label.
"""
self.value = callZooFunc(self.bigdl_type, "textFeatureSetLabel", self.value, int(label))
return self
[docs] def get_tokens(self):
"""
Get the tokens of the TextFeature.
If text hasn't been segmented, None will be returned.
:return: List of String
"""
return callZooFunc(self.bigdl_type, "textFeatureGetTokens", self.value)
[docs] def get_sample(self):
"""
Get the Sample representation of the TextFeature.
If the TextFeature hasn't been transformed to Sample, None will be returned.
:return: BigDL Sample
"""
return callZooFunc(self.bigdl_type, "textFeatureGetSample", self.value)
[docs] def keys(self):
"""
Get the keys that the TextFeature contains.
:return: List of String
"""
return callZooFunc(self.bigdl_type, "textFeatureGetKeys", self.value)