분류 전체보기(137)
-
1강 - 인공지능, 머신러닝 그리고 딥러닝이란 무엇인가?
1강 - 인공지능, 머신러닝 그리고 딥러닝이란 무엇인가? -인공지능의 역사 인공지능 태동기(1943~1956) 인공지능의 꿈이 부풀어오른 초기 시기 1943 - 월터 피츠, 워런 맥컬러가 최초로 뉴런의 개념 정의(MCP 뉴런) 1950 - 튜링 테스트(인공지능이 사람 수준의 인공지능인지 판단. 아직도 의미있는 테스트) 1956 - 다트머스 AI 컨퍼런스(많은 AI에 대한 전망을 밝혔지만 이 전망은 AI 겨울에서 무너짐) 인공지능 황금기(1956~1974) 1957 - 프랑크 로젠블라트 퍼셉트론(MCP 뉴런을 최초로 구체화(구현)함. 퍼셉트론이 유명하고 상징적이라 인공신경망을 다층 퍼셉트론이라고 하기도 함. 사이킷런에도 퍼셉트론 클래스 존재. 인공지능의 가장 기본이 되는 알고리즘.) 1959 - 데이비드 ..
2021.05.27 -
Libft(4) - memccpy
Libft(4) - memccpy MEMCCPY(3) BSD Library Functions Manual MEMCCPY(3) NAME memccpy -- copy string until character found LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include void * memccpy(void *restrict dst, const void *restrict src, int c, size_t n); DESCRIPTION The memccpy() function copies bytes from string src to string dst. If the character c (as converted to an unsigned char) occurs in..
2021.05.22 -
Libft(3) - memcpy
Libft(3) - memcpy MEMCPY(3) BSD Library Functions Manual MEMCPY(3) NAME memcpy -- copy memory area LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include void * memcpy(void *restrict dst, const void *restrict src, size_t n); DESCRIPTION The memcpy() function copies n bytes from memory area src to memory area dst. If dst and src overlap, behavior is undefined. Applications in which dst and src ..
2021.05.22 -
Libft(2) - bzero
Libft(2) - bzero BZERO(3) BSD Library Functions Manual BZERO(3) NAME bzero -- write zeroes to a byte string LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include void bzero(void *s, size_t n); DESCRIPTION The bzero() function writes n zeroed bytes to the string s. If n is zero, bzero() does nothing. SEE ALSO memset(3), swab(3) HISTORY A bzero() function appeared in 4.3BSD. Its prototype exist..
2021.05.22 -
Libft(1) - memset
Libft(1) - memset MEMSET(3) BSD Library Functions Manual MEMSET(3) NAME memset -- fill a byte string with a byte value LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include void * memset(void *b, int c, size_t len); DESCRIPTION The memset() function writes len bytes of value c (converted to an unsigned char) to the string b. RETURN VALUES The memset() function returns its first argument. SEE ..
2021.05.22