전체 글

싱싱한 자연어를 탐구합니다.
#include int main(void) { int i; int eok, cheonman, baekman, sipman, man, cheon, baek, sip, il; printf("정수 십억 미만의 하나의 수를 입력 : "); scanf("%d", &i); eok=i/100000000; eok=eok%10; cheonman=i/10000000; cheonman=cheonman%10; baekman=i/1000000; baekman=baekman%10; sipman=i/100000; sipman=sipman%10; man=i/10000; man=man%10; cheon=i/1000; cheon=cheon%10; baek=i/100; baek=baek%10; sip=i/10; sip=sip%10; il..
· NLP
Enriching Word Vectors with Subword Information RISING FASTBALL - [자연어처리][paper review] FastText: Enriching Word Vectors with Subword Information HONG YP's Data Science BLOG - [논문 스터디] FastText: Enriching Word Vectors with Subword Information FASTTEXT.ZIP: COMPRESSING TEXT CLASSIFICATION MODELS Fast Linear Model for Knowledge Graph Embeddings Linear models (Joachims, 1998) are powerful and effic..
엔지니어의 정직과 신뢰 엔지니어의 정직이라는 덕목 연구 윤리의 문제들 - 연구에서의 부정직 엔지니어의 이해 충돌 엔지니어의 비밀 유지 의무와 한계 엔지니어의 사회적 책임을 실천하기 위한 고발 엔지니어의 정직이라는 덕목 어느 사회에서나 정직에 관한 윤리강령이 있다. 실제로는 잘 지켜지지 않는다. 가장 중요한 것은 신뢰인데, 신뢰가 무너진 사회에서는 혼란과 갈등을 넘어 충돌과 전쟁이 발생한다. 부정직의 형태 거짓말 (적극적) : 부정직의 대표적인 형태 경우에 따라서는 엄청난 피해를 입힌다. 사소한 거짓말은 큰 해가 발생하지 않지만, 사회에 만연하게 되면 사회적 유대감이 줄어들고 신뢰도가 하락한다. 계획적인 사기 (적극적) 의도가 강하게 개입한 행동이다. 상대방에게 피해를 입히는 극단적인 이기심의 형태이다. ..
Process related system calls 1. process A program loaded in the memory. process = body + process descriptor body = code + data + stack ps -ef 명령어는 현재 메모리에 로드된 모든 프로세스를 보여준다. ps -f 명령어는 현재 터미널에서 실행 중인 프로세스를 나타낸다. 시스템은 round-robin 방식으로 각 프로세스를 하나씩 실행한다. 스케줄러는 실행할 다음 프로세스를 선택하고 CPU는 이를 짧은 시간(예: 프로세스당 10ms, time quantum이라고 부름) 동안 실행하고 스케줄러는 다음 실행할 프로세스를 선택한다. 2. System calls to manage processes fork..
Command line argument 1. main() with command line arguments. ex1.c: int main(int *x, char *y[]){ ............. } The system will pass x: command line arguments의 개수 (아래 예제에서 3개가 아니라 4개임에 유의) y: command line argument For example, $ ./ex1 x1 x2 x3 will pass 4 command line arguments: ./ex1, x1, x2, x3. Therefore, the system will pass x
Reading a non-text file (various file formats : http://en.wikipedia.org/wiki/List_of_file_formats) 1. file type regular file (type 1) 데이터를 포함하고 있는 파일 text file ASCII 코드나 유니코드(Unicode)로 인코딩된 문자(character)들을 포함하고 있는 파일 non-text file (binary file) non-characters를 포함 directory file (type 2) 그 directory의 각 파일에 대한 정보가 들어 있는 파일 link file (type 7) 다른 파일을 가르키는 파일 device file (type 3, 4) 키보드, 프린터, 마우스 등 다..
oneonlee
One Only