changlin31 / DNA

(CVPR 2020) Block-wisely Supervised Neural Architecture Search with Knowledge Distillation
234 stars 35 forks source link

What are the numbers meaning in process_potential.py? #33

Open K-jihyeon opened 2 years ago

K-jihyeon commented 2 years ago

First of all, thank you for your codes! Using these codes, I'm trying to apply this for my code. Meanwhile I don't understand what are the meaning of subtracting numbers as following : 284976, 358960, 73368, 55412, 51540, etc. Can you explain it to me?

        stage3_max_param = stage4_max_param - 284976 * 4 + 358960
        stage2_max_param = stage3_max_param - 73368 * 3 + 55412
        stage1_max_param = stage2_max_param - 51540 * 3 + 18650
        stage0_max_param = stage1_max_param - 13770 * 3 + 6566

These are 108~111 lines of process_potential.py. Thank you.