기타
-
해당 오류는 yolo export 시 Ubuntu 18 환경에서 발생한 오류입니다.저의 경우는 yolo pose 모델의 keypoint 수를 17개에서 10개로 더 줄여서 custom model로 학습했는데 그것과는 상관없이 환경 차이로 발생한 걸로 보입니다. 오류 전체 구문은 아래와 같습니다.더보기TypeError: You are passing KerasTensor(type_spec=TensorSpec(shape=(1, 20, 20, 576), dtype=tf.float32, name=None), name='tf.math.multiply_179/Mul:0', description="created by layer 'tf.math.multiply_179'"), an intermediate Keras sym..
yolo export - TypeError: You are passing KerasTensor 오류 해결해당 오류는 yolo export 시 Ubuntu 18 환경에서 발생한 오류입니다.저의 경우는 yolo pose 모델의 keypoint 수를 17개에서 10개로 더 줄여서 custom model로 학습했는데 그것과는 상관없이 환경 차이로 발생한 걸로 보입니다. 오류 전체 구문은 아래와 같습니다.더보기TypeError: You are passing KerasTensor(type_spec=TensorSpec(shape=(1, 20, 20, 576), dtype=tf.float32, name=None), name='tf.math.multiply_179/Mul:0', description="created by layer 'tf.math.multiply_179'"), an intermediate Keras sym..
2024.09.04 -
1. iam 생성- iam 역할 > 역할 생성 > ec2full access 2. ec연결- iam 수정 : 1번에서 만든걸로 수정 3. mount설치 (os 확인) : https://docs.aws.amazon.com/AmazonS3/latest/userguide/mountpoint-installation.html Installing Mountpoint - Amazon Simple Storage ServiceInstalling Mountpoint You can download and install prebuilt packages of Mountpoint for Amazon S3 by using the command line. The instructions for downloading and instal..
aws ec2 s3 mount1. iam 생성- iam 역할 > 역할 생성 > ec2full access 2. ec연결- iam 수정 : 1번에서 만든걸로 수정 3. mount설치 (os 확인) : https://docs.aws.amazon.com/AmazonS3/latest/userguide/mountpoint-installation.html Installing Mountpoint - Amazon Simple Storage ServiceInstalling Mountpoint You can download and install prebuilt packages of Mountpoint for Amazon S3 by using the command line. The instructions for downloading and instal..
2024.06.19 -
페이팔 샌드박스(테스트 서버)에서 구독(정기결제)을 생성하고 결제하는 프로세스를 정리해보려 합니다. 정말 페이팔은 가이드가 부족해서 개발이 오래 걸리는 것 같습니다. 간단히 기록용으로 정리한 내용이라 궁금하신 부분이 있으면 댓글로 남겨주세요. 1. Paypal 개발자 계정 생성 https://developer.paypal.com/ https://developer.paypal.com/ developer.paypal.com 이 사이트에서 생성하면 됩니다. (GET API Credentials 버튼 클릭) 2. accounts 확인 https://developer.paypal.com/dashboard/accounts Developer Dashboard developer.paypal.com 개발자 계정 생성 시..
paypal sandbox subscription test process페이팔 샌드박스(테스트 서버)에서 구독(정기결제)을 생성하고 결제하는 프로세스를 정리해보려 합니다. 정말 페이팔은 가이드가 부족해서 개발이 오래 걸리는 것 같습니다. 간단히 기록용으로 정리한 내용이라 궁금하신 부분이 있으면 댓글로 남겨주세요. 1. Paypal 개발자 계정 생성 https://developer.paypal.com/ https://developer.paypal.com/ developer.paypal.com 이 사이트에서 생성하면 됩니다. (GET API Credentials 버튼 클릭) 2. accounts 확인 https://developer.paypal.com/dashboard/accounts Developer Dashboard developer.paypal.com 개발자 계정 생성 시..
2024.03.20 -
https://gusrb.tistory.com/25 [Ubuntu]우분투 무한 로그인 해결 여러 방법들ubuntu 무한 로그인우분투 사용하다 보면 가끔 로그인 화면에서 넘어가지 않을 때가 있다.원인은 다양 하겠지만 보통 nvidia 드라이버나 cuda의 충돌이라고들 한다.,...이 증상 때문에 정말 지겹도록 gusrb.tistory.com 여러 방법 중 위의 방법이 성공했습니다
우분투 18 무한 로그인 해결https://gusrb.tistory.com/25 [Ubuntu]우분투 무한 로그인 해결 여러 방법들ubuntu 무한 로그인우분투 사용하다 보면 가끔 로그인 화면에서 넘어가지 않을 때가 있다.원인은 다양 하겠지만 보통 nvidia 드라이버나 cuda의 충돌이라고들 한다.,...이 증상 때문에 정말 지겹도록 gusrb.tistory.com 여러 방법 중 위의 방법이 성공했습니다
2024.03.20 -
1. 기존 설치된 버전 있는지 확인 redis-server --version 있는 경우 기존 버전 제거 https://webhostinggeeks.com/howto/how-to-uninstall-redis-on-ubuntu/ How to Uninstall Redis on Ubuntu | Linux Tutorials for Beginners Redis is an in-memory data structure store, primarily used as a database, cache, and message broker. While it offers numerous advantages in terms of speed a ... webhostinggeeks.com 제거 확인 sudo netstat -ntlp |..
django redis 설정1. 기존 설치된 버전 있는지 확인 redis-server --version 있는 경우 기존 버전 제거 https://webhostinggeeks.com/howto/how-to-uninstall-redis-on-ubuntu/ How to Uninstall Redis on Ubuntu | Linux Tutorials for Beginners Redis is an in-memory data structure store, primarily used as a database, cache, and message broker. While it offers numerous advantages in terms of speed a ... webhostinggeeks.com 제거 확인 sudo netstat -ntlp |..
2024.02.22 -
from django.views.decorators.http import require_POST import json @require_POST def api_sample(request): data = json.loads(request.POST.get('targets')) print(data) # {'key1': [[1, 2, 3], [65, 3, 11], ...]} Python $.ajax({ type: 'POST', url: '/api_sample', dataType: 'json', data: { targets:JSON.stringify({"key1":[[1, 2, 3], [11, 22, 33]]}) }, success: (res)=>{ console.log(res) }, error: (error)=>..
django array input request POST로 받는 법from django.views.decorators.http import require_POST import json @require_POST def api_sample(request): data = json.loads(request.POST.get('targets')) print(data) # {'key1': [[1, 2, 3], [65, 3, 11], ...]} Python $.ajax({ type: 'POST', url: '/api_sample', dataType: 'json', data: { targets:JSON.stringify({"key1":[[1, 2, 3], [11, 22, 33]]}) }, success: (res)=>{ console.log(res) }, error: (error)=>..
2024.02.21