카페검색 본문
카페글 본문
-
compile 편집하다 모으다 2024.01.28해당카페글 미리보기
compile (v.) "정보를 수집하고 진짜 출처에서 제공하여 여러 출처의 서면이나 인쇄물을 어떤 순서로 모아 만들다," 14세기 초에 올드프렌치어 compiler "편집하다, 모으다" (13세기)에서 유래하였으며, 라틴어 compilare 의 특수한 용도로부터 직접 파생...
-
[C언어] - 컴파일 과정 (Compile Process) 4단계 2023.12.01해당카페글 미리보기
https://reakwon.tistory.com/52 [C언어] 컴파일 과정(Compile Process) 4단계 자세한 설명 컴파일 과정 Visual Studio에서 우리는 실행할때 F5(또는 Ctrl+F5)를 눌러서 우리가 만든 소스코드를 실행시켜봤죠? 우리는 너무 쉽게 프로그램을 실행시킨다고...
-
ubuntu linux-arm-cross compile QT 개발 환경 구축 2023.05.13해당카페글 미리보기
sudo apt update && sudo apt upgrade sudo apt install qtcreator tool-option-kit setting device -setting g++, C++ compile setting gcc, C compile setting qt-version setting ### error 사항 0. QT build error : qt-everywhere-src...
-
your not so daily dose of chaos 2024.11.19해당카페글 미리보기
www.instagram.com/p/DCiWLO2Osvx/?igsh=MW9ya2wyc2R3aG42Yw== 🤭 … new job has been interesting so I thought I’d compile some things I’ve witnessed in my first month working in IT (in an all boys school, IT desk is next to student...
-
天聖經(增) - 453. 예배 정성과 기도 2024.11.16해당카페글 미리보기
world, you will naturally know what to include in your prayers. Then if you study the contents of your prayers and compile statistics of their results, you will notice that the method and content of your prayers are improving, becoming...
-
주식 데이터 AI 학습 방법 git hub 주소와 코딩 2024.11.03해당카페글 미리보기
return_sequences=False)) model.add(Dropout(0.2)) model.add(Dense(units=1)) # 예측 가격 # 모델 컴파일 및 학습 model.compile(optimizer='adam', loss='mean_squared_error') model.fit(x_train, y_train, epochs=50, batch_size=32) # 예측 예시 x...
-
참父母經 / Chambumo Gyeong - 504. 세계경전 출간 / 『世界経典』発刊 / World Scripture 2024.10.23해당카페글 미리보기
such a grand ideal. Because we have so many different sacred scriptures, we fight one another. Let us therefore compile one world scripture by identifying the moral principles of heavenly law within each scriptural work and extracting...
-
비바도에서 net 지연을 줄이기 위한 방법 2024.10.25해당카페글 미리보기
strategies (like "Explore" or "High Effort") to explore alternative placements and reduce delay. Use incremental compile: This technique allows you to make small changes without re-optimizing the entire design, keeping the optimized...
-
복음과 훈민정음(6) 훈민정음 창제의 동기 Motivation for the creation of Hunminjeongeum 2024.10.22해당카페글 미리보기
also collect all the people with exceptional filial piety from the previous dynasty and the Three Kingdoms period, compile a book, and have the Jiphyeonjeon (集賢殿) take charge of it.” Seol Sun answered, “Filial piety is the root of...
-
Re: 오늘의 마지막 문제. 여러분이 선택한 회사의 최신 주가 데이터를 lSTM 신경망에 넣고... 2024.10.16해당카페글 미리보기
add(LSTM(100, activation='relu', input_shape=(train_window, 1))) model.add(Dense(1)) # 출력층 # 5. 모델 컴파일 model.compile(optimizer='adam', loss='mse') # 6. 모델 학습 model.fit(X_train, y_train, epochs=150, batch_size=32) # 7. 예측...