12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #
- # Copyright 2019 The FATE 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.
- #
- import unittest
- import random
- from fate_arch.session import computing_session as session
- from federatedml.feature.instance import Instance
- from federatedml.util.classify_label_checker import ClassifyLabelChecker, RegressionLabelChecker
- class TeskClassifyLabelChecker(unittest.TestCase):
- def setUp(self):
- session.init("test_label_checker")
- self.small_label_set = [Instance(label=i % 5) for i in range(100)]
- self.classify_inst = session.parallelize(self.small_label_set, include_key=False, partition=16)
- self.regression_label = [Instance(label=random.random()) for i in range(100)]
- self.regression_inst = session.parallelize(self.regression_label, partition=16, include_key=False)
- self.classify_checker = ClassifyLabelChecker()
- self.regression_checker = RegressionLabelChecker()
- def test_classify_label_checkert(self):
- num_class, classes = self.classify_checker.validate_label(self.classify_inst)
- self.assertTrue(num_class == 5)
- self.assertTrue(sorted(classes) == [0, 1, 2, 3, 4])
- def test_regression_label_checker(self):
- self.regression_checker.validate_label(self.regression_inst)
- def tearDown(self):
- session.stop()
- if __name__ == '__main__':
- unittest.main()
|