전체 페이지뷰

2021년 8월 20일 금요일

pip has problems with inconsistent name

https://stackoverflow.com/questions/67074684/pip-has-problems-with-metadata 

https://github.com/pypa/pip/issues/9186

https://github.com/pypa/pip/issues/9203


this is solution : 

python -m pip install --upgrade --no-cache-dir --use-deprecated=legacy-resolver <package>

2020년 1월 4일 토요일

install docker container

if you use the os centos and don't think about inner process 
just write the follow the line
$ su - root
$ curl -fsSL https://get.docker.com/ | sudo sh
if you encounter this message "cannot connect to the docker daemon at //var/run/docker.sock. 
is the docker daemon running?"  you didn't start the docker daemon.
$ sudo systemctl start docker
$ sudo systemctl enable docker

otherwise, you read the website 
https://docs.docker.com/install/linux/docker-ce/centos/
followed added lines are parts of website
  1. $ sudo yum install /path/to/package.rpm
    
    Docker is installed but not started. The docker group is created, but no users are added to the group.
  2. Start Docker.
    $ sudo systemctl start docker
    
  3. Verify that Docker Engine - Community is installed correctly by running the hello-world image.
    $ sudo docker run hello-world
https://docs.docker.com/docker-for-windows/
https://docs.docker.com/docker-for-mac/

2019년 1월 26일 토요일

How come I should learn the machine learning?

If I run the business, I have a lot of technologies. And there are many open technologies all around the world. But I should decide the direction which is the blue ocean.  I am used to developing the website with a search engine. And I had graduated electronic engineering. I think I like the display instrument and electronic communication. I had also tried to go electronic companies with R&D. It was a hard time to get a job.

2018년 12월 8일 토요일

NLG week3

NLG enables machines to convert structured data into human text or speech.
It's objective is machine creation of natural language so that they can do something useful. Challenge is the understanding and representing the meaning of the word. NLG system input can be defined as a four-tuple such as knowledge source, communicative goal, user model, discourse history.
Let see the NLG pipeline as the simple view. First, the purpose of communication motivation. Second, What do we want to say? Content or message. Third, How are we going to say it? Finally, Produce communication formulating the output.
The goal, knowledge of domain and grammar used to generate the document planning.
Why is NLG difficult? Mapping, choice, planning problems.
NLG application contains Machine translation, authoring, text summarization, Question answering in the knowledge base.
To deploy the nlg, you have to think what the objective is? And what is the data to process? What is the output? Will the benefit offer a return on investment?
The computer must behave intelligently that act like humans to achieve human-level performance in all cognitive tasks. It includes NLP, knowledge representation, automated reasoning, machine learning.

Alan Turing and the Imitation Game
Turing Test - Still valid?
Measures of intelligence
The problem with the Turing Test

NLG article:  a detailed survey of the field

Marco planning - what do you want to say?
 : Content determination Discourse planning
Micro planning  - how will you say it?
 : Lexicalization, Aggregation, referring expressions 
Realization - what will you actually say?

NLG Application
- Summarization
- Content Creation
- Conversational Interfaces(Chabots)

NLG has two approaches. For example GOFAI techniques such as rules and templates, and the second using a type of Neural Network called a Recurrent Neural Network.

Yufeng interviews Google Research engineer Justin Zhao (Links to an external site.)Links to an external site. to talk NLG and their use of recurrent neural networks
 Templates vs. NLG (where NLG means machine learning) by Ehud Reiter

 this article by Andrej Karpathy (Links to an external site.)Links to an external site.: simple RNN
 excellent article on Github by Christopher Olah (Links to an external site.)Links to an external site. of Google Brain of the issues of RNNs


 (Links to an external site.) (Links to an external site.) (Links to an external site.) (Links to an external site.)Links to an external site.
 (Links to an external site.)
Links to an external site.