idstcv / ZenNAS

218 stars 35 forks source link

How to search in HardNet space? #26

Closed 1chimaruGin closed 1 year ago

1chimaruGin commented 1 year ago

I'm new to NAS and I wonder how can I do searching in HardNet.

MingLin-home commented 1 year ago

We do not have built-in support for HardNet. You might need to implement the HardNet search space. Some examples are stored under "./SearchSpace/" folder.

1chimaruGin commented 1 year ago

@MingLin-home , Thank for the response.

Sorry about unclear question. Did I need to create HardNet block or whole network in ./PlainNet/?

Could you please provide me step by step procedure? :man-bowing:

MingLin-home commented 1 year ago

You can customize your network backbone in ./PlainNet. For example, you can create a new ./PlainNet/HardNet_SuperNet.py and implement Hardnet structure inside. The zen-score function does not care how supernet is internally implemented.

1chimaruGin commented 1 year ago

Got it @MingLin-home . Thank you.