AIMS2025 commited on
Commit
e32dbc1
·
verified ·
1 Parent(s): 60b62af

Rename CyclePlan GGUF files to V1

Browse files
.gitattributes CHANGED
@@ -41,3 +41,6 @@ DeepSignal-CyclePlan-4B_V1.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
41
  DeepSignal_CyclePlan-4B-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
42
  DeepSignal_CyclePlan-4B-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
43
  DeepSignal_CyclePlan-4B-F16.gguf filter=lfs diff=lfs merge=lfs -text
 
 
 
 
41
  DeepSignal_CyclePlan-4B-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
42
  DeepSignal_CyclePlan-4B-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
43
  DeepSignal_CyclePlan-4B-F16.gguf filter=lfs diff=lfs merge=lfs -text
44
+ DeepSignal_CyclePlan-4B-V1-F16.gguf filter=lfs diff=lfs merge=lfs -text
45
+ DeepSignal_CyclePlan-4B-V1-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
46
+ DeepSignal_CyclePlan-4B-V1-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
DeepSignal_CyclePlan-4B-F16.gguf → DeepSignal_CyclePlan-4B-V1-F16.gguf RENAMED
File without changes
DeepSignal_CyclePlan-4B-Q4_K_M.gguf → DeepSignal_CyclePlan-4B-V1-Q4_K_M.gguf RENAMED
File without changes
DeepSignal_CyclePlan-4B-Q8_0.gguf → DeepSignal_CyclePlan-4B-V1-Q8_0.gguf RENAMED
File without changes
README.md CHANGED
@@ -21,20 +21,20 @@ This repository provides GGUF checkpoints for local inference with traffic-signa
21
  This repository currently contains:
22
 
23
  - **DeepSignal-Phase-4B-V1**: next signal-phase prediction
24
- - **DeepSignal_CyclePlan-4B**: cycle-level green-time allocation for all phases in the upcoming signal cycle
25
 
26
  ## Model Files
27
 
28
  | Filename | Task | Quantization | Size | Notes |
29
  |:---|:---|:---:|:---:|:---|
30
  | `DeepSignal-Phase-4B_V1.F16.gguf` | Phase prediction | F16 | ~8 GB | Existing phase model |
31
- | `DeepSignal_CyclePlan-4B-F16.gguf` | Cycle planning | F16 | ~7.5 GB | Highest-fidelity CyclePlan checkpoint |
32
- | `DeepSignal_CyclePlan-4B-Q8_0.gguf` | Cycle planning | Q8_0 | ~4.0 GB | Balanced quality / speed |
33
- | `DeepSignal_CyclePlan-4B-Q4_K_M.gguf` | Cycle planning | Q4_K_M | ~2.4 GB | Recommended for local inference |
34
 
35
- ## DeepSignal_CyclePlan-4B
36
 
37
- `DeepSignal_CyclePlan-4B` is a traffic signal **cycle planning** model. It takes the predicted traffic state for the next cycle and outputs the green-time allocation for each phase while respecting phase-specific minimum and maximum green constraints.
38
 
39
  ### Recommended Prompt Format
40
 
@@ -62,7 +62,7 @@ Wrap the input with `【cycle_predict_input_json】...【/cycle_predict_input_js
62
  `Q4_K_M` is the recommended local default:
63
 
64
  ```bash
65
- llama-cli -m DeepSignal_CyclePlan-4B-Q4_K_M.gguf \
66
  --ctx-size 8192 \
67
  --temp 0.2 \
68
  -p 'You are a traffic signal timing optimization expert.
@@ -100,7 +100,7 @@ The final answer should contain a machine-readable plan inside `<SOLUTION>...</S
100
  ### Download Example
101
 
102
  ```bash
