Quick start

Steps to get FootNet running locally or on a server:

  1. Clone the repository
  2. $ git clone https://github.com/nd349/FootNet.git
    $ cd FootNet
    

    The repository should have the following structure:

    
    FootNet/
    ├── footnet/
    │   ├── ColumnFootNet.py
    │   ├── SurfaceFootNet.py
    │   ├── getColumnMeteorology.py
    │   ├── getSurfaceMeteorology.py
    │   ├── ExampleColumnFootNet.ipynb
    │   ├── ExampleSurfaceFootNet.ipynb
    │   ├── unetpp_model.py
    │   └── get_HRRR_met_lite_files.py
    ├── models/
    │   ├── ColumnFootNet_in_sample.pth
    │   └── SurfaceFootNet_in_sample.pth
    ├── training/
    │   ├── SurfaceFootNet_multinode_training.py
    │   ├── ColumnFootNet_multinode_training.py
    │   ├── unetpp_model.py
    │   └── slurm.sh
    ├── requirements.txt
    └── README.md
    
  3. Install dependencies
  4. $ pip install -r requirements.txt
    
  5. Download sample meteorology data
  6. $ wget met_sample_link #coming soon
    
  7. Try example jupyter notebooks: