본문 바로가기

IT To do and To was

22년 4월 7일_금일 수업 및 코드 공유, 정처기 진도..가 안나간다.ㅜ (+프로토 타입 제작 툴

728x90
반응형

목요일[ㅎㅎ 어제 갈망하던 목요일이다.]

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.정처기

프로토 타입 제작 시 툴

https://ovenapp.io/

 

OvenApp.io

Oven(오븐)은 HTML5 기반의 무료 웹/앱 프로토타이핑 툴입니다. (카카오 제공)

ovenapp.io

https://www.axure.com/

 

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

. 정처기 진도 많이 나가보기

728x90
반응형