Metadata-Version: 2.4
Name: uninas
Version: 0.0.3
Summary: walking through space
Author-email: Ondrej Tybl <ondra@tybl.cz>
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: torch>=2.9.1
Requires-Dist: timm>=1.0.24

# uninas  
  
This repository provides a framework to create instances of UNINas search space and walk through the space.    
  
## Testing  

### Initial string format  
Each character in the string represents a node type:  
- `T` Transformer block  
- `E` EfficientNet block  
- `R` ResNet block  
The string is structured by stages, separated by `/`. Each stage contains a sequence of nodes, separated by `-`. We support the following number of stages and blocks: `(2, 3, 5, 2)`, e.g. `MODEL_STRING='E-E/E-E-E/T-T-T-T-T/T-T'`
  
```bash  
python test.py --init-model <MODEL_STRING>
