Tonic commited on
Commit
4c3374d
·
verified ·
1 Parent(s): 446f052

Upload folder using huggingface_hub

Browse files
README.md ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ tags:
4
+ - vision-language
5
+ - satellite
6
+ - geospatial
7
+ - liquid-ai
8
+ - lfm
9
+ base_model: LiquidAI/LFM2.5-VL-450M
10
+ ---
11
+
12
+ # NuTonic/lspace
13
+
14
+ Fine-tuned from `LiquidAI/LFM2.5-VL-450M` using the NU:TONIC satellite VLM SFT mix
15
+ (`train/run_sat_vl_sft_e2e.py`): single LEAP run on main + task + Firewatch Parquet mix.
16
+
17
+ Training stack: LEAP `vlm_sft` in this repo's `refs/leap-finetune-main`.
chat_template.jinja ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {{- bos_token -}}
2
+ {%- set keep_past_thinking = keep_past_thinking | default(false) -%}
3
+
4
+ {%- macro format_arg_value(arg_value) -%}
5
+ {%- if arg_value is string -%}
6
+ {{- '"' + arg_value + '"' -}}
7
+ {%- elif arg_value is mapping -%}
8
+ {{- arg_value | tojson -}}
9
+ {%- else -%}
10
+ {{- arg_value | string -}}
11
+ {%- endif -%}
12
+ {%- endmacro -%}
13
+
14
+ {%- macro parse_content(content) -%}
15
+ {%- if content is string -%}
16
+ {{- content -}}
17
+ {%- else -%}
18
+ {%- set _ns = namespace(result="") -%}
19
+ {%- for item in content -%}
20
+ {%- if item.type == "image" -%}
21
+ {%- set _ns.result = _ns.result + "<image>" -%}
22
+ {%- elif item.type == "text" -%}
23
+ {%- set _ns.result = _ns.result + item.text -%}
24
+ {%- else -%}
25
+ {%- set _ns.result = _ns.result + item | tojson -%}
26
+ {%- endif -%}
27
+ {%- endfor -%}
28
+ {{- _ns.result -}}
29
+ {%- endif -%}
30
+ {%- endmacro -%}
31
+
32
+ {%- macro render_tool_calls(tool_calls) -%}
33
+ {%- set tool_calls_ns = namespace(tool_calls=[]) -%}
34
+ {%- for tool_call in tool_calls -%}
35
+ {%- set func_name = tool_call.function.name -%}
36
+ {%- set func_args = tool_call.function.arguments -%}
37
+ {%- set args_ns = namespace(arg_strings=[]) -%}
38
+ {%- for arg_name, arg_value in func_args.items() -%}
39
+ {%- set args_ns.arg_strings = args_ns.arg_strings + [arg_name + "=" + format_arg_value(arg_value)] -%}
40
+ {%- endfor -%}
41
+ {%- set tool_calls_ns.tool_calls = tool_calls_ns.tool_calls + [func_name + "(" + (args_ns.arg_strings | join(", ")) + ")"] -%}
42
+ {%- endfor -%}
43
+ {{- "<|tool_call_start|>[" + (tool_calls_ns.tool_calls | join(", ")) + "]<|tool_call_end|>" -}}
44
+ {%- endmacro -%}
45
+
46
+ {%- set ns = namespace(system_prompt="", last_assistant_index=-1) -%}
47
+ {%- if messages[0].role == "system" -%}
48
+ {%- if messages[0].content is defined -%}
49
+ {%- set ns.system_prompt = parse_content(messages[0].content) -%}
50
+ {%- endif -%}
51
+ {%- set messages = messages[1:] -%}
52
+ {%- endif -%}
53
+ {%- if tools -%}
54
+ {%- set ns.system_prompt = ns.system_prompt + ("\n\n" if ns.system_prompt else "") + "Today's date: " + strftime_now("%Y-%m-%d") + "\n\nList of tools: " + (tools | tojson) -%}
55
+ {%- endif -%}
56
+ {%- if ns.system_prompt -%}
57
+ {{- "<|im_start|>system\n" + ns.system_prompt + "<|im_end|>\n" -}}
58
+ {%- endif -%}
59
+ {%- for message in messages -%}
60
+ {%- if message.role == "assistant" -%}
61
+ {%- set ns.last_assistant_index = loop.index0 -%}
62
+ {%- endif -%}
63
+ {%- endfor -%}
64
+ {%- for message in messages -%}
65
+ {{- "<|im_start|>" + message.role + "\n" -}}
66
+ {%- if message.role == "assistant" -%}
67
+ {%- generation -%}
68
+ {%- if message.thinking is defined and (keep_past_thinking or loop.index0 == ns.last_assistant_index) -%}
69
+ {{- "<think>" + message.thinking + "</think>" -}}
70
+ {%- endif -%}
71
+ {%- if message.tool_calls is defined -%}
72
+ {{- render_tool_calls(message.tool_calls) -}}
73
+ {%- endif -%}
74
+ {%- if message.content is defined -%}
75
+ {%- set content = parse_content(message.content) -%}
76
+ {%- if not keep_past_thinking and loop.index0 != ns.last_assistant_index -%}
77
+ {%- if "</think>" in content -%}
78
+ {%- set content = content.split("</think>")[-1] | trim -%}
79
+ {%- endif -%}
80
+ {%- endif -%}
81
+ {{- content + ("" if (continue_final_message and loop.last) else "<|im_end|>\n") -}}
82
+ {%- endif -%}
83
+ {%- endgeneration -%}
84
+ {%- else %}
85
+ {%- if message.content is defined -%}
86
+ {{- parse_content(message.content) + "<|im_end|>\n" -}}
87
+ {%- endif -%}
88
+ {%- endif %}
89
+ {%- endfor -%}
90
+ {%- if add_generation_prompt -%}
91
+ {{- "<|im_start|>assistant\n" -}}
92
+ {%- endif -%}
config.json ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Lfm2VlForConditionalGeneration"
4
+ ],
5
+ "bos_token_id": 1,
6
+ "do_image_splitting": true,
7
+ "downsample_factor": 2,
8
+ "dtype": "bfloat16",
9
+ "encoder_patch_size": 16,
10
+ "eos_token_id": 7,
11
+ "image_token_id": 396,
12
+ "max_image_tokens": 256,
13
+ "max_pixels_tolerance": 2.0,
14
+ "max_tiles": 10,
15
+ "min_image_tokens": 64,
16
+ "min_tiles": 2,
17
+ "model_type": "lfm2_vl",
18
+ "pad_token_id": 0,
19
+ "projector_bias": true,
20
+ "projector_hidden_act": "gelu",
21
+ "projector_hidden_size": 2048,
22
+ "projector_use_layernorm": false,
23
+ "text_config": {
24
+ "_name_or_path": "LiquidAI/LFM2-350M",
25
+ "architectures": [
26
+ "Lfm2ForCausalLM"
27
+ ],
28
+ "block_auto_adjust_ff_dim": true,
29
+ "block_dim": 1024,
30
+ "block_ff_dim": 6656,
31
+ "block_ffn_dim_multiplier": 1.0,
32
+ "block_mlp_init_scale": 1.0,
33
+ "block_multiple_of": 256,
34
+ "block_norm_eps": 1e-05,
35
+ "block_out_init_scale": 1.0,
36
+ "block_use_swiglu": true,
37
+ "block_use_xavier_init": true,
38
+ "bos_token_id": 1,
39
+ "conv_L_cache": 3,
40
+ "conv_bias": false,
41
+ "conv_dim": 1024,
42
+ "conv_dim_out": 1024,
43
+ "conv_use_xavier_init": true,
44
+ "dtype": "bfloat16",
45
+ "eos_token_id": 7,
46
+ "hidden_size": 1024,
47
+ "initializer_range": 0.02,
48
+ "intermediate_size": 6656,
49
+ "layer_types": [
50
+ "conv",
51
+ "conv",
52
+ "full_attention",
53
+ "conv",
54
+ "conv",
55
+ "full_attention",
56
+ "conv",
57
+ "conv",
58
+ "full_attention",
59
+ "conv",
60
+ "full_attention",
61
+ "conv",
62
+ "full_attention",
63
+ "conv",
64
+ "full_attention",
65
+ "conv"
66
+ ],
67
+ "max_position_embeddings": 128000,
68
+ "model_type": "lfm2",
69
+ "norm_eps": 1e-05,
70
+ "num_attention_heads": 16,
71
+ "num_heads": 16,
72
+ "num_hidden_layers": 16,
73
+ "num_key_value_heads": 8,
74
+ "pad_token_id": 0,
75
+ "rope_parameters": {
76
+ "rope_theta": 1000000.0,
77
+ "rope_type": "default"
78
+ },
79
+ "tie_word_embeddings": true,
80
+ "use_cache": true,
81
+ "use_pos_enc": true,
82
+ "vocab_size": 65536
83
+ },
84
+ "tie_word_embeddings": true,
85
+ "tile_size": 512,
86
+ "transformers_version": "5.2.0",
87
+ "use_cache": false,
88
+ "use_image_special_tokens": true,
89
+ "use_thumbnail": true,
90
+ "vision_config": {
91
+ "attention_dropout": 0.0,
92
+ "dtype": "bfloat16",
93
+ "hidden_act": "gelu_pytorch_tanh",
94
+ "hidden_size": 768,
95
+ "intermediate_size": 3072,
96
+ "layer_norm_eps": 1e-06,
97
+ "model_type": "siglip2_vision_model",
98
+ "num_attention_heads": 12,
99
+ "num_channels": 3,
100
+ "num_hidden_layers": 12,
101
+ "num_patches": 256,
102
+ "patch_size": 16,
103
+ "vision_use_head": false
104
+ }
105
+ }
generation_config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 1,
4
+ "eos_token_id": [
5
+ 7,
6
+ 7
7
+ ],
8
+ "pad_token_id": 0,
9
+ "transformers_version": "5.2.0"
10
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e9ae0b2225c8755eb68924aa97f81c0826678f77f7832aa81c8398f5439cf5c
3
+ size 897484568
processor_config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "image_processor": {
3
+ "data_format": "channels_first",
4
+ "do_image_splitting": true,
5
+ "do_normalize": true,
6
+ "do_pad": true,
7
+ "do_rescale": true,
8
+ "do_resize": true,
9
+ "downsample_factor": 2,
10
+ "encoder_patch_size": 16,
11
+ "image_mean": [
12
+ 0.5,
13
+ 0.5,
14
+ 0.5
15
+ ],
16
+ "image_processor_type": "Lfm2VlImageProcessorFast",
17
+ "image_std": [
18
+ 0.5,
19
+ 0.5,
20
+ 0.5
21
+ ],
22
+ "max_image_tokens": 256,
23
+ "max_num_patches": 1024,
24
+ "max_pixels_tolerance": 2.0,
25
+ "max_tiles": 10,
26
+ "min_image_tokens": 64,
27
+ "min_tiles": 2,
28
+ "resample": 3,
29
+ "rescale_factor": 0.00392156862745098,
30
+ "return_row_col_info": true,
31
+ "size": {
32
+ "height": 512,
33
+ "width": 512
34
+ },
35
+ "tile_size": 512,
36
+ "use_thumbnail": true
37
+ },
38
+ "processor_class": "Lfm2VlProcessor"
39
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "backend": "tokenizers",
3
+ "bos_token": "<|startoftext|>",
4
+ "clean_up_tokenization_spaces": true,
5
+ "do_image_splitting": true,
6
+ "eos_token": "<|im_end|>",
7
+ "extra_special_tokens": [],
8
+ "image_end_token": "<|image_end|>",
9
+ "image_start_token": "<|image_start|>",
10
+ "image_thumbnail": "<|img_thumbnail|>",
11
+ "image_token": "<image>",
12
+ "is_local": false,
13
+ "legacy": false,
14
+ "model_max_length": 1000000000000000019884624838656,
15
+ "model_specific_special_tokens": {
16
+ "image_end_token": "<|image_end|>",
17
+ "image_start_token": "<|image_start|>",
18
+ "image_token": "<image>"
19
+ },
20
+ "pad_token": "<|pad|>",
21
+ "processor_class": "Lfm2VlProcessor",
22
+ "resample": 3,
23
+ "return_token_type_ids": false,
24
+ "sp_model_kwargs": {},
25
+ "spaces_between_special_tokens": false,
26
+ "tokenizer_class": "TokenizersBackend",
27
+ "use_default_system_prompt": false,
28
+ "use_fast": true
29
+ }