그 외(40)
-
[그 외] korquad json 파일을 df로 바꾸는 코드
with open("../data/KorQuAD_v1.0_dev.json", 'r') as f: jf = json.load(f) titles = [] contexts = [] questions = [] ids = [] answers = [] document_ids = [] index_level_0s = [] print(len(jf['data'])) for data in jf['data']: title = data['title'] document_id = 0 index_level_0 = 0 for ele in data['paragraphs']: context = ele['context'] for subele in ele['qas']: answer = {'answer_start': [subele['answe..
2023.06.18 -
[리눅스] grep
grep -rn "찾으려는 문자열"
2023.05.28 -
[그 외] Pandas unnamed:0 컬럼 제거
pandas Unnamed: 0 제거 pd.read_csv를 사용하면 'unnamed:0' 컬럼이 추가된다고 한다. 삭제 방법 pd.read_csv(f"{directory}/{csv_file}", index_col=0)
2023.05.24 -
[그 외] 주피터 노트북 가상환경
가상환경 활성화 주피터 노트북 설치 pip install jupyter notebook 주피터 노트북에 가상환경 커널 추가 python -m ipykernel install --user --name env_name --display-name show_name
2023.05.24 -
pandas
train_df.iloc[[0]]: 첫번째 행 추출 group을 예쁘게 보고싶다면 from IPython.display import display for name, group in groups: display(group)
2023.05.18 -
[그 외] 주피터 노트북
Pandas pd.set_option('display.max_rows', None): 행 다 나오게 하기 pd.set_option('display.max_colwidth', None): 열 안에 있는 내용이 다 보이게 하기 Mac 단축키 ESC -> X: 셀 삭제 ESC -> B: 셀 생성 ESC -> M: Mark down으로 변경 ESC -> Enter: 셀에 입력
2023.05.05