103
- huggingface-cli download AIMS2025/DeepSignal DeepSignal_CyclePlan-4B-Q4_K_M.gguf --local-dir .
104
  ```
105
 
106
  ## DeepSignal-Phase-4B-V1
@@ -135,9 +135,9 @@ where the number is the phase index (starting from 0) and the seconds is the dur
135
 
136
  | Model | Format Success Rate (%) | Avg Queue Vehicles | Avg Delay per Vehicle (s) | Throughput (veh/min) | Avg Response Time (s) |
137
  |:---:|:---:|:---:|:---:|:---:|:---:|
138
- | **DeepSignal_CyclePlan-4B F16 (thinking, Ours)** | **100.0** | **3.504** | **27.747** | **8.611** | 4.351 |
139
  | [`GLM-4.7-Flash (thinking)`](https://huggingface.co/zai-org/glm-4.7-flash) | 100.0 | 7.323 | 29.422 | 8.567 | 36.388 |
140
- | DeepSignal_CyclePlan-4B Q4_K_M (thinking, Ours) | 98.1 | 4.783 | 29.891 | 7.722 | 1.674 |
141
  | [`Qwen3-30B-A3B`](https://huggingface.co/Qwen/Qwen3-30B-A3B-2507) | 97.1 | 6.938 | 31.135 | 7.578 | 7.885 |
142
  | [`LightGPT-8B-Llama3`](https://huggingface.co/lightgpt/LightGPT-8B-Llama3) | 68.0 | 5.026 | 31.266 | 7.380 | 167.373 |
143
  | [`GPT-OSS-20B (thinking)`](https://huggingface.co/openai/gpt-oss-20b) | 65.4 | 6.289 | 31.947 | 7.247 | 4.919 |
 
21
  This repository currently contains:
22
 
23
  - **DeepSignal-Phase-4B-V1**: next signal-phase prediction
24
+ - **DeepSignal_CyclePlan-4B-V1**: cycle-level green-time allocation for all phases in the upcoming signal cycle
25
 
26
  ## Model Files
27
 
28
  | Filename | Task | Quantization | Size | Notes |
29
  |:---|:---|:---:|:---:|:---|
30
  | `DeepSignal-Phase-4B_V1.F16.gguf` | Phase prediction | F16 | ~8 GB | Existing phase model |
31
+ | `DeepSignal_CyclePlan-4B-V1-F16.gguf` | Cycle planning | F16 | ~7.5 GB | Highest-fidelity CyclePlan checkpoint |
32
+ | `DeepSignal_CyclePlan-4B-V1-Q8_0.gguf` | Cycle planning | Q8_0 | ~4.0 GB | Balanced quality / speed |
33
+ | `DeepSignal_CyclePlan-4B-V1-Q4_K_M.gguf` | Cycle planning | Q4_K_M | ~2.4 GB | Recommended for local inference |
34
 
35
+ ## DeepSignal_CyclePlan-4B-V1
36
 
37
+ `DeepSignal_CyclePlan-4B-V1` is a traffic signal **cycle planning** model. It takes the predicted traffic state for the next cycle and outputs the green-time allocation for each phase while respecting phase-specific minimum and maximum green constraints.
38
 
39
  ### Recommended Prompt Format
40
 
 
62
  `Q4_K_M` is the recommended local default:
63
 
64
  ```bash
65
+ llama-cli -m DeepSignal_CyclePlan-4B-V1-Q4_K_M.gguf \
66
  --ctx-size 8192 \
67
  --temp 0.2 \
68
  -p 'You are a traffic signal timing optimization expert.
 
100
  ### Download Example
101
 
102
  ```bash
103
+ huggingface-cli download AIMS2025/DeepSignal DeepSignal_CyclePlan-4B-V1-Q4_K_M.gguf --local-dir .
104
  ```
105
 
106
  ## DeepSignal-Phase-4B-V1
 
135
 
136
  | Model | Format Success Rate (%) | Avg Queue Vehicles | Avg Delay per Vehicle (s) | Throughput (veh/min) | Avg Response Time (s) |
137
  |:---:|:---:|:---:|:---:|:---:|:---:|
138
+ | **DeepSignal_CyclePlan-4B-V1 F16 (thinking, Ours)** | **100.0** | **3.504** | **27.747** | **8.611** | 4.351 |
139
  | [`GLM-4.7-Flash (thinking)`](https://huggingface.co/zai-org/glm-4.7-flash) | 100.0 | 7.323 | 29.422 | 8.567 | 36.388 |
140
+ | DeepSignal_CyclePlan-4B-V1 Q4_K_M (thinking, Ours) | 98.1 | 4.783 | 29.891 | 7.722 | 1.674 |
141
  | [`Qwen3-30B-A3B`](https://huggingface.co/Qwen/Qwen3-30B-A3B-2507) | 97.1 | 6.938 | 31.135 | 7.578 | 7.885 |
142
  | [`LightGPT-8B-Llama3`](https://huggingface.co/lightgpt/LightGPT-8B-Llama3) | 68.0 | 5.026 | 31.266 | 7.380 | 167.373 |
143
  | [`GPT-OSS-20B (thinking)`](https://huggingface.co/openai/gpt-oss-20b) | 65.4 | 6.289 | 31.947 | 7.247 | 4.919 |