aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/libsvm/python/kernel_tests/decode_libsvm_op_test.py
blob: 8390ddda9029ad84bb987b8e477e5c8a787dce4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Copyright 2017 The TensorFlow Authors. All Rights Reserved.
#
# 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.
# ==============================================================================
"""Tests for DecodeLibsvm op."""

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

import numpy as np

from tensorflow.contrib.libsvm.python.ops import libsvm_ops
from tensorflow.python.framework import dtypes
from tensorflow.python.ops import sparse_ops
from tensorflow.python.platform import test


class DecodeLibsvmOpTest(test.TestCase):

  def testBasic(self):
    with self.cached_session() as sess:
      content = [
          "1 1:3.4 2:0.5 4:0.231", "1 2:2.5 3:inf 5:0.503",
          "2 3:2.5 2:nan 1:0.105"
      ]
      sparse_features, labels = libsvm_ops.decode_libsvm(
          content, num_features=6)
      features = sparse_ops.sparse_tensor_to_dense(
          sparse_features, validate_indices=False)

      self.assertAllEqual(labels.get_shape().as_list(), [3])

      features, labels = sess.run([features, labels])
      self.assertAllEqual(labels, [1, 1, 2])
      self.assertAllClose(
          features, [[0, 3.4, 0.5, 0, 0.231, 0], [0, 0, 2.5, np.inf, 0, 0.503],
                     [0, 0.105, np.nan, 2.5, 0, 0]])

  def testNDimension(self):
    with self.cached_session() as sess:
      content = [["1 1:3.4 2:0.5 4:0.231", "1 1:3.4 2:0.5 4:0.231"],
                 ["1 2:2.5 3:inf 5:0.503", "1 2:2.5 3:inf 5:0.503"],
                 ["2 3:2.5 2:nan 1:0.105", "2 3:2.5 2:nan 1:0.105"]]
      sparse_features, labels = libsvm_ops.decode_libsvm(
          content, num_features=6, label_dtype=dtypes.float64)
      features = sparse_ops.sparse_tensor_to_dense(
          sparse_features, validate_indices=False)

      self.assertAllEqual(labels.get_shape().as_list(), [3, 2])

      features, labels = sess.run([features, labels])
      self.assertAllEqual(labels, [[1, 1], [1, 1], [2, 2]])
      self.assertAllClose(
          features, [[[0, 3.4, 0.5, 0, 0.231, 0], [0, 3.4, 0.5, 0, 0.231, 0]], [
              [0, 0, 2.5, np.inf, 0, 0.503], [0, 0, 2.5, np.inf, 0, 0.503]
          ], [[0, 0.105, np.nan, 2.5, 0, 0], [0, 0.105, np.nan, 2.5, 0, 0]]])


if __name__ == "__main__":
  test.main()