├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── README.md ├── docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── API.rst │ ├── Installation.rst │ ├── conf.py │ └── index.rst ├── pyproject.toml ├── requirements.txt ├── rshf ├── __init__.py ├── bioclip │ ├── README.md │ ├── __init__.py │ └── model.py ├── climplicit │ ├── README.md │ ├── __init__.py │ ├── direct.py │ ├── model.py │ └── siren.py ├── clip │ ├── README.md │ └── __init__.py ├── croma │ ├── README.md │ ├── __init__.py │ └── model.py ├── dinov3_sat │ ├── README.md │ ├── __init__.py │ └── model.py ├── geoclap │ ├── README.md │ └── __init__.py ├── geoclip │ ├── README.md │ ├── __init__.py │ └── model.py ├── presto │ ├── README.md │ ├── __init__.py │ └── model.py ├── prithvi │ ├── README.md │ ├── __init__.py │ └── model.py ├── rcme │ ├── README.md │ ├── __init__.py │ └── model.py ├── remoteclip │ ├── README.md │ ├── __init__.py │ └── model.py ├── rvsa │ ├── README.md │ ├── __init__.py │ └── model.py ├── sat2cap │ ├── README.md │ └── __init__.py ├── satclip │ ├── README.md │ ├── __init__.py │ ├── model.py │ ├── spherical_harmonics.py │ ├── spherical_harmonics_closed_form.py │ └── spherical_harmonics_ylm.py ├── satmae │ ├── README.md │ ├── __init__.py │ └── model.py ├── satmaepp │ ├── README.md │ ├── __init__.py │ └── model.py ├── scalemae │ ├── README.MD │ ├── __init__.py │ └── model.py ├── senclip │ ├── README.md │ ├── __init__.py │ └── model.py ├── sinr │ ├── README.md │ ├── __init__.py │ └── model.py ├── streetclip │ ├── README.md │ └── __init__.py ├── taxabind │ ├── README.md │ ├── __init__.py │ └── model.py └── utils.py └── setup.cfg /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/API.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/Installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/docs/source/Installation.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/requirements.txt -------------------------------------------------------------------------------- /rshf/__init__.py: -------------------------------------------------------------------------------- 1 | from .utils import list_models -------------------------------------------------------------------------------- /rshf/bioclip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/bioclip/README.md -------------------------------------------------------------------------------- /rshf/bioclip/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import BioCLIP -------------------------------------------------------------------------------- /rshf/bioclip/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/bioclip/model.py -------------------------------------------------------------------------------- /rshf/climplicit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/climplicit/README.md -------------------------------------------------------------------------------- /rshf/climplicit/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import Climplicit -------------------------------------------------------------------------------- /rshf/climplicit/direct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/climplicit/direct.py -------------------------------------------------------------------------------- /rshf/climplicit/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/climplicit/model.py -------------------------------------------------------------------------------- /rshf/climplicit/siren.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/climplicit/siren.py -------------------------------------------------------------------------------- /rshf/clip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/clip/README.md -------------------------------------------------------------------------------- /rshf/clip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/clip/__init__.py -------------------------------------------------------------------------------- /rshf/croma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/croma/README.md -------------------------------------------------------------------------------- /rshf/croma/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import CROMA -------------------------------------------------------------------------------- /rshf/croma/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/croma/model.py -------------------------------------------------------------------------------- /rshf/dinov3_sat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/dinov3_sat/README.md -------------------------------------------------------------------------------- /rshf/dinov3_sat/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import Dinov3_Sat -------------------------------------------------------------------------------- /rshf/dinov3_sat/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/dinov3_sat/model.py -------------------------------------------------------------------------------- /rshf/geoclap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/geoclap/README.md -------------------------------------------------------------------------------- /rshf/geoclap/__init__.py: -------------------------------------------------------------------------------- 1 | from transformers import ClapAudioModelWithProjection as GeoCLAP -------------------------------------------------------------------------------- /rshf/geoclip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/geoclip/README.md -------------------------------------------------------------------------------- /rshf/geoclip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/geoclip/__init__.py -------------------------------------------------------------------------------- /rshf/geoclip/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/geoclip/model.py -------------------------------------------------------------------------------- /rshf/presto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/presto/README.md -------------------------------------------------------------------------------- /rshf/presto/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import Presto -------------------------------------------------------------------------------- /rshf/presto/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/presto/model.py -------------------------------------------------------------------------------- /rshf/prithvi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/prithvi/README.md -------------------------------------------------------------------------------- /rshf/prithvi/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import MaskedAutoencoderViT as Prithvi -------------------------------------------------------------------------------- /rshf/prithvi/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/prithvi/model.py -------------------------------------------------------------------------------- /rshf/rcme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/rcme/README.md -------------------------------------------------------------------------------- /rshf/rcme/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import RCME -------------------------------------------------------------------------------- /rshf/rcme/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/rcme/model.py -------------------------------------------------------------------------------- /rshf/remoteclip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/remoteclip/README.md -------------------------------------------------------------------------------- /rshf/remoteclip/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import RemoteCLIP -------------------------------------------------------------------------------- /rshf/remoteclip/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/remoteclip/model.py -------------------------------------------------------------------------------- /rshf/rvsa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/rvsa/README.md -------------------------------------------------------------------------------- /rshf/rvsa/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import MaskedAutoencoderViTAE as RVSA -------------------------------------------------------------------------------- /rshf/rvsa/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/rvsa/model.py -------------------------------------------------------------------------------- /rshf/sat2cap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/sat2cap/README.md -------------------------------------------------------------------------------- /rshf/sat2cap/__init__.py: -------------------------------------------------------------------------------- 1 | from transformers import CLIPVisionModel as Sat2Cap -------------------------------------------------------------------------------- /rshf/satclip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/satclip/README.md -------------------------------------------------------------------------------- /rshf/satclip/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import SatClip -------------------------------------------------------------------------------- /rshf/satclip/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/satclip/model.py -------------------------------------------------------------------------------- /rshf/satclip/spherical_harmonics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/satclip/spherical_harmonics.py -------------------------------------------------------------------------------- /rshf/satclip/spherical_harmonics_closed_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/satclip/spherical_harmonics_closed_form.py -------------------------------------------------------------------------------- /rshf/satclip/spherical_harmonics_ylm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/satclip/spherical_harmonics_ylm.py -------------------------------------------------------------------------------- /rshf/satmae/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/satmae/README.md -------------------------------------------------------------------------------- /rshf/satmae/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/satmae/__init__.py -------------------------------------------------------------------------------- /rshf/satmae/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/satmae/model.py -------------------------------------------------------------------------------- /rshf/satmaepp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/satmaepp/README.md -------------------------------------------------------------------------------- /rshf/satmaepp/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import MaskedAutoencoderViT as SatMAEPP -------------------------------------------------------------------------------- /rshf/satmaepp/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/satmaepp/model.py -------------------------------------------------------------------------------- /rshf/scalemae/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/scalemae/README.MD -------------------------------------------------------------------------------- /rshf/scalemae/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/scalemae/__init__.py -------------------------------------------------------------------------------- /rshf/scalemae/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/scalemae/model.py -------------------------------------------------------------------------------- /rshf/senclip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/senclip/README.md -------------------------------------------------------------------------------- /rshf/senclip/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import SenCLIP -------------------------------------------------------------------------------- /rshf/senclip/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/senclip/model.py -------------------------------------------------------------------------------- /rshf/sinr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/sinr/README.md -------------------------------------------------------------------------------- /rshf/sinr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/sinr/__init__.py -------------------------------------------------------------------------------- /rshf/sinr/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/sinr/model.py -------------------------------------------------------------------------------- /rshf/streetclip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/streetclip/README.md -------------------------------------------------------------------------------- /rshf/streetclip/__init__.py: -------------------------------------------------------------------------------- 1 | from transformers import CLIPModel as StreetCLIP -------------------------------------------------------------------------------- /rshf/taxabind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/taxabind/README.md -------------------------------------------------------------------------------- /rshf/taxabind/__init__.py: -------------------------------------------------------------------------------- 1 | from .model import TaxaBind -------------------------------------------------------------------------------- /rshf/taxabind/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/taxabind/model.py -------------------------------------------------------------------------------- /rshf/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/rshf/utils.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvrl/rshf/HEAD/setup.cfg --------------------------------------------------------------------------------