반응형

TensorFlow-Tutorials

Introduction to deep learning based on Google's TensorFlow framework. These tutorials are direct ports of Newmu's Theano Tutorials.

Topics

Dependencies

  • TensorFlow 1.0 alpha
  • Numpy
  • matplotlib



# TensorFlow-Tutorials

[![Build Status](https://travis-ci.org/nlintz/TensorFlow-Tutorials.svg?branch=master)](https://travis-ci.org/nlintz/TensorFlow-Tutorials)

[![Codacy Badge](https://api.codacy.com/project/badge/grade/2d3ed69cdbec4249ab5c2f7e4286bb8f)](https://www.codacy.com/app/hunkim/TensorFlow-Tutorials)


Introduction to deep learning based on Google's TensorFlow framework. These tutorials are direct ports of

Newmu's [Theano Tutorials](https://github.com/Newmu/Theano-Tutorials).


***Topics***

* [Simple Multiplication](00_multiply.py)

* [Linear Regression](01_linear_regression.py)

* [Logistic Regression](02_logistic_regression.py)

* [Feedforward Neural Network (Multilayer Perceptron)](03_net.py)

* [Deep Feedforward Neural Network (Multilayer Perceptron with 2 Hidden Layers O.o)](04_modern_net.py)

* [Convolutional Neural Network](05_convolutional_net.py)

* [Denoising Autoencoder](06_autoencoder.py)

* [Recurrent Neural Network (LSTM)](07_lstm.py)

* [Word2vec](08_word2vec.py)

* [TensorBoard](09_tensorboard.py)

* [Save and restore net](10_save_restore_net.py)

* [Generative Adversarial Network](11_gan.py)


***Dependencies***

* TensorFlow 1.0 alpha

* Numpy

* matplotlib



.

반응형
반응형

요즘 세상은 더 이상 혼자 살수 없는 시대다.

과거에는 누구에게 ‘의존적’이라는 말이

굴욕적인 뜻이었는데 지금은 반대다.

가장 진취적인 말이 됐다.

- 고은 시인


혼자 힘으로는 살아갈 수 없는 시대가 되었습니다.

남과 더불어 협력해서 살아가야만 하는 시대입니다.

남에게 의존하는 만큼 남이 나에게 의존할 수 있도록

서로 서로 먼저 손을 내미는 따뜻한 사회가 될 수 있기를 희망합니다.






.

반응형
반응형

그들의 분노는 

바로 자기 자신의 분노라고 그는 말했다. 

비록 그 분노에서 영원히 벗어날 수는 없지만, 

기도를 통해서 분노를 억제하는 법을 배웠다고 했다. 

그리고 그 분노를 자기 아이들에게는 물려주지 

않으려고 애써왔다고 했다.


- 버락 오바마의《내 아버지로부터의 꿈》중에서 -


* 사람은 분노 속에 살아갑니다.

스파크처럼 일어나는 작은 분노, 큰 분노...

그 크고 작은 분노를 어떻게 다스리냐가 관건입니다.

자칫 들불로 번져 산야를 태우고 검은 잿더미를

대물림하게 됩니다. 기도와 명상은 

분노를 다스리는 명약입니다.

평화로 가는 길입니다.




.


반응형

'생활의 발견 > 아침편지' 카테고리의 다른 글

마지막 노래를 언제 불렀나요?  (0) 2017.04.03
노 프라블럼(No problem)  (0) 2017.04.02
'스트레스 어벤저스'  (0) 2017.03.30
내 젊은 날을 반성한다  (0) 2017.03.29
몸으로 익히자  (0) 2017.03.28
반응형

https://www.tensorflow.org/api_docs/python/tf/compat


Module: tf.compat

Module tf.compat

Functions for Python 2 vs. 3 compatibility.

Conversion routines

In addition to the functions below, as_str converts an object to a str.

Types

The compatibility module also provides the following types:

  • bytes_or_text_types
  • complex_types
  • integral_types
  • real_types

Members

as_bytes(...): 바이트 또는 유니 코드를 bytesutf-8 인코딩을 사용하여 텍스트 로 변환합니다 .

as_str(...): 바이트 또는 유니 코드를 bytesutf-8 인코딩을 사용하여 텍스트 로 변환합니다 .

as_str_any(...)str와 같이 변환 str(value)하지만 as_strfor를 사용 합니다 bytes.

as_text(...): 주어진 인수를 유니 코드 문자열로 반환합니다.


Constant bytes_or_text_types

Constant complex_types

Constant integral_types

Constant real_types

Defined in tensorflow/python/util/compat.py.


반응형
반응형

scikit-learn: machine learning in Python 


https://github.com/scikit-learn/scikit-learn


scikit-learn

scikit-learn is a Python module for machine learning built on top of SciPy and distributed under the 3-Clause BSD license.

The project was started in 2007 by David Cournapeau as a Google Summer of Code project, and since then many volunteers have contributed. See the AUTHORS.rst file for a complete list of contributors.

It is currently maintained by a team of volunteers.

Website: http://scikit-learn.org

Installation

Dependencies

scikit-learn requires:

  • Python (>= 2.7 or >= 3.3)
  • NumPy (>= 1.6.1)
  • SciPy (>= 0.9)

For running the examples Matplotlib >= 1.1.1 is required.

scikit-learn also uses CBLAS, the C interface to the Basic Linear Algebra Subprograms library. scikit-learn comes with a reference implementation, but the system CBLAS will be detected by the build system and used if present. CBLAS exists in many implementations; see Linear algebra libraries for known issues.

User installation

If you already have a working installation of numpy and scipy, the easiest way to install scikit-learn is using pip

pip install -U scikit-learn

or conda:

conda install scikit-learn

The documentation includes more detailed installation instructions.

Development

We welcome new contributors of all experience levels. The scikit-learn community goals are to be helpful, welcoming, and effective. The Development Guide has detailed information about contributing code, documentation, tests, and more. We've included some basic information in this README.

Important links

Source code

You can check the latest sources with the command:

git clone https://github.com/scikit-learn/scikit-learn.git

Setting up a development environment

Quick tutorial on how to go about setting up your environment to contribute to scikit-learn: https://github.com/scikit-learn/scikit-learn/blob/master/CONTRIBUTING.md

Testing

After installation, you can launch the test suite from outside the source directory (you will need to have the nose package installed):

nosetests -v sklearn

Under Windows, it is recommended to use the following command (adjust the path to the python.exe program) as using the nosetests.exe program can badly interact with tests that use multiprocessing:

C:\Python34\python.exe -c "import nose; nose.main()" -v sklearn

See the web page http://scikit-learn.org/stable/developers/advanced_installation.html#testing for more information.

Random number generation can be controlled during testing by setting the SKLEARN_SEED environment variable.

Submitting a Pull Request

Before opening a Pull Request, have a look at the full Contributing page to make sure your code complies with our guidelines: http://scikit-learn.org/stable/developers/index.html

Project History

The project was started in 2007 by David Cournapeau as a Google Summer of Code project, and since then many volunteers have contributed. See the AUTHORS.rst file for a complete list of contributors.

The project is currently maintained by a team of volunteers.

Note: scikit-learn was previously referred to as scikits.learn.

Help and Support

Documentation

Communication

Citation

If you use scikit-learn in a scientific publication, we would appreciate citations: http://scikit-learn.org/stable/about.html#citing-scikit-learn





.

반응형
반응형

NLP란 무엇인가요?


http://konlpy.org/ko/v0.4.4/start/








Python package for Korean natural language processing. 

https://github.com/konlpy/konlpy



NLP (Natural Language Processing, 자연어처리)는 텍스트에서 의미있는 정보를 분석, 추출하고 이해하는 일련의 기술집합입니다.

우리 일상에도 다양한 NLP 응용사례가 있습니다. 가령:

그리고 물론, 검색엔진과 같은 정보검색 시스템 등이 있습니다. NLP의 기초에 대해 더 자세히 알기 위해서는 아래 책들을 참고하시기 바랍니다.

KoNLPy는 여러분이 한국어 텍스트를 이용하여 기초적인 NLP 작업을 수행하는데 도움을 드릴 것입니다. 영어 텍스트를 다루는 것에 관심 있으신 경우, NLTK 를 참고해주시기 바랍니다.

이제 무엇을 준비하면 되나요?

KoNLPy를 사용하기 전에 다음의 몇 가지 준비가 필요합니다.

  1. 언어에 대한 깊은 관심과 한국어에 대한 어느 정도의 이해

  2. 기본적인 파이썬 프로그래밍 방법 [1]

  3. 좋은 텍스트 에디터와 터미널 (또는 파이썬 IDE) [2]

  4. 파이썬이 설치된 컴퓨터

  5. 파이썬 패키지 매니저 pip

준비되셨나요? 이제 시작해봅시다.


반응형
반응형

회사에는 내 개인적인 꿈을 실현하는 것 이상으로

중요한 목적이 있다.

그것은 바로 직원들과 그 가족들의 생활을 지켜줌으로써

그들의 행복을 최우선시해야 한다는 것,

맨 앞에 서서 직원들의 행복을 지키는 것이야 말로

내 운명인 것이다.

- 이나모리 가즈오 (교세라 회장) 


이나모리 가즈오는 ‘전 직원의 물심양면의 행복을 추구함과 동시에

인류와 사회의 진보 및 발전에 공헌하는 것’을

교세라의 경영이념으로 채택하였습니다.



.

반응형
반응형

혼자 고통스러워한다는 느낌은 

스트레스 전환의 가장 큰 걸림돌이다. 

신체적 고통, 질병, 실망, 분노, 상실 등을 

경험하지 않고 살아가는 사람은 아무도 없다. 

구체적인 정황은 저마다 다르겠지만 그 근본적인  

경험은 인간이면 누구나 겪는 것이다. 고통이 모든 

사람의 삶에 자리한다는 사실을 이해하는 

사람들은 회복력이 더 크며 

삶에 더 만족할 줄 안다. 


- 켈리 맥고니걸의《스트레스의 힘》중에서 - 


* 우리의 삶은

스트레스의 연속입니다.

스트레스는 '만병의 근원'이라는 말도 합니다.

그러나 다루기에 따라서는 가장 강력한 에너지의

근원이 될 수도 있습니다. 우리 모두에게는 저마다

스트레스를 이겨내는 내면의 힘이 있습니다. 

그 힘을 찾으면 '스트레스 어벤저스'가 

될 수 있습니다. 누구나.




.


반응형

'생활의 발견 > 아침편지' 카테고리의 다른 글

노 프라블럼(No problem)  (0) 2017.04.02
분노를 억제하는 법  (0) 2017.03.31
내 젊은 날을 반성한다  (0) 2017.03.29
몸으로 익히자  (0) 2017.03.28
중요한 것은 사람이다  (0) 2017.03.27

+ Recent posts