pkkidking commited on
Commit
153e2ce
·
verified ·
1 Parent(s): e03c3a4

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +69 -0
README.md ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - en
5
+ task_categories:
6
+ - text-generation
7
+ - question-answering
8
+ tags:
9
+ - interconnection
10
+ - solar
11
+ - utilities
12
+ - coordination
13
+ - fine-tuning
14
+ - qwen
15
+ pretty_name: "IX Coordination Tasks"
16
+ size_categories:
17
+ - 10K<n<100K
18
+ ---
19
+
20
+ # IX Coordination Tasks
21
+
22
+ Instruction-tuning dataset for interconnection coordination in utility-scale solar and storage projects. Built from real Salesforce task logs (76K+ entries across 5,700+ projects) to train models on utility-specific workflows and rejection resolution.
23
+
24
+ ## Dataset Summary
25
+
26
+ - **35,005** instruction-response pairs (ShareGPT/ChatML format)
27
+ - **31,504** training / **3,501** validation (90/10 split)
28
+ - Covers **37+ utilities** including Duke Energy, PG&E, Xcel, Consumers Energy, ComEd, AEP, PPL, and more
29
+ - Organized into 4 task categories
30
+
31
+ ### Categories
32
+
33
+ | Category | Examples | Description |
34
+ |---|---|---|
35
+ | **Rejection → Resolution** | 2,852 | Utility rejects interconnection application (system size, design, missing docs) → resolution steps |
36
+ | **Missing Item → Collection** | 6,112 | Missing signed documents, HOI, FIN, utility bills, placards → collection and submission procedures |
37
+ | **Utility Communication** | 4,647 | Calling/following up with utilities → what to ask, what to have ready |
38
+ | **Follow-Up Workflow** | 21,394 | Routine status checks, portal verification, next-action determination |
39
+
40
+ ## Data Format
41
+
42
+ Each example follows the ChatML/sharegpt format with system/user/assistant roles:
43
+
44
+ ```json
45
+ {
46
+ "messages": [
47
+ {"role": "system", "content": "You are an expert interconnection coordination assistant..."},
48
+ {"role": "user", "content": "Project: 1606MERE\nUtility: Duke Energy Progress NC\n..."},
49
+ {"role": "assistant", "content": "Rejection Analysis for 1606MERE | Duke Energy Progress NC\n..."}
50
+ ]
51
+ }
52
+ ```
53
+
54
+ ## Intended Use
55
+
56
+ Fine-tuning small-to-medium LLMs (3B-8B) with QLoRA/LoRA for interconnection coordination assistance. The model learns to:
57
+
58
+ 1. Identify the correct utility-specific workflow
59
+ 2. Diagnose rejection causes from task log context
60
+ 3. Provide concrete resolution steps with follow-up timelines
61
+ 4. Reference utility portal requirements and submission procedures
62
+
63
+ ## Source Data
64
+
65
+ Built from the Interconnection Dash repository's Salesforce task log exports:
66
+ - `All-Task-Logs.csv` (76,092 rows)
67
+ - `All-Projects-All-Time.csv` (utility name and state enrichment)
68
+
69
+ Retrieved May 5, 2026.