diff --git a/README.md b/README.md index afa38e1..7b14ec3 100644 --- a/README.md +++ b/README.md @@ -26,9 +26,11 @@ print(model.forward_encoder(torch.randn(1, 3, 224, 224), mask_ratio=0.0)[0].shap |Prithvi||[link](./rshf/prithvi/README.md) |RemoteCLIP|TGRS'23|[link](./rshf/remoteclip/README.md) |RVSA|TGRS'22|[link](./rshf/rvsa/README.md) +|Sat2Cap|EarthVision'24|[link](./rshf/sat2cap/README.md) |SatClip||[link](./rshf/satclip/README.md) |SatMAE|NeurIPS'22|[link](./rshf/satmae/README.md) |SatMAE++|CVPR'24|[link](./rshf/satmaepp/README.md) |ScaleMAE|ICCV'23|[link](./rshf/scalemae/README.md) |SINR|ICML'23|[link](./rshf/sinr/README.md) +|StreetCLIP||[link](./rshf/streetclip/README.md) ### List of models available here: [Link](https://huggingface.co/collections/MVRL/remote-sensing-foundation-models-664e8fcd67d8ca8c03f42d00) \ No newline at end of file diff --git a/rshf/sat2cap/README.md b/rshf/sat2cap/README.md new file mode 100644 index 0000000..e5ea60d --- /dev/null +++ b/rshf/sat2cap/README.md @@ -0,0 +1,16 @@ +## Sat2Cap + +References + +Arxiv: https://arxiv.org/abs/2307.15904 \ +GitHub: https://github.com/mvrl/Sat2Cap \ +Citation: +```bib +@inproceedings{dhakal2024sat2cap, + title={Sat2cap: Mapping fine-grained textual descriptions from satellite images}, + author={Dhakal, Aayush and Ahmad, Adeel and Khanal, Subash and Sastry, Srikumar and Kerner, Hannah and Jacobs, Nathan}, + booktitle={IEEE/ISPRS Workshop: Large Scale Computer Vision for Remote Sensing (EARTHVISION)}, + pages={533--542}, + year={2024} +} +``` \ No newline at end of file diff --git a/rshf/sat2cap/__init__.py b/rshf/sat2cap/__init__.py new file mode 100644 index 0000000..ab70a86 --- /dev/null +++ b/rshf/sat2cap/__init__.py @@ -0,0 +1 @@ +from transformers import CLIPVisionModel as Sat2Cap \ No newline at end of file diff --git a/rshf/streetclip/README.md b/rshf/streetclip/README.md new file mode 100644 index 0000000..91c21fb --- /dev/null +++ b/rshf/streetclip/README.md @@ -0,0 +1,16 @@ +## StreetCLIP + +References + +Arxiv: https://arxiv.org/abs/2302.00275 \ +Citation: +```bib + @misc{haas2023learning, + title={Learning Generalized Zero-Shot Learners for Open-Domain Image Geolocalization}, + author={Lukas Haas and Silas Alberti and Michal Skreta}, + year={2023}, + eprint={2302.00275}, + archivePrefix={arXiv}, + primaryClass={cs.CV} + } +``` \ No newline at end of file diff --git a/rshf/streetclip/__init__.py b/rshf/streetclip/__init__.py new file mode 100644 index 0000000..282367c --- /dev/null +++ b/rshf/streetclip/__init__.py @@ -0,0 +1 @@ +from transformers import CLIPModel as StreetCLIP \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index c587194..f14423a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = rshf -version = 0.0.10 +version = 0.0.11 author = Srikumar Sastry author_email = s.sastry@wustl.edu description = RS pretrained models in huggingface style