wonsupshin commited on
Commit
4118218
·
verified ·
1 Parent(s): 8300275

De-anonymize model card for public release

Browse files
Files changed (1) hide show
  1. README.md +20 -36
README.md CHANGED
@@ -1,44 +1,28 @@
1
  ---
2
- license: other
3
- tags:
4
- - sft
5
- - expert-qa
6
- - full-ft
7
- - medical
8
- - exp0
9
- - tmp
10
  language:
11
- - ko
12
- - en
 
 
 
 
13
  ---
14
 
15
- # tmp_expertQA_exaone3.5-7.8b_exp0_medical
16
-
17
- QA Generator pipeline ablation 학습 모델 — **연구용 임시 스냅샷** (production 용도 아님).
18
-
19
- - **Base model**: `LGAI-EXAONE/EXAONE-3.5-7.8B-Instruct`
20
- - **Method**: Full FT
21
- - **Condition**: `exp0` (Phase 0 OFF / Phase 2 OFF)
22
- - **Domain**: medical
23
- - **Run ID**: `exaone3.5-7.8b_exp0_medical`
24
- - **Uploaded**: 2026-05-06T06:09:56Z
25
-
26
- ## Reproduction
27
-
28
- ```python
29
- from huggingface_hub import snapshot_download
30
- local = snapshot_download(repo_id="Flitto/tmp_expertQA_exaone3.5-7.8b_exp0_medical", token="$HF_TOKEN")
31
- ```
32
 
33
- LoRA 어댑터인 경우 PEFT로 로드:
34
 
35
- ```python
36
- from peft import PeftModel
37
- from transformers import AutoModelForCausalLM
38
- base = AutoModelForCausalLM.from_pretrained("LGAI-EXAONE/EXAONE-3.5-7.8B-Instruct")
39
- model = PeftModel.from_pretrained(base, local)
40
- ```
 
 
 
41
 
42
- ## License
43
 
44
- Inherits the base model's license. EXAONE/Llama/Gemma는 제공사 라이선스를 따른다.
 
1
  ---
2
+ base_model: LGAI-EXAONE/EXAONE-3.5-7.8B-Instruct
 
 
 
 
 
 
 
3
  language:
4
+ - ko
5
+ - en
6
+ license: cc-by-nc-4.0
7
+ tags:
8
+ - speech-to-sft
9
+ - emnlp-2026-industry
10
  ---
11
 
12
+ # expertQA_exaone3.5-7.8b_exp0_medical_fullft
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
 
14
+ SFT checkpoint from the EMNLP 2026 Industry Track submission *A Factorial Ablation of a Speech-to-SFT Pipeline: Differential Effects on Data Quality and Downstream Transfer*.
15
 
16
+ | Field | Value |
17
+ |---|---|
18
+ | Pipeline condition | **Exp 0** (baseline (no refinement)) |
19
+ | Domain | medical |
20
+ | Seed | n/a (single seed 42) |
21
+ | Base model | [LGAI-EXAONE/EXAONE-3.5-7.8B-Instruct](https://huggingface.co/LGAI-EXAONE/EXAONE-3.5-7.8B-Instruct) |
22
+ | Training | Full FT (ZeRO-3) |
23
+ | Upstream STT | In-house STT (paper main pipeline) |
24
+ | License | CC BY-NC 4.0 (research and non-commercial use only) |
25
 
26
+ **Intended use**: research and non-commercial use only, matching the consent scope of the source audio.
27
 
28
+ **Companion repository** (code, configs, prompts, sample QA): <https://github.com/flitto/speech-to-sft-ablation-paper>