메모장
사용자 생성$useradd python$passwd python 스크립트 생성$ cd /opt$ vi centos_python_env_setup.sh 스크립트 내용 작성#!/bin/bash###################################################################### DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE# Version 2, December 2004# Copyright (C) 2015 Ivan Rivera # Everyone is permitted to copy and distribute verbatim or modified# copies of this license document, and changing it is..
설치가능한 jdk 리스트 확인$ yum list java*jdk-devel jdk 설치$ yum install java-1.7.0-openjdk-devel.x86_64 설치확인$ javac -version 참고 url: https://zetawiki.com/wiki/CentOS_JDK_%EC%84%A4%EC%B9%98
텐서플로우로 linear regression 구현 소스코드(설명을 달려고 편의상 //로 주석넣음 실행하려면 주석 삭제필요) import tensorflow as tf // 트레이닝 데이터x_data = [1, 2, 3] y_data = [1, 2, 3] // 텐서플로우가 지정하는 Variable로 W, b을 지정 (-1에서 1까지 랜덤한 값을 설정)W = tf.Variable(tf.random_uniform([1], -1.0, 1.0))b = tf.Variable(tf.random_uniform([1], -1.0, 1.0)) hypothesis = W * x_data + b cost = tf.reduce_mean(tf.square(hypothesis - y_data)) // GradientDescent알..