We discuss beyond recent artificial intelligence technology. Artificial superintelligence represents much more enhanced intelligence, which is even better than those of creatures, including humans, in both performance and complexity.
Blogger is still active!
Get link
Facebook
X
Pinterest
Email
Other Apps
-
I thought Blogger is gone. However, I found today that I can write still here.
Born in UK, Christopher Hitchens, 56, was chosen as the 5th most world-wide intellectual by professional readers conducted by 2 political and diplomatic magazines last year. He is following Noam Chomsky, Umberto Eco, Richard Dawkins and Vaclav Havel. He has been staying in America since 1980s and writing columns titling 'Minority Report' in 'The Nations'. He became generally known for the author of 'Hostage to History', 'For the Sake of Argument', 'The Missionary Position' and so on. Recently, he is also acknowledged politically being a sort of 'Neocon', after continuously criticizing left-wing of Anglo-America and Islamic fundamentalism. I am reading his book 'God is not Great', dealing with lots of gods and godness all over the world since the prehistoric age. Of cource, he mainly focuses on 2 big powers, 'Christianity' and 'Islam'. As an atheist and meterialist together with Richard Dawkins( Actually, I am sure...
코파일럿과 함께 구현하는 뉴럴넷 깃허브가 제공하는 코파일럿을 사용하면 편리하게 코드를 구현할 수 있다. 사용자가 의도하는 코드를 스스로 알아서 뒷 부분의 코드를 제안한다. 코멘트에 내용을 적으면 그에 해당하는 코드를 제안하기도 한다. 이렇게 코드 작성을 도와주는 부분은 딥러닝 구현에도 적용할 수 있다. 여기서는 숫자 예측 예제를 코파일럿과 함께 구현하는 방법을 익힌다. 1. 비주얼 스튜디오 코드 환경을 이용한 실습 코파일럿을 이용한 잭스를 이용한 예제 구현은 Visual studio code에서 Copilot 확장자를 설치해서 작성한 사례이다. 코파일럿의 표준 사용 방법 중에 한가지이고 기능도 잘 되어 있어 아래에서는 이 환경에서 구현하는 방법을 설명한다. ① 잭스 패키지에서 필요한 모듈을 임포트한다. 코파일럿은 한두개의 단어만 적어도 동작하기도 한다. 따라서 아래와 같이 코멘트를 입력하고 코파일럿이 문장을 제안하는지 여부를 보기 위해 잠시 기다린다. # Importing 이렇게만 코멘트를 입력해도 아래와 같이 이후 문장을 제안하기 시작한다. 코파일럿은 사용자의 특성을 이해하고 사용자마다 다른 문장을 제안하니 여기 예제와 다른 제안을 할 수 있음을 주의할 필요가 있다. 따라서 여기서는 제안한 내용보다는 어떻게 제안을 받을 수 있는지 그 방법에 초점을 맞추어 설명을 할 것이다. 이제 아래 노란 형광색 바탕의 내용과 같이 코파일럿이 다음에 나올 코멘트 문장을 제안을 하게 된다. # Importing Libraries 위에서 Libraries를 코파일럿이 제안한 문장이다. 이때 Tab을 치게되면 이 문장의 사용을 승인하게 된다. Tab을 친 이후는 다음과 같이 변경된다. # Importing Libraries 이제 잭스에 있는 라이브러리를 임포트하는 문장의 앞부분을 작성한다. from jax import grad 앞부분의 from jax만 입...
[File Read and Write] For opening a file, we can use open and close functions similar to c programming cases. E.g., f = open( 'hello.txt', 'r') [For .. in ..] When we use for-in command, we must use : in the end of the line. E.g., for line in lines: [Operators] Python use similar operator with C [Boolean operation] In Python, we can use 'and', 'or' and 'not' directly for operation E.g., x or y [True and False] For Boolean variables, we can use True or False but not true or false [String.Split()] A string can be split to wrods in array form. my_split_words = my_phrase. split ( ) http://www.daniweb.com/software-development/python/threads/187010 [String.join()] An array can be joined into a string by the use of the join() method. >> sentence = ["there", "is", "no", "spoon"] >> string.join(sentence, " ") 'there is no spoon' [Slice for list an...
Comments
Post a Comment