コード例 #1
0
ファイル: test_factor.py プロジェクト: vjedulla/edbnVizual
	def test_from_log(self):
		f = Factor(self.bn, 'Earthquake')
		f.to_log()
		f.from_log()
		self.assertListEqual(list(f.cpt),[0.998,0.002])
コード例 #2
0
ファイル: test_factor.py プロジェクト: ALiaoSha/pyBN
	def test_from_log(self):
		f = Factor(self.bn, 'Earthquake')
		f.to_log()
		f.from_log()
		self.assertListEqual(list(f.cpt),[0.998,0.002])
コード例 #3
0
ファイル: test_factor.py プロジェクト: vjedulla/edbnVizual
	def test_to_log(self):
		f = Factor(self.bn,'Earthquake')
		f.to_log()
		self.assertEqual(round(sum(f.cpt),4),-6.2166)
コード例 #4
0
ファイル: test_factor.py プロジェクト: ALiaoSha/pyBN
	def test_to_log(self):
		f = Factor(self.bn,'Earthquake')
		f.to_log()
		self.assertEqual(round(sum(f.cpt),4),-6.2166)