Primebiswa ProfessorCastillo commited on
Commit
23dc2a2
·
verified ·
0 Parent(s):

Duplicate from Supply-Chain-AI-Research/GSCF_finetune

Browse files

Co-authored-by: Vince Castillo <ProfessorCastillo@users.noreply.huggingface.co>

Files changed (3) hide show
  1. .gitattributes +59 -0
  2. README.md +50 -0
  3. gscf_qa.jsonl +0 -0
.gitattributes ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.7z filter=lfs diff=lfs merge=lfs -text
2
+ *.arrow filter=lfs diff=lfs merge=lfs -text
3
+ *.bin filter=lfs diff=lfs merge=lfs -text
4
+ *.bz2 filter=lfs diff=lfs merge=lfs -text
5
+ *.ckpt filter=lfs diff=lfs merge=lfs -text
6
+ *.ftz filter=lfs diff=lfs merge=lfs -text
7
+ *.gz filter=lfs diff=lfs merge=lfs -text
8
+ *.h5 filter=lfs diff=lfs merge=lfs -text
9
+ *.joblib filter=lfs diff=lfs merge=lfs -text
10
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
+ *.lz4 filter=lfs diff=lfs merge=lfs -text
12
+ *.mds filter=lfs diff=lfs merge=lfs -text
13
+ *.mlmodel filter=lfs diff=lfs merge=lfs -text
14
+ *.model filter=lfs diff=lfs merge=lfs -text
15
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
16
+ *.npy filter=lfs diff=lfs merge=lfs -text
17
+ *.npz filter=lfs diff=lfs merge=lfs -text
18
+ *.onnx filter=lfs diff=lfs merge=lfs -text
19
+ *.ot filter=lfs diff=lfs merge=lfs -text
20
+ *.parquet filter=lfs diff=lfs merge=lfs -text
21
+ *.pb filter=lfs diff=lfs merge=lfs -text
22
+ *.pickle filter=lfs diff=lfs merge=lfs -text
23
+ *.pkl filter=lfs diff=lfs merge=lfs -text
24
+ *.pt filter=lfs diff=lfs merge=lfs -text
25
+ *.pth filter=lfs diff=lfs merge=lfs -text
26
+ *.rar filter=lfs diff=lfs merge=lfs -text
27
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
28
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
29
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
30
+ *.tar filter=lfs diff=lfs merge=lfs -text
31
+ *.tflite filter=lfs diff=lfs merge=lfs -text
32
+ *.tgz filter=lfs diff=lfs merge=lfs -text
33
+ *.wasm filter=lfs diff=lfs merge=lfs -text
34
+ *.xz filter=lfs diff=lfs merge=lfs -text
35
+ *.zip filter=lfs diff=lfs merge=lfs -text
36
+ *.zst filter=lfs diff=lfs merge=lfs -text
37
+ *tfevents* filter=lfs diff=lfs merge=lfs -text
38
+ # Audio files - uncompressed
39
+ *.pcm filter=lfs diff=lfs merge=lfs -text
40
+ *.sam filter=lfs diff=lfs merge=lfs -text
41
+ *.raw filter=lfs diff=lfs merge=lfs -text
42
+ # Audio files - compressed
43
+ *.aac filter=lfs diff=lfs merge=lfs -text
44
+ *.flac filter=lfs diff=lfs merge=lfs -text
45
+ *.mp3 filter=lfs diff=lfs merge=lfs -text
46
+ *.ogg filter=lfs diff=lfs merge=lfs -text
47
+ *.wav filter=lfs diff=lfs merge=lfs -text
48
+ # Image files - uncompressed
49
+ *.bmp filter=lfs diff=lfs merge=lfs -text
50
+ *.gif filter=lfs diff=lfs merge=lfs -text
51
+ *.png filter=lfs diff=lfs merge=lfs -text
52
+ *.tiff filter=lfs diff=lfs merge=lfs -text
53
+ # Image files - compressed
54
+ *.jpg filter=lfs diff=lfs merge=lfs -text
55
+ *.jpeg filter=lfs diff=lfs merge=lfs -text
56
+ *.webp filter=lfs diff=lfs merge=lfs -text
57
+ # Video files - compressed
58
+ *.mp4 filter=lfs diff=lfs merge=lfs -text
59
+ *.webm filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+
5
+ # GSCF Q&A Dataset for Fine-Tuning
6
+
7
+ ## Dataset Summary
8
+
9
+ This dataset contains a collection of question-and-answer pairs specifically designed for fine-tuning Large Language Models (LLMs) on the **Global Supply Chain Forum (GSCF) framework**, a leading process model developed at The Ohio State University.
10
+
11
+ The data is structured to train a model to act as an expert supply chain consultant. The content covers two main types of interactions:
12
+
13
+ 1. **Definitional Knowledge:** Questions that define and explain the core concepts, goals, and activities of the eight GSCF processes.
14
+ 2. **Scenario-Based Application:** Realistic business problems that require the model to identify the relevant GSCF processes and formulate a structured, actionable solution based on the framework's principles.
15
+
16
+ The goal of this dataset is to create a specialized AI assistant capable of performing nuanced analysis and providing expert-level advice within the GSCF methodology.
17
+
18
+ ## Dataset Structure
19
+
20
+ The dataset is provided in the `.jsonl` format, where each line is a distinct JSON object. Each object contains two keys:
21
+
22
+ - `"question"`: A string representing the user's query or problem statement.
23
+ - `"answer"`: A string containing the expert, GSCF-aligned response.
24
+
25
+ ### Example Data Point
26
+
27
+ ```json
28
+ {
29
+ "question": "Our retail customers complain about inconsistent product availability across stores. How can we address this?",
30
+ "answer": "The GSCF (Global Supply Chain Forum) framework identifies this challenge as falling under **Demand Management** and **Order Fulfillment** processes. Demand Management focuses on accurate forecasting and inventory balancing, while Order Fulfillment ensures efficient distribution. You're likely experiencing forecast inaccuracies and poor allocation logic. Implement point-of-sale data analytics to capture real-time demand signals and adjust inventory dynamically. For a fashion retailer, this might mean redistributing seasonal items between urban and suburban stores based on weekly sales velocity. Establish safety stock policies tailored to each store's demand variability and lead times. Cross-functional collaboration between merchandising and logistics teams is crucial—use shared dashboards to align promotions with inventory positioning. This integrated approach typically reduces stockouts by 20-30% while decreasing excess inventory costs."
31
+ }
32
+ ```
33
+
34
+ ## Data Generation Methodology
35
+ The data in this collection is synthetically generated. To ensure a high degree of quality and to mitigate single-model bias, a diverse set of state-of-the-art Large Language Models was used to generate portions of the dataset.
36
+ Each model was prompted to generate responses that adhere strictly to the GSCF framework's principles and structure. The models used for generation include:
37
+
38
+ - Sonnet 4.5
39
+ - gpt-5
40
+ - Mistral Medium 3
41
+ - Kimi (K2)
42
+ - Qwen 3 (235B)
43
+ - Google Gemini 2.5 Pro
44
+ - GLM-4.6
45
+ - Deepseek R1
46
+
47
+ This multi-model approach results in a robust and varied dataset that captures a broad range of linguistic styles while maintaining a consistent focus on the core GSCF methodology.
48
+
49
+ ## Intended Use
50
+ This dataset is primarily intended for Supervised Fine-Tuning (SFT) of language models. It can be used to imbue a base model with the specialized knowledge and conversational patterns required to function as an expert GSCF consultant. The resulting fine-tuned model would be a valuable tool for business analysis, education, and decision support in the field of supply chain management.
gscf_qa.jsonl ADDED
The diff for this file is too large to render. See raw diff