Commit d913071c authored by kihoon.lee's avatar kihoon.lee
Browse files

update;

parent 9fa6c344
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -4,5 +4,7 @@ ...@@ -4,5 +4,7 @@
| QR_v1.3 | 8,650개 | QR_v1.2 + QC 데이터셋 + 테스트 당시 안나온 질문들 | | QR_v1.3 | 8,650개 | QR_v1.2 + QC 데이터셋 + 테스트 당시 안나온 질문들 |
| QR_v1.4 | 9,573개 | QR_v1.3 + OCR 데이터 129개 + 롯데GPT 로그(24.07.29 기준, 794건)| | QR_v1.4 | 9,573개 | QR_v1.3 + OCR 데이터 129개 + 롯데GPT 로그(24.07.29 기준, 794건)|
| QR_v1.5.1 | 9,573개 | QR_v1.4 추천질의 전체 업데이트 (사용자입장에서 더 다양하게 질문할 수 있도록 + 추천질의 포맷 전부 동일하게)| | QR_v1.5.1 | 9,573개 | QR_v1.4 추천질의 전체 업데이트 (사용자입장에서 더 다양하게 질문할 수 있도록 + 추천질의 포맷 전부 동일하게)|
| QR_v1.5.2 | 9,561개 | 롯데GPT야, 롯데GPT님, 등 제거|
%% Cell type:code id: tags: %% Cell type:code id: tags:
``` python ``` python
import json import json
file_path = 'QR_v1.4.json' file_path = 'QR_v1.5.2.json'
with open(file_path, 'r', encoding='utf-8') as file: with open(file_path, 'r', encoding='utf-8') as file:
data = json.load(file) data = json.load(file)
print(f"QR_v1.4 데이터 개수: {len(data)}개") print(f"{file_path.split('.json')[0]} 데이터 개수: {len(data)}개")
``` ```
%% Output %% Output
QR_v1.4 데이터 개수: 9573개 QR_v1.4 데이터 개수: 9573개
%% Cell type:code id: tags: %% Cell type:code id: tags:
``` python ``` python
``` ```
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment