应该是抛出异常的作用。比如:
assert p.shape == q.shape, “Shape of the two distribution batches must be the same”
就是当这个等式条件不满足时,抛出后面语句的异常信息。
python assert的作用
最新推荐文章于 2022-01-27 20:38:02 发布
应该是抛出异常的作用。比如:
assert p.shape == q.shape, “Shape of the two distribution batches must be the same”
就是当这个等式条件不满足时,抛出后面语句的异常信息。