글쓴이: 김정주(haje01@gmail.com)
이 문서는 텐서플로우 공식 페이지 내용을 바탕으로 만들어졌습니다.
텐서플로우(TensorFlow)는 기계 학습과 딥러닝을 위해 구글에서 만든 오픈소스 라이브러리입니다. 데이터 플로우 그래프(Data Flow Graph) 방식을 사용하였습니다.
글쓴이: 김정주(haje01@gmail.com)
이 문서는 텐서플로우 공식 페이지 내용을 바탕으로 만들어졌습니다.
텐서플로우(TensorFlow)는 기계 학습과 딥러닝을 위해 구글에서 만든 오픈소스 라이브러리입니다. 데이터 플로우 그래프(Data Flow Graph) 방식을 사용하였습니다.
| <?php | |
| trait CastsValueObjects | |
| { | |
| protected function castAttribute($key, $value) | |
| { | |
| $castToClass = $this->getValueObjectCastType($key); | |
| // no Value Object? simply pass this up to the parent | |
| if (!$castToClass) { | |
| return parent::castAttribute($key, $value); |
| #!/usr/bin/env bash | |
| ## Installation | |
| ## curl -o /usr/local/bin/serve-php.sh https://gist.githubusercontent.com/lesstif/82c107282241c7a52ad9/raw | |
| ## chmod +x /usr/local/bin/serve-php.sh | |
| SA="/etc/nginx/sites-available/" | |
| SE="/etc/nginx/sites-enabled/" | |
| test=0 |
| trait HasEnums | |
| { | |
| /** | |
| * The array of enumerators of a given group. | |
| * | |
| * @param null|string $group | |
| * @return array | |
| */ | |
| static function enums($group = null) | |
| { |
| package homo.efficio.json.jackson.custom.serialization; | |
| import com.fasterxml.jackson.core.JsonProcessingException; | |
| import com.fasterxml.jackson.databind.ObjectMapper; | |
| import com.fasterxml.jackson.databind.module.SimpleModule; | |
| import homo.efficio.json.jackson.custom.serialization.domain.CellPhone; | |
| import homo.efficio.json.jackson.custom.serialization.domain.FamilyMember; | |
| import homo.efficio.json.jackson.custom.serialization.domain.MobileVendor; | |
| import homo.efficio.json.jackson.custom.serialization.serializer.CellPhoneSerializer; | |
| import homo.efficio.json.jackson.custom.serialization.serializer.FamilyMemberSerializer; |
| <?php | |
| /* | |
| * Using a key => value pair with the yield keyword is | |
| * the cleanest method I could find to add identifiers or tags | |
| * to asynchronous concurrent requests in Guzzle, | |
| * so you can identify which response is from which request! | |
| */ | |
| $client = new GuzzleHttp\Client(['base_uri' => 'http://httpbin.org']); |