pulse-akhil commited on
Commit
98493fc
·
verified ·
1 Parent(s): c469b9c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +55 -1
README.md CHANGED
@@ -1,5 +1,59 @@
1
  ---
2
  license: mit
 
 
 
3
  tags:
4
- - unsloth
 
 
 
 
 
 
 
5
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ language:
4
+ - en
5
+ library_name: transformers
6
  tags:
7
+ - unsloth
8
+ - lora
9
+ - ocpp
10
+ - ev-charging
11
+ - diagnostics
12
+ - qwen2.5
13
+ base_model: unsloth/Qwen2.5-7B
14
+ pipeline_tag: text-generation
15
  ---
16
+
17
+ # pulseenergy-ocpp-llm
18
+
19
+ A fine-tuned diagnostics model for OCPP (Open Charge Point Protocol) EV charging
20
+ networks, built by [Pulse Energy](https://huggingface.co/OCPP-PulseEnergy). It is
21
+ trained to interpret OCPP message logs, surface likely root causes for charger
22
+ faults, and explain protocol-level behaviour in plain language.
23
+
24
+ ## Model details
25
+
26
+ - **Developed by:** Pulse Energy Technologies Pvt. Ltd.
27
+ - **Base model:** Qwen2.5-7B
28
+ - **Language:** English
29
+ - **License:** MIT
30
+
31
+ ## Intended use
32
+
33
+ Designed for charge point operators (CPOs) and support teams to:
34
+
35
+ - Diagnose charger faults from OCPP message traces (BootNotification,
36
+ StatusNotification, MeterValues, StartTransaction/StopTransaction, etc.)
37
+ - Map OCPP error codes and status transitions to probable causes
38
+ - Explain OCPP 1.6 / 2.0.1 protocol behaviour and message semantics
39
+ - Assist first-line support triage before escalation
40
+
41
+
42
+ ## Limitations and recommendations
43
+
44
+ - Coverage is strongest for common OCPP 1.6 fault patterns; rarer or
45
+ vendor-specific extensions may be less reliable.
46
+ - The model can produce plausible but incorrect root-cause attributions; keep a
47
+ human in the loop for any operational action.
48
+ - Recommended decoding: low temperature (≈0.2–0.4) for deterministic diagnostics.
49
+
50
+ ## Citation
51
+
52
+ ```bibtex
53
+ @misc{pulseenergy_ocpp_llm,
54
+ title = {pulseenergy-ocpp-llm: An OCPP Diagnostics LLM},
55
+ author = {Pulse Energy Technologies},
56
+ year = {2026},
57
+ howpublished = {\url{https://huggingface.co/OCPP-PulseEnergy/pulseenergy-ocpp-llm}}
58
+ }
59
+ ```