Comparing results of pipeline: lazy_init false and lazy_init true with empty folder and real folder
()
| 794 | |
| 795 | |
| 796 | def test_lazy_init(): |
| 797 | """ |
| 798 | Comparing results of pipeline: lazy_init false and lazy_init |
| 799 | true with empty folder and real folder |
| 800 | """ |
| 801 | batch_size = 128 |
| 802 | compare_pipelines( |
| 803 | LazyPipeline(batch_size, caffe_db_folder, lazy_type=False), |
| 804 | LazyPipeline(batch_size, caffe_db_folder, lazy_type=True), |
| 805 | batch_size=batch_size, |
| 806 | N_iterations=20, |
| 807 | ) |
| 808 | |
| 809 | |
| 810 | def test_iter_setup(): |
nothing calls this directly
no test coverage detected