👩💻 도비는 공부중/💼 하계연구연수생(2023) 썸네일형 리스트형 Time Series Data > Machine Learning 더보기 [과정 이해하기] 1. Merge FRT와 Motion data의 시간 동기화 > 병합 > 하나의 보행 데이터 파일 생성 merge_Files_in_Folders(DIR_Src = Dataset/2022_11_10) ┗ create a folder for the merged files 원래 폴더명에 _M을 붙어서 새로운 폴더를 만들어 list of devices = [shadow, hs_server] 2. Labelling 보행 데이터의 정보 이용해 마지막 col 에 'TAG' 부여 label_config > shadowdata | smartinsoldata 3. FeatureSelection 'feature_config_xlsx' 이용해 라벨링된 데이터로부터 특징 재정렬 > 데이터 파일로 저장 .. 더보기 [hdf5] 대용량 데이터 처리 h5py + HDF5Mtrix data generator library csv 파일로 처리하다가 어쩌구 >> 메모리 부족으로 생기는 오류 같아요.. >> 대용량 데이터를 처리하는 방법에 대해 알아봅시다! >> hdf5 1. tensorflow version 2. Import import h5py from tensorflow.keras.utils import HDF5Matrix 3. Create h5py data data = pd.read_csv('data') # 구조 생성시 데이터 불러와 넣어주는 작업 필요 # 데이터 나눠서 부르고 인덱스로 구분지어 입력 가능 f = h5py.File('path', 'w') """ 데이터 저장 위한 구조 생성 keyword: 데이터 구조 접근 | data size: ro.. 더보기 [공유 세미나] 2023 상반기 학회 CVPR - Detecting Everything in the open World: Towards universal object detection Everything | Open World | Universal image + text 공간의 alignment > multiple sources & heterogeneous label space image Open World └ Unseen classes: Open-vocabulary object detection └ Various domains: Object detection in the Wild AAAI - SWL -Adapt: An unsupervised domain adaptation model with sample weight learning for.. 더보기 [미해결] [Unreal] Motion Capture Data | Visualizing with UE5 Matching Bones: Model data and Character 센서에서 얻은 데이터 이름과 unreal 캐릭터의 bone matching udp 서버에서 데이터프레임 만들어 unreal 형식에 맞춰서 전송 UDP Message Printing CONNECT : 'UDPRecivedEvent' -> 'Print String' node 'Printing String' node ➝ screen/console 출력 option 선택 가능 ☑ return value 20 ➝ 22 (add shoulder skeleton) 센서 shoulder == 캐릭터 clavicle 로 조정했는데 잘 모르겠음 (수정) ☑ sensor = { name , oriientation { roll, ptich, yaw } .. 더보기 [Python] configparser 개발 환경이나 사용자에 따른 설정 파일 만들기 1. configparser > create config file import configparser # config file config = configparser.ConfigParser() # create config file object config['system'] = {} config['system']['title'] = 'Neural Networks' config['system']['version'] = '0.0.1' config 파일 생성 > config['object name'] = {} 으로 섹션 생성 데이터 값은 문자열로만 저장 > 읽고 쓰는 과정에서 전처리 필요 2. config 파일 저장 후 읽기 # save with open('conf.. 더보기 [Python] 실행파일(.exe) 만들기 | pyinstaller ❍ pyinstaller 파이썬 코드를 실행 파일 형태로 패키징하여 사용자가 별도의 python interpreter 없이 해당 프로그램 실행할 수 있도록한다. pip 통해 설치 pip install pyinstaller - pyinstaller 사용하기 위해 프로그램에 필요한 라이브러리와 종속성 설치 필요 - pip로 설치할 경우, 일부 패키지 누락 가능 > 수동으로 패키지 설치 필요 (pathlib 모듈이 설치된 경우, pyinstaller 가 설치되지 않거나 실행되지 않음 > 새로운 가상환경 만들어 pyinstaller 환경 설정) ❍ .py > .exe 해당 경로로 이동 후 명령어 수행 pyinstaller [File].py ┖ build ┖ dist ┖ main.spec 실행 파일은 dist 폴.. 더보기 [Mac] M1 | Unreal Engine 5 | Xcode Xcode Metal compilder에 대한 Xcode 설치를 찾을 수 없습니다. 나한테 왜그래.. 1. Xcode 없으면 설치 2. 실행 > 앱스토어에서 업데이트 Xcode > Preferences > Locations > Command Line Tools 변경 Terminal sudo xcode-select -s /Applications/Xcode.app/Contents/Developer 실행은 되는데 35%에서 진행 안하는데 이게 맞나 (15분째 제자리) 발열 심해지면 그냥 죽여버릴까 20분.. 75%에서 컴퓨터 터질 것 같더니 잘 실행된다^^ 더보기 [추가업무] Python | 폴더 탐색 | 파일명 변경 1. Dataset download >> 폴더 구조에 맞추어 파일 명 변경하기 2. os.walk(top, topdwon=True, onerror=-None, followlink=False) top: 시작 dir의 경로 topdown: default = True onerror: 순회 중 오류가 발생했을 때 호출할 함수 지정 followlinks: 심볼릭 링크 따라가지 않고 직접 순회 # 하위 디렉토리(Sub directory) 내의 *.csv 파일도 검색하여 리스트 만들 수 있도록 수정 def origin(pDir_path, pExt): file_path_lists = [] file_name_lists = [] print(f'root: {pDir_path}') for (path, dir, files) i.. 더보기 이전 1 2 3 다음