본문 바로가기
SMALL

분류 전체보기527

CS) RPC란? 안녕하세요, 코린이의 코딩 학습기 채니 입니다.개인 포스팅용으로 내용에 오류 및 잘못된 정보가 있을 수 있습니다. RPC (Remote Procedure Call) 란?직역하면 "원격 프로시저 호출" 이다.이름에서 알 수 있듯이 RPC는 다른 주소 공간에서 *함수나 *프로시저를 실행할 수 있게 하는 프로세스 간의 통신 기술이다. * 함수란- input에 따른 Output 발생을 목적으로 함- Return 값 필수 * 프로시저란- Output 값에 집중하기 보단 명령 단위가 수행하는 절차를 목적으로 함  정말 쉽게 예를 들어서 설명해보자면,A 컴퓨터에서 '더하기' 기능을 실행하려고 하는데 해당 기능은 B 컴퓨터에 구현이 되어있다고 가정해보자.A 컴퓨터 → B 컴퓨터에게 "야 B 컴퓨터! '더하기' 기능을 .. 2024. 11. 15.
React) 자동 번역 기능 활성화 시 Failed to execute 'removeChild' on 'Node' 오류 안녕하세요, 코린이의 코딩 학습기 채니 입니다.개인 포스팅용으로 내용에 오류 및 잘못된 정보가 있을 수 있습니다.# 상황React 18ChatGPT 채팅 웹사이트Naver Whale에서 영어 → 한국어 자동 번역 기능을 키고영어로 대화가 이루어진 A 채팅방 → B 채팅방 → A 채팅방 내용을 클릭 시 아래와 같은 오류가 발생했다.🐛 오류 메세지Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node.💡 해결방안채팅 메세지를 보여줄 때 react-markdown 패키지를 이용하였고, p 태그인 경우 아래와 같이 p 태그로 감싸 리턴해주었다.p({ children }) { useEffect.. 2024. 11. 4.
HuggingFace) Error(s) in loading state_dict for '' Missing key(s) in state_dict 안녕하세요, 코린이의 코딩 학습기 채니 입니다.개인 포스팅용으로 내용에 오류 및 잘못된 정보가 있을 수 있습니다.# 상황HuggingFace에서 사전 학습된 모델을 가져와 프로젝트를 하나 만들려고 했다.https://huggingface.co/TencentARC/PhotoMaker TencentARC/PhotoMaker · Hugging FacePhotoMaker Model Card Introduction Users can input one or a few face photos, along with a text prompt, to receive a customized photo or painting within seconds (no training required!). Additionally, this .. 2024. 8. 30.
HuggingFace) TypeError: _get_model_file() got an unexpected keyword argument 'resume_download' 오류 안녕하세요, 코린이의 코딩 학습기 채니 입니다.개인 포스팅용으로 내용에 오류 및 잘못된 정보가 있을 수 있습니다.# 상황HuggingFace에서 사전 학습된 모델을 가져와 프로젝트를 하나 만들려고 했다.https://huggingface.co/TencentARC/PhotoMaker TencentARC/PhotoMaker · Hugging FacePhotoMaker Model Card Introduction Users can input one or a few face photos, along with a text prompt, to receive a customized photo or painting within seconds (no training required!). Additionally, this .. 2024. 8. 30.
HuggingFace) Torch not compiled with CUDA enabled 오류 안녕하세요, 코린이의 코딩 학습기 채니 입니다.개인 포스팅용으로 내용에 오류 및 잘못된 정보가 있을 수 있습니다.# 상황HuggingFace에서 사전 학습된 모델을 가져와 프로젝트를 하나 만들려고 했다.https://huggingface.co/TencentARC/PhotoMaker TencentARC/PhotoMaker · Hugging FacePhotoMaker Model Card Introduction Users can input one or a few face photos, along with a text prompt, to receive a customized photo or painting within seconds (no training required!). Additionally, this .. 2024. 8. 30.
HuggingFace) Unable to import dependency onnxruntime. 안녕하세요, 코린이의 코딩 학습기 채니 입니다.개인 포스팅용으로 내용에 오류 및 잘못된 정보가 있을 수 있습니다.# 상황HuggingFace에서 사전 학습된 모델을 가져와 프로젝트를 하나 만들려고 했다.https://huggingface.co/TencentARC/PhotoMaker TencentARC/PhotoMaker · Hugging FacePhotoMaker Model Card Introduction Users can input one or a few face photos, along with a text prompt, to receive a customized photo or painting within seconds (no training required!). Additionally, this .. 2024. 8. 30.
LIST