카페검색 본문
카페글 본문
-
(6) 부활절 538,731.001001일의 신비함에 대한 AI의 천문학적 검증 2024.11.27해당카페글 미리보기
검증 실행 results = verify_complex_astronomical_cycles() print("정밀 복합 주기 검증 결과:") for idx, match in enumerate(results, 1): print(f" 일치 {idx}:") for key, value in match.items(): print(f"{key}: {value}") print(f" 총 발견된 정확...
-
Yolo-Pose 팔 각도 구하기 2024.11.01해당카페글 미리보기
keypoints.conf[0,10].item() print(shoulder,s_prob) print(elbow,e_prob) print(wrist,w_prob ) r = [] for idx,xy in enumerate(keypoints.xy[0]): if idx in [6,8,10]: r.append(xy) # 사잇값 degree = calc_degree(shoulder,elbow,wrist) # 원본...
-
Re: 오늘의 마지막 문제. 신경망 활용 인터페이스를 여러분들 취향에 맞게 변경하시오 ! 2024.10.10해당카페글 미리보기
리스트 보여주기 (선택된 항목은 빨간색으로 강조) def update_target_labels(predicted_label=None): for i, value in enumerate(target_dict.values()): if i == predicted_label: label_list[i].config(fg='red') # 예측 결과는 빨간색 else: label...
-
9월 29일 일요일 2024.09.29해당카페글 미리보기
his people - the acts of his kindness which it would be hopeless to attempt to recount before him. And who "could" enumerate and record all the acts of God's benevolence toward men in the works of creation, providence, and redemption...
-
The Practice of Piety: Lewis Bayly 2024.09.20해당카페글 미리보기
that highly esteemed as the “PRACTICE OF PIETY” was, Bishop Bayly had learning for a greater work than that. To enumerate the editions through which it has gone would be impossible. Scarcely any work ever had such a prodigious...
-
𓏲 ˖. 🍒Sαrαн ιѕ нereᝰ.ᐟ༯ #296♡ 2024.09.08해당카페글 미리보기
just are absolutely aware of how to get you to empty out bottles worth of water in a second lmao You know if I could enumerate for myself things I’m the most proud about when it comes to whatever I got to accomplish for my own well...
-
Re: 오늘의 마지막 문제. 이미지 다운로드 화면을 좀더 개선해서 exec 파일로 만드시오! 2024.08.31해당카페글 미리보기
이미지 개수를 저장할 변수 초기화 download_cnt = 0 # 수집한 이미지 URL을 사용하여 이미지를 다운로드 for idx, p in enumerate(params, 1): urllib.request.urlretrieve(p, "c:\\data_image_bing\\" + str(idx) + ".jpg") download_cnt += 1 # 작업...
-
numb움직임이나 느낌이 없는"잡힌, 붙잡힌" 2024.07.13해당카페글 미리보기
anomie; anomy; antinomian; antinomy; astronomer; astronomy; autonomous; autonomy; benumb; Deuteronomy; economy; enumerate; enumeration; gastronomy; heteronomy; innumerable; metronome; namaste; nemesis; nimble; nim; nomad; nomothetic...
-
0709 VOCA Challenge 2023.07.09해당카페글 미리보기
engender entrench *entrenchment empathy empirical *empiricism *empiricist *empiric *empirically enclave emit *emission *emissary enumerate *enumeration evoke *evocation *evocative exalt *exaltation extend *expendition *expense *expandable
-
선형회귀모델 과정 2024.06.05해당카페글 미리보기
2) pca_result = pca.fit_transform(scaled_data) # PCA 결과 시각화 plt.figure(figsize=(10, 7)) for i, label in enumerate(df_values['Label']): plt.scatter(pca_result[i, 0], pca_result[i, 1], label=label) plt.xlabel('Principal Component 1...