jaehwan77 commited on
Commit
3716c69
·
1 Parent(s): b75a197

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +103 -0
README.md ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - text-classification
5
+ language:
6
+ - en
7
+ tags:
8
+ - game
9
+ pretty_name: StarData (honkai-starRail)
10
+ ---
11
+ ## OverView
12
+ 1. `json_output.7z` : json 형태의 파싱된 데이터.
13
+ 2. `vector_index.7z` : 파싱된 데이터를 SQL로 테이블을 만든 후 LanceDB를 이용해 생성된 벡터 인덱스.
14
+ 3. 원본 데이터 출처 [붕괴 스타레일](https://honkai-star-rail.fandom.com/wiki/Hexanexus:_Development_Team_Interview)
15
+
16
+ ## Dataset Structure Overview
17
+
18
+ ### 1. Version (버전)
19
+ - version_infobox:
20
+ - title (제목): string
21
+ - version (버전 번호): string
22
+ - release_date (출시일): string
23
+ - previous_version (이전 버전): string
24
+ - next_version (다음 버전): string
25
+ - description (설명): string
26
+ - events (이벤트 목록): list[string]
27
+ - missions (미션 데이터): dict
28
+ - category_name (카테고리명): list[dict]
29
+ - main_mission (메인 미션): string
30
+ - sub_missions (서브 미션): list[string]
31
+
32
+ ### 2. Chapter (챕터)
33
+ - chapter_info:
34
+ - type (유형): string
35
+ - chapter_title (챕터 제목): string
36
+ - chapter_number (챕터 번호): string
37
+ - next_chapter (다음 챕터): string
38
+ - mission_list (미션 리스트): list[string]
39
+ - side_missions (사이드 미션): list[dict]
40
+ - mission (미션명): string
41
+ - children (하위 미션): list[dict]
42
+
43
+ ### 3. Mission (임무 - 상세)
44
+ - id (ID): integer
45
+ - title (미션 제목): string
46
+ - image (이미지 경로): string
47
+ - type (임무 유형): string
48
+ - event_name (관련 이벤트명): string
49
+ - chapter (소속 챕터): string
50
+ - requirements (선행 요구사항): string
51
+ - summary (줄거리 요약): string
52
+ - characters (등장 캐릭터): list[string]
53
+ - world (월드): string
54
+ - area (지역/구역): string
55
+ - start_location (시작 위치): string
56
+ - rewards (보상 정보):
57
+ - reward_exp (개척 경험치): integer
58
+ - reward_travel_encounters (여행 가이드): integer
59
+ - reward_credits (신용 포인트): integer
60
+ - steps (진행 단계): string/list
61
+ - dialogue (대화 데이터): list[DialogueNode]
62
+
63
+ ### 4. Location (지역/장소)
64
+ - title (지역명): string
65
+ - image (이미지): string
66
+ - type (유형): string
67
+ - world (소속 월드): string
68
+ - region (구역): string
69
+ - description (설명): string
70
+ - history (역사/기록): string
71
+ - Activities (활동): list[string]
72
+ - location (세부 위치): list[string]
73
+ - Exploration (탐사 요소): list[dict{key: value}]
74
+ - Fragments of Recollection (회상의 조각): list[DialogueNode]
75
+ - Enlightenments (계시): list[dict]
76
+ - title/context/content
77
+ - Dialogue (조사 대화): list[DialogueNode]
78
+ - Enemies (출현 적):
79
+ - Normal (일반): list[string]
80
+ - Elite (정예): list[string]
81
+
82
+ ### 5. Relic (유물)
83
+ - id (ID): integer
84
+ - title (이름): string
85
+ - image (이미지): string
86
+ - set (세트명): string
87
+ - piece (부위): string
88
+ - mentions (언급/관련 인물): string
89
+ - Description (짧은 설명): string
90
+ - Detail (상세 효과 설명): string
91
+
92
+ ---
93
+ ### DialogueNode (대화 노드 구조)
94
+ - node_id (노드 고유 ID): integer
95
+ - parent_id (부모 노드 ID): integer (Optional)
96
+ - depth (깊이/계층): integer
97
+ - type (노드 유형): "dialogue" | "option" | "system" | "text"
98
+ - speaker (화자): string (e.g., "Trailblazer", "March 7th")
99
+ - content (내용): string
100
+ - audio_id (오디오 ID): string (Optional, e.g., "VO_Chapter_01")
101
+ - icon (선택지 아이콘): string (Optional)
102
+ - rewards (시스템 보상 아이템): string (Optional)
103
+ - children (하위 대화/분기): list[DialogueNode]