목요일[ㅎㅎ 어제 갈망하던 목요일이다.]
1. 금일 코드 공유
2. 정처기 현황
1.
https://github.com/haryul99/python
GitHub - haryul99/python
Contribute to haryul99/python development by creating an account on GitHub.
github.com
04.07 파일 확인
[{"metadata":{"trusted":false},"id":"8503097e","cell_type":"code","source":"print(X[0])","execution_count":8,"outputs":[{"name":"stdout","output_type":"stream","text":"[293. 1. 3.8 2.8 0. 0. 0. 0. 0. 0. 12. 0.\n 0. 0. 1. 0. 62. ]\n"}]}]
np.random.seed(3)
tf.random.set_seed(3)
#수술 환자 데이터 불러오기
Data_set = np.loadtxt("E:\source\TF\dataset\ThoraricSurgery.csv", delimiter=',')
X = Data_set[:,0:17]
Y = Data_set[:,17]
# 딥러닝 구조를 결정(모델을 설정하고 실행)
model = Sequential()
model.add(Dense(30, input_dim=17, activation='relu')) #입력으로 30개가 들어옴
model.add(Dense(1, activation='sigmoid')) #그래서 입력할 필요없음
# 딥러닝 실행
model.compile(loss='mean_squared_error', optimizer='adam', metrics=['accuracy'])
model.fit(X, Y, epochs=100, batch_size=10)
2.정처기
프로토 타입 제작 시 툴
OvenApp.io
Oven(오븐)은 HTML5 기반의 무료 웹/앱 프로토타이핑 툴입니다. (카카오 제공)
ovenapp.io
Axure RP - UX Prototypes, Specifications, and Diagrams in One Tool
The most powerful way to plan, prototype and handoff to developers, all without code. Download a free trial and see why UX professionals choose Axure RP.
www.axure.com
https://d2.naver.com/helloworld/1086168
시간이 너무 없다... 저녁은 최대한 가까운 곳에서 먹어야겠다ㅜ
//yesterday wished to today list
. 저녁 즐겁게 먹고 좋은 인상남기기 😒
. 일어나서 판단해보기 ✔
. 정말 좋았던 일 1가지 적어보기 (ㅎㅌㅇㅃㄱ ㅌㅇㅅ를 줬다)
. 힘차게 목요일 보내기 ✔
tomorrow wish list
. 정처기 진도 많이 나가보기
'IT To do and To was' 카테고리의 다른 글
22년 4월 9일_센트럴파크 & 본가 만두전골 (+ 정처기 공부 (0) | 2022.04.09 |
---|---|
22년 4월 8일_딥러닝(+ 흐아 금요일이다..!! (0) | 2022.04.08 |
22년 4월 6일_분류문제 (+ ㅎㅅ언니와 산책 , numget (0) | 2022.04.06 |
22년 4월 5일_단원평가 후 딥러닝 시작_ㅎㅅ언니가 사진찍어줬따ㅎㅎ (0) | 2022.04.05 |
22년 4월 4일_44이네 나는 곰이다 (0) | 2022.04.04 |