├── LICENSE ├── README.md ├── merge_lora_weights_and_save_hf_model.py ├── model ├── FSVLM.py ├── llava │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── constants.cpython-310.pyc │ │ ├── constants.cpython-37.pyc │ │ ├── constants.cpython-38.pyc │ │ ├── conversation.cpython-310.pyc │ │ ├── conversation.cpython-37.pyc │ │ ├── conversation.cpython-38.pyc │ │ ├── mm_utils.cpython-310.pyc │ │ ├── mm_utils.cpython-37.pyc │ │ └── mm_utils.cpython-38.pyc │ ├── constants.py │ ├── conversation.py │ ├── mm_utils.py │ ├── model │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── llava_arch.cpython-310.pyc │ │ │ ├── llava_arch.cpython-37.pyc │ │ │ ├── llava_arch.cpython-38.pyc │ │ │ └── utils.cpython-37.pyc │ │ ├── apply_delta.py │ │ ├── builder.py │ │ ├── consolidate.py │ │ ├── language_model │ │ │ ├── __pycache__ │ │ │ │ ├── llava_llama.cpython-310.pyc │ │ │ │ ├── llava_llama.cpython-37.pyc │ │ │ │ ├── llava_llama.cpython-38.pyc │ │ │ │ ├── llava_mpt.cpython-310.pyc │ │ │ │ ├── llava_mpt.cpython-37.pyc │ │ │ │ └── llava_mpt.cpython-38.pyc │ │ │ ├── llava_llama.py │ │ │ ├── llava_mpt.py │ │ │ └── mpt │ │ │ │ ├── __pycache__ │ │ │ │ ├── adapt_tokenizer.cpython-310.pyc │ │ │ │ ├── adapt_tokenizer.cpython-37.pyc │ │ │ │ ├── adapt_tokenizer.cpython-38.pyc │ │ │ │ ├── attention.cpython-310.pyc │ │ │ │ ├── attention.cpython-37.pyc │ │ │ │ ├── attention.cpython-38.pyc │ │ │ │ ├── blocks.cpython-310.pyc │ │ │ │ ├── blocks.cpython-37.pyc │ │ │ │ ├── blocks.cpython-38.pyc │ │ │ │ ├── configuration_mpt.cpython-310.pyc │ │ │ │ ├── configuration_mpt.cpython-37.pyc │ │ │ │ ├── configuration_mpt.cpython-38.pyc │ │ │ │ ├── custom_embedding.cpython-310.pyc │ │ │ │ ├── custom_embedding.cpython-37.pyc │ │ │ │ ├── custom_embedding.cpython-38.pyc │ │ │ │ ├── flash_attn_triton.cpython-310.pyc │ │ │ │ ├── flash_attn_triton.cpython-37.pyc │ │ │ │ ├── flash_attn_triton.cpython-38.pyc │ │ │ │ ├── hf_prefixlm_converter.cpython-310.pyc │ │ │ │ ├── hf_prefixlm_converter.cpython-37.pyc │ │ │ │ ├── hf_prefixlm_converter.cpython-38.pyc │ │ │ │ ├── meta_init_context.cpython-310.pyc │ │ │ │ ├── meta_init_context.cpython-37.pyc │ │ │ │ ├── meta_init_context.cpython-38.pyc │ │ │ │ ├── modeling_mpt.cpython-310.pyc │ │ │ │ ├── modeling_mpt.cpython-37.pyc │ │ │ │ ├── modeling_mpt.cpython-38.pyc │ │ │ │ ├── norm.cpython-310.pyc │ │ │ │ ├── norm.cpython-37.pyc │ │ │ │ ├── norm.cpython-38.pyc │ │ │ │ ├── param_init_fns.cpython-310.pyc │ │ │ │ ├── param_init_fns.cpython-37.pyc │ │ │ │ └── param_init_fns.cpython-38.pyc │ │ │ │ ├── adapt_tokenizer.py │ │ │ │ ├── attention.py │ │ │ │ ├── blocks.py │ │ │ │ ├── configuration_mpt.py │ │ │ │ ├── custom_embedding.py │ │ │ │ ├── flash_attn_triton.py │ │ │ │ ├── hf_prefixlm_converter.py │ │ │ │ ├── meta_init_context.py │ │ │ │ ├── modeling_mpt.py │ │ │ │ ├── norm.py │ │ │ │ └── param_init_fns.py │ │ ├── llava_arch.py │ │ ├── make_delta.py │ │ ├── multimodal_encoder │ │ │ ├── __pycache__ │ │ │ │ ├── builder.cpython-310.pyc │ │ │ │ ├── builder.cpython-37.pyc │ │ │ │ ├── builder.cpython-38.pyc │ │ │ │ ├── clip_encoder.cpython-310.pyc │ │ │ │ ├── clip_encoder.cpython-37.pyc │ │ │ │ └── clip_encoder.cpython-38.pyc │ │ │ ├── builder.py │ │ │ └── clip_encoder.py │ │ └── utils.py │ ├── train │ │ ├── llama_flash_attn_monkey_patch.py │ │ ├── llava_trainer.py │ │ ├── train.py │ │ └── train_mem.py │ └── utils.py └── segment_anything │ ├── __init__.py │ ├── automatic_mask_generator.py │ ├── build_sam.py │ ├── modeling │ ├── __init__.py │ ├── common.py │ ├── image_encoder.py │ ├── mask_decoder.py │ ├── prompt_encoder.py │ ├── sam.py │ └── transformer.py │ ├── predictor.py │ └── utils │ ├── __init__.py │ ├── amg.py │ ├── onnx.py │ ├── test │ └── transforms.py ├── requirements.txt ├── test.py ├── train_ds.py └── utils ├── CLASS_NAME ├── conversation.py ├── data_processing.py ├── dataset.py ├── generate_pic.py ├── metrics.py ├── misc.py ├── orgin_dataset.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/README.md -------------------------------------------------------------------------------- /merge_lora_weights_and_save_hf_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/merge_lora_weights_and_save_hf_model.py -------------------------------------------------------------------------------- /model/FSVLM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/FSVLM.py -------------------------------------------------------------------------------- /model/llava/__init__.py: -------------------------------------------------------------------------------- 1 | #from .model import LlavaLlamaForCausalLM 2 | -------------------------------------------------------------------------------- /model/llava/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /model/llava/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /model/llava/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /model/llava/__pycache__/constants.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/__pycache__/constants.cpython-310.pyc -------------------------------------------------------------------------------- /model/llava/__pycache__/constants.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/__pycache__/constants.cpython-37.pyc -------------------------------------------------------------------------------- /model/llava/__pycache__/constants.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/__pycache__/constants.cpython-38.pyc -------------------------------------------------------------------------------- /model/llava/__pycache__/conversation.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/__pycache__/conversation.cpython-310.pyc -------------------------------------------------------------------------------- /model/llava/__pycache__/conversation.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/__pycache__/conversation.cpython-37.pyc -------------------------------------------------------------------------------- /model/llava/__pycache__/conversation.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/__pycache__/conversation.cpython-38.pyc -------------------------------------------------------------------------------- /model/llava/__pycache__/mm_utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/__pycache__/mm_utils.cpython-310.pyc -------------------------------------------------------------------------------- /model/llava/__pycache__/mm_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/__pycache__/mm_utils.cpython-37.pyc -------------------------------------------------------------------------------- /model/llava/__pycache__/mm_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/__pycache__/mm_utils.cpython-38.pyc -------------------------------------------------------------------------------- /model/llava/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/constants.py -------------------------------------------------------------------------------- /model/llava/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/conversation.py -------------------------------------------------------------------------------- /model/llava/mm_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/mm_utils.py -------------------------------------------------------------------------------- /model/llava/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/__init__.py -------------------------------------------------------------------------------- /model/llava/model/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /model/llava/model/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /model/llava/model/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /model/llava/model/__pycache__/llava_arch.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/__pycache__/llava_arch.cpython-310.pyc -------------------------------------------------------------------------------- /model/llava/model/__pycache__/llava_arch.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/__pycache__/llava_arch.cpython-37.pyc -------------------------------------------------------------------------------- /model/llava/model/__pycache__/llava_arch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/__pycache__/llava_arch.cpython-38.pyc -------------------------------------------------------------------------------- /model/llava/model/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /model/llava/model/apply_delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/apply_delta.py -------------------------------------------------------------------------------- /model/llava/model/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/builder.py -------------------------------------------------------------------------------- /model/llava/model/consolidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/consolidate.py -------------------------------------------------------------------------------- /model/llava/model/language_model/__pycache__/llava_llama.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/__pycache__/llava_llama.cpython-310.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/__pycache__/llava_llama.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/__pycache__/llava_llama.cpython-37.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/__pycache__/llava_llama.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/__pycache__/llava_llama.cpython-38.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/__pycache__/llava_mpt.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/__pycache__/llava_mpt.cpython-310.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/__pycache__/llava_mpt.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/__pycache__/llava_mpt.cpython-37.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/__pycache__/llava_mpt.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/__pycache__/llava_mpt.cpython-38.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/llava_llama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/llava_llama.py -------------------------------------------------------------------------------- /model/llava/model/language_model/llava_mpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/llava_mpt.py -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/adapt_tokenizer.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/adapt_tokenizer.cpython-310.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/adapt_tokenizer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/adapt_tokenizer.cpython-37.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/adapt_tokenizer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/adapt_tokenizer.cpython-38.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/attention.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/attention.cpython-310.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/attention.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/attention.cpython-37.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/attention.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/attention.cpython-38.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/blocks.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/blocks.cpython-310.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/blocks.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/blocks.cpython-37.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/blocks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/blocks.cpython-38.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/configuration_mpt.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/configuration_mpt.cpython-310.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/configuration_mpt.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/configuration_mpt.cpython-37.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/configuration_mpt.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/configuration_mpt.cpython-38.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/custom_embedding.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/custom_embedding.cpython-310.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/custom_embedding.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/custom_embedding.cpython-37.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/custom_embedding.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/custom_embedding.cpython-38.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/flash_attn_triton.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/flash_attn_triton.cpython-310.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/flash_attn_triton.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/flash_attn_triton.cpython-37.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/flash_attn_triton.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/flash_attn_triton.cpython-38.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/hf_prefixlm_converter.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/hf_prefixlm_converter.cpython-310.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/hf_prefixlm_converter.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/hf_prefixlm_converter.cpython-37.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/hf_prefixlm_converter.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/hf_prefixlm_converter.cpython-38.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/meta_init_context.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/meta_init_context.cpython-310.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/meta_init_context.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/meta_init_context.cpython-37.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/meta_init_context.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/meta_init_context.cpython-38.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/modeling_mpt.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/modeling_mpt.cpython-310.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/modeling_mpt.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/modeling_mpt.cpython-37.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/modeling_mpt.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/modeling_mpt.cpython-38.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/norm.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/norm.cpython-310.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/norm.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/norm.cpython-37.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/norm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/norm.cpython-38.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/param_init_fns.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/param_init_fns.cpython-310.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/param_init_fns.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/param_init_fns.cpython-37.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/__pycache__/param_init_fns.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/__pycache__/param_init_fns.cpython-38.pyc -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/adapt_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/adapt_tokenizer.py -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/attention.py -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/blocks.py -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/configuration_mpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/configuration_mpt.py -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/custom_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/custom_embedding.py -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/flash_attn_triton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/flash_attn_triton.py -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/hf_prefixlm_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/hf_prefixlm_converter.py -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/meta_init_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/meta_init_context.py -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/modeling_mpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/modeling_mpt.py -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/norm.py -------------------------------------------------------------------------------- /model/llava/model/language_model/mpt/param_init_fns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/language_model/mpt/param_init_fns.py -------------------------------------------------------------------------------- /model/llava/model/llava_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/llava_arch.py -------------------------------------------------------------------------------- /model/llava/model/make_delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/make_delta.py -------------------------------------------------------------------------------- /model/llava/model/multimodal_encoder/__pycache__/builder.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/multimodal_encoder/__pycache__/builder.cpython-310.pyc -------------------------------------------------------------------------------- /model/llava/model/multimodal_encoder/__pycache__/builder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/multimodal_encoder/__pycache__/builder.cpython-37.pyc -------------------------------------------------------------------------------- /model/llava/model/multimodal_encoder/__pycache__/builder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/multimodal_encoder/__pycache__/builder.cpython-38.pyc -------------------------------------------------------------------------------- /model/llava/model/multimodal_encoder/__pycache__/clip_encoder.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/multimodal_encoder/__pycache__/clip_encoder.cpython-310.pyc -------------------------------------------------------------------------------- /model/llava/model/multimodal_encoder/__pycache__/clip_encoder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/multimodal_encoder/__pycache__/clip_encoder.cpython-37.pyc -------------------------------------------------------------------------------- /model/llava/model/multimodal_encoder/__pycache__/clip_encoder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/multimodal_encoder/__pycache__/clip_encoder.cpython-38.pyc -------------------------------------------------------------------------------- /model/llava/model/multimodal_encoder/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/multimodal_encoder/builder.py -------------------------------------------------------------------------------- /model/llava/model/multimodal_encoder/clip_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/multimodal_encoder/clip_encoder.py -------------------------------------------------------------------------------- /model/llava/model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/model/utils.py -------------------------------------------------------------------------------- /model/llava/train/llama_flash_attn_monkey_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/train/llama_flash_attn_monkey_patch.py -------------------------------------------------------------------------------- /model/llava/train/llava_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/train/llava_trainer.py -------------------------------------------------------------------------------- /model/llava/train/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/train/train.py -------------------------------------------------------------------------------- /model/llava/train/train_mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/train/train_mem.py -------------------------------------------------------------------------------- /model/llava/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/llava/utils.py -------------------------------------------------------------------------------- /model/segment_anything/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/segment_anything/__init__.py -------------------------------------------------------------------------------- /model/segment_anything/automatic_mask_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/segment_anything/automatic_mask_generator.py -------------------------------------------------------------------------------- /model/segment_anything/build_sam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/segment_anything/build_sam.py -------------------------------------------------------------------------------- /model/segment_anything/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/segment_anything/modeling/__init__.py -------------------------------------------------------------------------------- /model/segment_anything/modeling/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/segment_anything/modeling/common.py -------------------------------------------------------------------------------- /model/segment_anything/modeling/image_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/segment_anything/modeling/image_encoder.py -------------------------------------------------------------------------------- /model/segment_anything/modeling/mask_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/segment_anything/modeling/mask_decoder.py -------------------------------------------------------------------------------- /model/segment_anything/modeling/prompt_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/segment_anything/modeling/prompt_encoder.py -------------------------------------------------------------------------------- /model/segment_anything/modeling/sam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/segment_anything/modeling/sam.py -------------------------------------------------------------------------------- /model/segment_anything/modeling/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/segment_anything/modeling/transformer.py -------------------------------------------------------------------------------- /model/segment_anything/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/segment_anything/predictor.py -------------------------------------------------------------------------------- /model/segment_anything/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/segment_anything/utils/__init__.py -------------------------------------------------------------------------------- /model/segment_anything/utils/amg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/segment_anything/utils/amg.py -------------------------------------------------------------------------------- /model/segment_anything/utils/onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/segment_anything/utils/onnx.py -------------------------------------------------------------------------------- /model/segment_anything/utils/test: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /model/segment_anything/utils/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/model/segment_anything/utils/transforms.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/test.py -------------------------------------------------------------------------------- /train_ds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/train_ds.py -------------------------------------------------------------------------------- /utils/CLASS_NAME: -------------------------------------------------------------------------------- 1 | background 2 | farmland -------------------------------------------------------------------------------- /utils/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/utils/conversation.py -------------------------------------------------------------------------------- /utils/data_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/utils/data_processing.py -------------------------------------------------------------------------------- /utils/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/utils/dataset.py -------------------------------------------------------------------------------- /utils/generate_pic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/utils/generate_pic.py -------------------------------------------------------------------------------- /utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/utils/metrics.py -------------------------------------------------------------------------------- /utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/utils/misc.py -------------------------------------------------------------------------------- /utils/orgin_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/utils/orgin_dataset.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WithoutOcean/FSVLM-A-Vision-Language-Model-for-Remote-Sensing-Farmland-Segmentation/HEAD/utils/utils.py --------------------------------------------------------------------------------