Metadata-Version: 2.1
Name: earthformer
Version: 0.1.0
Summary: A Python package for Earth forecasting transformer (Earthformer)
Home-page: https://github.com/opengeos/earthformer
Author: Qiusheng Wu
Author-email: giswqs@gmail.com
License: Apache Software License 2.0
Keywords: earthformer
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: boto3
Requires-Dist: h5py >=2.10.0
Requires-Dist: scipy
Requires-Dist: tqdm
Requires-Dist: regex
Requires-Dist: requests
Requires-Dist: transformers >=4.3.0
Requires-Dist: pandas
Requires-Dist: einops >=0.3.0
Requires-Dist: tensorboard
Requires-Dist: omegaconf
Requires-Dist: matplotlib
Requires-Dist: botocore
Requires-Dist: earthnet
Requires-Dist: leafmap

# Earthformer

[![image](https://img.shields.io/pypi/v/earthformer.svg)](https://pypi.python.org/pypi/earthformer)
[![image](https://img.shields.io/conda/vn/conda-forge/earthformer.svg)](https://anaconda.org/conda-forge/earthformer)

**A Python package for Earth forecasting transformer**

-   Free software: Apache License, Version 2.0 (Apache-2.0)
-   Documentation: <https://opengeos.github.io/earthformer>

## Introduction

This repository turns the [amazon-science/earth-forecasting-transformer](https://github.com/amazon-science/earth-forecasting-transformer) repository into a Python package, making it easier to install and use. To learn more about Earthformer, please refer to the NeurIPS 2022 paper: [Earthformer: Exploring Space-Time Transformers for Earth System Forecasting](https://www.amazon.science/publications/earthformer-exploring-space-time-transformers-for-earth-system-forecasting). Credits to the authors and their [repository](https://github.com/amazon-science/earth-forecasting-transformer) for the original implementation.

## Installation

The `earthformer` package is available on [PyPI](https://pypi.org/project/earthformer). To install it, run:

```bash
pip install earthformer
```

The `earthformer` package is also available on [conda-forge](https://anaconda.org/conda-forge/earthformer). To install it, run:

```bash
conda create -n earthformer python=3.10
conda activate earthformer
conda install -c conda-forge mamba
mamba install -c conda-forge earthformer
```
