일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 개발
- xcode
- localserver
- build
- node
- IOS
- VirtualBox
- 맥
- jest
- Chrome
- androidstudio
- MachineLearning
- vsCode
- react
- qunit
- PYTHON
- centos
- unittest
- 네트워크
- 센토스
- 티스토리챌린지
- Android
- TensorFlow
- ReactNative
- 리눅스
- linux
- MAC
- webpack
- 오블완
- Today
- Total
목록MachineLearning (2)
로메오의 블로그
[카테고리] TENSORFLOW 독일 빵집이라는 곳에서 영업시간에 따른 매출이 아래와 같다고 가정해보겠습니다. 영업시간 매출 1 9,500 2 11,000 3 19,500 4 28,000 5 42,500 6 51,000 7 60,000 8 75,000 9 86,500 그럼 10시간 영업했을때 매출은 얼마쯤 될까요? 선형회귀 모델을 구축하겠습니다. 가설 Hypothesis H (Hypothesis): 가설 W (Weight): 기울기 b (bias): Y절편 머신러닝은 W와 b값을 계속 수정해나가면서 가장 합리적인 H 값을 찾는 과정입니다. 비용 Cost 가설이 얼마나 정확한지 판단하는 기준 비용은 직선과의 거리를 계산해서 구할수 있습니다. 비용함수 Cost Function 비용함수는 예측값에서 실제값을 ..
[카테고리] TENSORFLOW tensorflow설치하기 $ pip3 install tensorflow 설치확인 $ pip3 show tensorflow Name: tensorflow Version: 2.0.0 Summary: TensorFlow is an open source machine learning framework for everyone. ..... python idle 실행하기 응용프로그램 > Python 3.7 > IDLE.app 을 실행합니다. File > New File을 실행합니다. import tensorflow as tf hello = tf.constant("hello world!") session = tf.compat.v1.Session() print(session.run(he..