tomaz-suller / neural-architecture-search

Neural Architecture Search algorithm implementations and experiment infrastructure.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Simulated Annealing Experiments

Experiments over Simulated Annealing for Neural Architecture Search in benchmark datasets.

Project Organization

├── LICENSE            <- Open-source license if one is chosen
├── Makefile           <- Makefile with convenience commands like `make data` or `make train`
├── README.md          <- The top-level README for developers using this project.
├── data
│   ├── external       <- Data from third party sources.
│   ├── interim        <- Intermediate data that has been transformed.
│   ├── processed      <- The final, canonical data sets for modeling.
│   └── raw            <- The original, immutable data dump.
│
├── docs               <- A default mkdocs project; see mkdocs.org for details
│
├── models             <- Trained and serialized models, model predictions, or model summaries
│
├── notebooks          <- Jupyter notebooks. Naming convention is a number (for ordering),
│                         the creator's initials, and a short `-` delimited description, e.g.
│                         `1.0-jqp-initial-data-exploration`.
│
├── pyproject.toml     <- Project configuration file with package metadata for nas
│                         and configuration for tools like black
│
├── references         <- Data dictionaries, manuals, and all other explanatory materials.
│
├── reports            <- Generated analysis as HTML, PDF, LaTeX, etc.
│   └── figures        <- Generated graphics and figures to be used in reporting
│
├── requirements.txt   <- The requirements file for reproducing the analysis environment, e.g.
│                         generated with `pip freeze > requirements.txt`
│
├── setup.cfg          <- Configuration file for flake8
│
└── nas                <- Source code for use in this project.
    │
    ├── __init__.py    <- Makes nas a Python module
    │
    ├── algorithm      <- Optimisation algorithms
    │   └── simulated_annealing.py
    │
    └── benchmark      <- Wrappers on top of NAS benchmarks
        └── nats_bench.py

About

Neural Architecture Search algorithm implementations and experiment infrastructure.


Languages

Language:Python 56.4%Language:Jupyter Notebook 32.5%Language:Makefile 11.1%