{"id":29973,"date":"2024-10-28T03:18:57","date_gmt":"2024-10-28T03:18:57","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=29973"},"modified":"2024-11-26T06:50:37","modified_gmt":"2024-11-26T06:50:37","slug":"%eb%94%a5%eb%9f%ac%eb%8b%9d-%ed%8c%8c%ec%9d%b4%ed%86%a0%ec%b9%98-%ea%b0%95%ec%a2%8c-%eb%aa%ac%ed%85%8c%ec%b9%b4%eb%a5%bc%eb%a1%9c-%ed%8a%b8%eb%a6%ac-%ea%b2%80%ec%83%89%ec%9d%84-%ec%a0%81%ec%9a%a9","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/29973\/","title":{"rendered":"\ub525\ub7ec\ub2dd \ud30c\uc774\ud1a0\uce58 \uac15\uc88c,  \ubaac\ud14c\uce74\ub97c\ub85c \ud2b8\ub9ac \uac80\uc0c9\uc744 \uc801\uc6a9\ud55c \ud2f1\ud0dd\ud1a0 \uac8c\uc784 \uad6c\ud604"},"content":{"rendered":"<p><body><\/p>\n<article>\n<p>\ubcf8 \uae00\uc5d0\uc11c\ub294 \ub525\ub7ec\ub2dd\uacfc \ud30c\uc774\ud1a0\uce58\ub97c \ud65c\uc6a9\ud558\uc5ec \ubaac\ud14c\uce74\ub97c\ub85c \ud2b8\ub9ac \uac80\uc0c9(MCTS) \uc54c\uace0\ub9ac\uc998\uc744 \uc801\uc6a9\ud55c \ud2f1\ud0dd\ud1a0 \uac8c\uc784\uc744 \uad6c\ud604\ud558\ub294 \uacfc\uc815\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. \uc6b0\ub9ac\ub294 \uae30\ubcf8\uc801\uc73c\ub85c MCTS\uac00 \uc5b4\ub5bb\uac8c \uc791\ub3d9\ud558\ub294\uc9c0, \uadf8\ub9ac\uace0 \uc774\ub97c \ud1b5\ud574 \uc5b4\ub5bb\uac8c AI\uac00 \ud2f1\ud0dd\ud1a0 \uac8c\uc784\uc744 \ud50c\ub808\uc774\ud560 \uc218 \uc788\ub294\uc9c0\ub97c \uc774\ud574\ud560 \uac83\uc785\ub2c8\ub2e4.<\/p>\n<h2>\ud2f1\ud0dd\ud1a0 \uac8c\uc784 \uac1c\uc694<\/h2>\n<p>\ud2f1\ud0dd\ud1a0(Tic-Tac-Toe)\ub294 3&#215;3 \uc815\uc0ac\uac01\ud615 \uaca9\uc790\uc5d0\uc11c \ub450 \ud50c\ub808\uc774\uc5b4\uac00 \ubc88\uac08\uc544 \uac00\uba70 X \ub610\ub294 O\ub97c \ub193\uace0, \uac00\ub85c, \uc138\ub85c \ub610\ub294 \ub300\uac01\uc120\uc73c\ub85c 3\uac1c\uc758 \uc5f0\uc18d\ub41c \ub9d0\uc744 \ub193\uc73c\uba74 \uc2b9\ub9ac\ud558\ub294 \uac8c\uc784\uc785\ub2c8\ub2e4.<\/p>\n<h2>1\ub2e8\uacc4: \ud658\uacbd \uc124\uc815<\/h2>\n<p>\uc774 \ud29c\ud1a0\ub9ac\uc5bc\uc744 \uc9c4\ud589\ud558\uae30 \uc704\ud574\uc11c\ub294 \ud544\uc694\ud55c \ud328\ud0a4\uc9c0\ub97c \uc124\uce58\ud574\uc57c \ud569\ub2c8\ub2e4. \ub2e4\uc74c\uc740 \ud544\uc694\ud55c \uc8fc\uc694 \ub77c\uc774\ube0c\ub7ec\ub9ac\uc785\ub2c8\ub2e4.<\/p>\n<pre><code>pip install torch numpy matplotlib<\/code><\/pre>\n<h2>2\ub2e8\uacc4: \uac8c\uc784 \ud658\uacbd \uad6c\ud604<\/h2>\n<p>\uba3c\uc800 \ud2f1\ud0dd\ud1a0 \uac8c\uc784 \ud658\uacbd\uc744 \uad6c\ud604\ud569\ub2c8\ub2e4. \uac8c\uc784\uc758 \uaddc\uce59\uc744 \uc815\uc758\ud558\uace0, \uc0c1\ud0dc\ub97c \ub098\ud0c0\ub0b4\ub294 \ud074\ub798\uc2a4\ub97c \ub9cc\ub4e4\uc5b4\uc57c \ud569\ub2c8\ub2e4.<\/p>\n<pre><code>\nimport numpy as np\n\nclass TicTacToe:\n    def __init__(self):\n        self.board = np.zeros((3, 3), dtype=int)  # 0: \ube48\uce78, 1: X, -1: O\n        self.current_player = 1  # 1: X\uc758 \ucc28\ub840, -1: O\uc758 \ucc28\ub840\n\n    def reset(self):\n        self.board = np.zeros((3, 3), dtype=int)\n        self.current_player = 1\n\n    def make_move(self, row, col):\n        if self.board[row, col] == 0:\n            self.board[row, col] = self.current_player\n            self.current_player *= -1\n\n    def check_winner(self):\n        for player in [1, -1]:\n            for row in range(3):\n                if np.all(self.board[row, :] == player):  # \ud589 \uccb4\ud06c\n                    return player\n            for col in range(3):\n                if np.all(self.board[:, col] == player):  # \uc5f4 \uccb4\ud06c\n                    return player\n            if np.all(np.diag(self.board) == player) or np.all(np.diag(np.fliplr(self.board)) == player):\n                return player\n        return None if np.any(self.board == 0) else 0  # \uac8c\uc784\uc774 \uc9c4\ud589 \uc911\uc778 \uacbd\uc6b0\n        \n    def display(self):\n        symbols = {1: 'X', -1: 'O', 0: ' '}\n        for row in self.board:\n            print(\"|\".join(symbols[x] for x in row))\n            print(\"-\" * 5)\n        print(\"\\n\")\n\n# \uac8c\uc784 \ud14c\uc2a4\ud2b8\ngame = TicTacToe()\ngame.make_move(0, 0)\ngame.display()\ngame.make_move(1, 1)\ngame.display()\n        <\/code><\/pre>\n<h2>3\ub2e8\uacc4: \ubaac\ud14c\uce74\ub97c\ub85c \ud2b8\ub9ac \uac80\uc0c9(MCTS) \uc54c\uace0\ub9ac\uc998<\/h2>\n<p>MCTS\ub294 \ubd88\ud655\uc2e4\ud55c \uc0c1\ud669\uc5d0\uc11c \uc758\uc0ac\uacb0\uc815 \ubb38\uc81c\ub97c \ud574\uacb0\ud558\uae30 \uc704\ud55c \ubc29\ubc95\uc785\ub2c8\ub2e4. \uae30\ubcf8\uc801\uc73c\ub85c \uc774 \uc54c\uace0\ub9ac\uc998\uc740 \ub2e4\uc74c \ub124 \uac00\uc9c0 \ub2e8\uacc4\ub85c \uad6c\uc131\ub429\ub2c8\ub2e4:<\/p>\n<ol>\n<li><strong>\uc120\ud0dd(Selection)<\/strong>: \ud604\uc7ac \ud2b8\ub9ac\uc5d0\uc11c \ub178\ub4dc\ub97c \uc120\ud0dd\ud569\ub2c8\ub2e4.<\/li>\n<li><strong>\ud655\uc7a5(Expansion)<\/strong>: \uc120\ud0dd\ub41c \ub178\ub4dc\uc5d0\uc11c \uac00\ub2a5\ud55c \ud589\ub3d9\uc744 \ud655\uc7a5\ud569\ub2c8\ub2e4.<\/li>\n<li><strong>\uc2dc\ubbac\ub808\uc774\uc158(Simulation)<\/strong>: \ud655\uc7a5\ub41c \ub178\ub4dc\uc5d0\uc11c \uac8c\uc784\uc744 \ud50c\ub808\uc774\ud558\uc5ec \uacb0\uacfc\ub97c \uc5bb\uc2b5\ub2c8\ub2e4.<\/li>\n<li><strong>\ubc31\uc5c5(Backpropagation)<\/strong>: \uacb0\uacfc\ub97c \ud1b5\ud574 \ubd80\ubaa8 \ub178\ub4dc\uc5d0 \uc815\ubcf4\ub97c \uc5c5\ub370\uc774\ud2b8\ud569\ub2c8\ub2e4.<\/li>\n<\/ol>\n<h3>MCTS \ud074\ub798\uc2a4 \uad6c\ud604<\/h3>\n<pre><code>\nimport random\nfrom collections import defaultdict\n\nclass MCTSNode:\n    def __init__(self, state, parent=None):\n        self.state = state  # \ud604\uc7ac \uac8c\uc784 \uc0c1\ud0dc\n        self.parent = parent\n        self.children = []  # \uc790\uc2dd \ub178\ub4dc\n        self.wins = 0  # \uc2b9\ub9ac \ud69f\uc218\n        self.visits = 0  # \ubc29\ubb38 \ud69f\uc218\n\n    def ucb1(self):\n        if self.visits == 0:\n            return float('inf')  # \ubc29\ubb38\ud55c \uc801 \uc5c6\ub294 \ub178\ub4dc\ub294 \uc6b0\uc120 \uc120\ud0dd\ud558\ub3c4\ub85d \ud568\n        return self.wins \/ self.visits + np.sqrt(2 * np.log(self.parent.visits) \/ self.visits)\n\nclass MCTS:\n    def __init__(self, iterations):\n        self.iterations = iterations\n\n    def search(self, game):\n        root = MCTSNode(state=game)\n\n        for _ in range(self.iterations):\n            node = self.select(root)\n            winner = self.simulate(node.state)\n            self.backpropagate(node, winner)\n\n        return max(root.children, key=lambda child: child.visits).state\n\n    def select(self, node):\n        while node.children:\n            node = max(node.children, key=lambda child: child.ucb1())\n        if node.visits &gt; 0:\n            for action in self.get_valid_moves(node.state):\n                child_state = node.state.copy()\n                child_state.make_move(action[0], action[1])\n                child_node = MCTSNode(state=child_state, parent=node)\n                node.children.append(child_node)\n        return random.choice(node.children) if node.children else node\n\n    def simulate(self, state):\n        current_player = state.current_player\n        while True:\n            winner = state.check_winner()\n            if winner is not None:\n                return winner\n            valid_moves = self.get_valid_moves(state)\n            move = random.choice(valid_moves)\n            state.make_move(move[0], move[1])\n\n    def backpropagate(self, node, winner):\n        while node is not None:\n            node.visits += 1\n            if winner == 1:  # X\uc758 \uc2b9\ub9ac\n                node.wins += 1\n            node = node.parent\n\n    def get_valid_moves(self, state):\n        return [(row, col) for row in range(3) for col in range(3) if state.board[row, col] == 0]\n\n# MCTS \uc0ac\uc6a9 \uc0ac\ub840\nmcts = MCTS(iterations=1000)\nmove = mcts.search(game)\nprint(\"AI\uc758 \uc120\ud0dd:\", move)\n        <\/code><\/pre>\n<h2>4\ub2e8\uacc4: AI\uc640 \uc0ac\uc6a9\uc790 \uac04\uc758 \uac8c\uc784 \uad6c\ud604<\/h2>\n<p>\uc774\uc81c \uc644\uc131\ub41c MCTS\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc0ac\uc6a9\uc790\uc640 AI \uac04\uc758 \uac8c\uc784\uc744 \uad6c\ud604\ud574 \ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<pre><code>\ndef play_game():\n    game = TicTacToe()\n    while True:\n        game.display()\n        if game.current_player == 1:  # \uc0ac\uc6a9\uc790 \ucc28\ub840\n            row, col = map(int, input(\"\ud589\uacfc \uc5f4 \ubc88\ud638\ub97c \uc785\ub825\ud558\uc138\uc694 (0, 1 \ub610\ub294 2): \").split())\n            game.make_move(row, col)\n        else:  # AI \ucc28\ub840\n            print(\"AI\uac00 \uc120\ud0dd\ud558\ub294 \uc911...\")\n            move = mcts.search(game)\n            game.make_move(move[0], move[1])\n            print(f\"AI\uac00 \uc120\ud0dd\ud55c \uc704\uce58: {move}\")\n\n        winner = game.check_winner()\n        if winner is not None:\n            game.display()\n            if winner == 1:\n                print(\"\ucd95\ud558\ud569\ub2c8\ub2e4! \ub2f9\uc2e0\uc774 \uc774\uacbc\uc2b5\ub2c8\ub2e4!\")\n            elif winner == -1:\n                print(\"AI\uac00 \uc774\uacbc\uc2b5\ub2c8\ub2e4!\")\n            else:\n                print(\"\ubb34\uc2b9\ubd80\uc785\ub2c8\ub2e4!\")\n            break\n\nplay_game()\n        <\/code><\/pre>\n<h2>\uacb0\ub860<\/h2>\n<p>\uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 \ub525\ub7ec\ub2dd\uacfc \ud30c\uc774\ud1a0\uce58\uc758 \uae30\ubcf8 \uac00\uc774\ub4dc\ub77c\uc778\uc744 \uc0b4\ud3b4\ubcf4\uc558\uc2b5\ub2c8\ub2e4. \ubaac\ud14c\uce74\ub97c\ub85c \ud2b8\ub9ac \uac80\uc0c9\uc744 \ud65c\uc6a9\ud558\uc5ec \uac04\ub2e8\ud55c \ud2f1\ud0dd\ud1a0 AI\ub97c \uad6c\ud604\ud558\ub294 \uacfc\uc815\uc740 \uae30\uc220\uc801\uc73c\ub85c \ub3c4\uc804\uc774 \ub420 \uc218 \uc788\uc9c0\ub9cc, \uacb0\uacfc\uc801\uc73c\ub85c\ub294 \ub9e4\uc6b0 \ud765\ubbf8\ub85c\uc6b4 \uacbd\ud5d8\uc774\uc5c8\uc2b5\ub2c8\ub2e4. \uc55e\uc73c\ub85c \ub354 \ub098\uc544\uac00 \ub2e4\uc591\ud55c \uc54c\uace0\ub9ac\uc998\uacfc \uae30\uc220\uc744 \ud65c\uc6a9\ud558\uc5ec \ubcf4\ub2e4 \uc644\ubcbd\ud55c AI\ub97c \uac1c\ubc1c\ud560 \uc218 \uc788\uae30\ub97c \uae30\ub300\ud569\ub2c8\ub2e4.<\/p>\n<\/article>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\ubcf8 \uae00\uc5d0\uc11c\ub294 \ub525\ub7ec\ub2dd\uacfc \ud30c\uc774\ud1a0\uce58\ub97c \ud65c\uc6a9\ud558\uc5ec \ubaac\ud14c\uce74\ub97c\ub85c \ud2b8\ub9ac \uac80\uc0c9(MCTS) \uc54c\uace0\ub9ac\uc998\uc744 \uc801\uc6a9\ud55c \ud2f1\ud0dd\ud1a0 \uac8c\uc784\uc744 \uad6c\ud604\ud558\ub294 \uacfc\uc815\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. \uc6b0\ub9ac\ub294 \uae30\ubcf8\uc801\uc73c\ub85c MCTS\uac00 \uc5b4\ub5bb\uac8c \uc791\ub3d9\ud558\ub294\uc9c0, \uadf8\ub9ac\uace0 \uc774\ub97c \ud1b5\ud574 \uc5b4\ub5bb\uac8c AI\uac00 \ud2f1\ud0dd\ud1a0 \uac8c\uc784\uc744 \ud50c\ub808\uc774\ud560 \uc218 \uc788\ub294\uc9c0\ub97c \uc774\ud574\ud560 \uac83\uc785\ub2c8\ub2e4. \ud2f1\ud0dd\ud1a0 \uac8c\uc784 \uac1c\uc694 \ud2f1\ud0dd\ud1a0(Tic-Tac-Toe)\ub294 3&#215;3 \uc815\uc0ac\uac01\ud615 \uaca9\uc790\uc5d0\uc11c \ub450 \ud50c\ub808\uc774\uc5b4\uac00 \ubc88\uac08\uc544 \uac00\uba70 X \ub610\ub294 O\ub97c \ub193\uace0, \uac00\ub85c, \uc138\ub85c \ub610\ub294 \ub300\uac01\uc120\uc73c\ub85c 3\uac1c\uc758 \uc5f0\uc18d\ub41c \ub9d0\uc744 \ub193\uc73c\uba74 &hellip; <a href=\"https:\/\/atmokpo.com\/w\/29973\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;\ub525\ub7ec\ub2dd \ud30c\uc774\ud1a0\uce58 \uac15\uc88c,  \ubaac\ud14c\uce74\ub97c\ub85c \ud2b8\ub9ac \uac80\uc0c9\uc744 \uc801\uc6a9\ud55c \ud2f1\ud0dd\ud1a0 \uac8c\uc784 \uad6c\ud604&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[33],"tags":[],"class_list":["post-29973","post","type-post","status-publish","format-standard","hentry","category-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\ub525\ub7ec\ub2dd \ud30c\uc774\ud1a0\uce58 \uac15\uc88c, \ubaac\ud14c\uce74\ub97c\ub85c \ud2b8\ub9ac \uac80\uc0c9\uc744 \uc801\uc6a9\ud55c \ud2f1\ud0dd\ud1a0 \uac8c\uc784 \uad6c\ud604 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/29973\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ub525\ub7ec\ub2dd \ud30c\uc774\ud1a0\uce58 \uac15\uc88c, \ubaac\ud14c\uce74\ub97c\ub85c \ud2b8\ub9ac \uac80\uc0c9\uc744 \uc801\uc6a9\ud55c \ud2f1\ud0dd\ud1a0 \uac8c\uc784 \uad6c\ud604 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"\ubcf8 \uae00\uc5d0\uc11c\ub294 \ub525\ub7ec\ub2dd\uacfc \ud30c\uc774\ud1a0\uce58\ub97c \ud65c\uc6a9\ud558\uc5ec \ubaac\ud14c\uce74\ub97c\ub85c \ud2b8\ub9ac \uac80\uc0c9(MCTS) \uc54c\uace0\ub9ac\uc998\uc744 \uc801\uc6a9\ud55c \ud2f1\ud0dd\ud1a0 \uac8c\uc784\uc744 \uad6c\ud604\ud558\ub294 \uacfc\uc815\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. \uc6b0\ub9ac\ub294 \uae30\ubcf8\uc801\uc73c\ub85c MCTS\uac00 \uc5b4\ub5bb\uac8c \uc791\ub3d9\ud558\ub294\uc9c0, \uadf8\ub9ac\uace0 \uc774\ub97c \ud1b5\ud574 \uc5b4\ub5bb\uac8c AI\uac00 \ud2f1\ud0dd\ud1a0 \uac8c\uc784\uc744 \ud50c\ub808\uc774\ud560 \uc218 \uc788\ub294\uc9c0\ub97c \uc774\ud574\ud560 \uac83\uc785\ub2c8\ub2e4. \ud2f1\ud0dd\ud1a0 \uac8c\uc784 \uac1c\uc694 \ud2f1\ud0dd\ud1a0(Tic-Tac-Toe)\ub294 3&#215;3 \uc815\uc0ac\uac01\ud615 \uaca9\uc790\uc5d0\uc11c \ub450 \ud50c\ub808\uc774\uc5b4\uac00 \ubc88\uac08\uc544 \uac00\uba70 X \ub610\ub294 O\ub97c \ub193\uace0, \uac00\ub85c, \uc138\ub85c \ub610\ub294 \ub300\uac01\uc120\uc73c\ub85c 3\uac1c\uc758 \uc5f0\uc18d\ub41c \ub9d0\uc744 \ub193\uc73c\uba74 &hellip; \ub354 \ubcf4\uae30 &quot;\ub525\ub7ec\ub2dd \ud30c\uc774\ud1a0\uce58 \uac15\uc88c, \ubaac\ud14c\uce74\ub97c\ub85c \ud2b8\ub9ac \uac80\uc0c9\uc744 \uc801\uc6a9\ud55c \ud2f1\ud0dd\ud1a0 \uac8c\uc784 \uad6c\ud604&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/29973\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-28T03:18:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T06:50:37+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"2\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/29973\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/29973\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"\ub525\ub7ec\ub2dd \ud30c\uc774\ud1a0\uce58 \uac15\uc88c, \ubaac\ud14c\uce74\ub97c\ub85c \ud2b8\ub9ac \uac80\uc0c9\uc744 \uc801\uc6a9\ud55c \ud2f1\ud0dd\ud1a0 \uac8c\uc784 \uad6c\ud604\",\"datePublished\":\"2024-10-28T03:18:57+00:00\",\"dateModified\":\"2024-11-26T06:50:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/29973\/\"},\"wordCount\":19,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"\ud30c\uc774\ud1a0\uce58 \uac15\uc88c\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/29973\/\",\"url\":\"https:\/\/atmokpo.com\/w\/29973\/\",\"name\":\"\ub525\ub7ec\ub2dd \ud30c\uc774\ud1a0\uce58 \uac15\uc88c, \ubaac\ud14c\uce74\ub97c\ub85c \ud2b8\ub9ac \uac80\uc0c9\uc744 \uc801\uc6a9\ud55c \ud2f1\ud0dd\ud1a0 \uac8c\uc784 \uad6c\ud604 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-10-28T03:18:57+00:00\",\"dateModified\":\"2024-11-26T06:50:37+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/29973\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/29973\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/29973\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ub525\ub7ec\ub2dd \ud30c\uc774\ud1a0\uce58 \uac15\uc88c, \ubaac\ud14c\uce74\ub97c\ub85c \ud2b8\ub9ac \uac80\uc0c9\uc744 \uc801\uc6a9\ud55c \ud2f1\ud0dd\ud1a0 \uac8c\uc784 \uad6c\ud604\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\ub525\ub7ec\ub2dd \ud30c\uc774\ud1a0\uce58 \uac15\uc88c, \ubaac\ud14c\uce74\ub97c\ub85c \ud2b8\ub9ac \uac80\uc0c9\uc744 \uc801\uc6a9\ud55c \ud2f1\ud0dd\ud1a0 \uac8c\uc784 \uad6c\ud604 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/atmokpo.com\/w\/29973\/","og_locale":"ko_KR","og_type":"article","og_title":"\ub525\ub7ec\ub2dd \ud30c\uc774\ud1a0\uce58 \uac15\uc88c, \ubaac\ud14c\uce74\ub97c\ub85c \ud2b8\ub9ac \uac80\uc0c9\uc744 \uc801\uc6a9\ud55c \ud2f1\ud0dd\ud1a0 \uac8c\uc784 \uad6c\ud604 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"\ubcf8 \uae00\uc5d0\uc11c\ub294 \ub525\ub7ec\ub2dd\uacfc \ud30c\uc774\ud1a0\uce58\ub97c \ud65c\uc6a9\ud558\uc5ec \ubaac\ud14c\uce74\ub97c\ub85c \ud2b8\ub9ac \uac80\uc0c9(MCTS) \uc54c\uace0\ub9ac\uc998\uc744 \uc801\uc6a9\ud55c \ud2f1\ud0dd\ud1a0 \uac8c\uc784\uc744 \uad6c\ud604\ud558\ub294 \uacfc\uc815\uc744 \uc124\uba85\ud569\ub2c8\ub2e4. \uc6b0\ub9ac\ub294 \uae30\ubcf8\uc801\uc73c\ub85c MCTS\uac00 \uc5b4\ub5bb\uac8c \uc791\ub3d9\ud558\ub294\uc9c0, \uadf8\ub9ac\uace0 \uc774\ub97c \ud1b5\ud574 \uc5b4\ub5bb\uac8c AI\uac00 \ud2f1\ud0dd\ud1a0 \uac8c\uc784\uc744 \ud50c\ub808\uc774\ud560 \uc218 \uc788\ub294\uc9c0\ub97c \uc774\ud574\ud560 \uac83\uc785\ub2c8\ub2e4. \ud2f1\ud0dd\ud1a0 \uac8c\uc784 \uac1c\uc694 \ud2f1\ud0dd\ud1a0(Tic-Tac-Toe)\ub294 3&#215;3 \uc815\uc0ac\uac01\ud615 \uaca9\uc790\uc5d0\uc11c \ub450 \ud50c\ub808\uc774\uc5b4\uac00 \ubc88\uac08\uc544 \uac00\uba70 X \ub610\ub294 O\ub97c \ub193\uace0, \uac00\ub85c, \uc138\ub85c \ub610\ub294 \ub300\uac01\uc120\uc73c\ub85c 3\uac1c\uc758 \uc5f0\uc18d\ub41c \ub9d0\uc744 \ub193\uc73c\uba74 &hellip; \ub354 \ubcf4\uae30 \"\ub525\ub7ec\ub2dd \ud30c\uc774\ud1a0\uce58 \uac15\uc88c, \ubaac\ud14c\uce74\ub97c\ub85c \ud2b8\ub9ac \uac80\uc0c9\uc744 \uc801\uc6a9\ud55c \ud2f1\ud0dd\ud1a0 \uac8c\uc784 \uad6c\ud604\"","og_url":"https:\/\/atmokpo.com\/w\/29973\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-10-28T03:18:57+00:00","article_modified_time":"2024-11-26T06:50:37+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"2\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/29973\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/29973\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"\ub525\ub7ec\ub2dd \ud30c\uc774\ud1a0\uce58 \uac15\uc88c, \ubaac\ud14c\uce74\ub97c\ub85c \ud2b8\ub9ac \uac80\uc0c9\uc744 \uc801\uc6a9\ud55c \ud2f1\ud0dd\ud1a0 \uac8c\uc784 \uad6c\ud604","datePublished":"2024-10-28T03:18:57+00:00","dateModified":"2024-11-26T06:50:37+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/29973\/"},"wordCount":19,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["\ud30c\uc774\ud1a0\uce58 \uac15\uc88c"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/29973\/","url":"https:\/\/atmokpo.com\/w\/29973\/","name":"\ub525\ub7ec\ub2dd \ud30c\uc774\ud1a0\uce58 \uac15\uc88c, \ubaac\ud14c\uce74\ub97c\ub85c \ud2b8\ub9ac \uac80\uc0c9\uc744 \uc801\uc6a9\ud55c \ud2f1\ud0dd\ud1a0 \uac8c\uc784 \uad6c\ud604 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-10-28T03:18:57+00:00","dateModified":"2024-11-26T06:50:37+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/29973\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/29973\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/29973\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"\ub525\ub7ec\ub2dd \ud30c\uc774\ud1a0\uce58 \uac15\uc88c, \ubaac\ud14c\uce74\ub97c\ub85c \ud2b8\ub9ac \uac80\uc0c9\uc744 \uc801\uc6a9\ud55c \ud2f1\ud0dd\ud1a0 \uac8c\uc784 \uad6c\ud604"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":30096,"url":"https:\/\/atmokpo.com\/w\/30096\/","url_meta":{"origin":29973,"position":0},"title":"\ub525\ub7ec\ub2dd \ud30c\uc774\ud1a0\uce58 \uac15\uc88c, \uc804\ucc98\ub9ac, \uacb0\uce21\uce58 \ud655\uc778","author":"root","date":"2024\ub144 10\uc6d4 28\uc77c","format":false,"excerpt":"\ub525\ub7ec\ub2dd \ubaa8\ub378\uc758 \uc131\ub2a5\uc740 \ub370\uc774\ud130\uc758 \ud488\uc9c8\uc5d0 \ud06c\uac8c \uc88c\uc6b0\ub429\ub2c8\ub2e4. \ub530\ub77c\uc11c \ub370\uc774\ud130 \uc804\ucc98\ub9ac\ub294 \ub525\ub7ec\ub2dd \ubaa8\ub378\uc744 \uad6c\ucd95\ud558\ub294 \ub370 \uc788\uc5b4 \uac00\uc7a5 \uc911\uc694\ud55c \uacfc\uc815 \uc911 \ud558\ub098\uc785\ub2c8\ub2e4. \ubcf8 \uac15\uc88c\uc5d0\uc11c\ub294 \ud30c\uc774\ud1a0\uce58(Pytorch)\ub97c \uc0ac\uc6a9\ud558\uc5ec \ub370\uc774\ud130 \uc804\ucc98\ub9ac\ub97c \uc218\ud589\ud558\uace0, \ub370\uc774\ud130\uc14b\uc5d0\uc11c \uacb0\uce21\uce58\ub97c \ud655\uc778\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. \ub370\uc774\ud130 \uc804\ucc98\ub9ac\ub780? \ub370\uc774\ud130 \uc804\ucc98\ub9ac(Data Preprocessing)\ub294 \uc6d0\ubcf8 \ub370\uc774\ud130\ub97c \ubd84\uc11d\ud558\uae30 \uc801\ud569\ud55c \ud615\ud0dc\ub85c \ubcc0\ud658\ud558\ub294 \uacfc\uc815\uc785\ub2c8\ub2e4. \uc774 \uacfc\uc815\uc740 \uc5ec\ub7ec \ub2e8\uacc4\ub97c\u2026","rel":"","context":"&quot;\ud30c\uc774\ud1a0\uce58 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\ud30c\uc774\ud1a0\uce58 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ed%8c%8c%ec%9d%b4%ed%86%a0%ec%b9%98-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":30092,"url":"https:\/\/atmokpo.com\/w\/30092\/","url_meta":{"origin":29973,"position":1},"title":"\ub525\ub7ec\ub2dd \ud30c\uc774\ud1a0\uce58 \uac15\uc88c, \uc790\uc5f0\uc5b4 \ucc98\ub9ac\ub97c \uc704\ud55c \uc784\ubca0\ub529","author":"root","date":"2024\ub144 10\uc6d4 28\uc77c","format":false,"excerpt":"\uc790\uc5f0\uc5b4 \ucc98\ub9ac(Natural Language Processing, NLP)\ub294 \uc0ac\uc6a9\uc790\uac00 \uc758\ub3c4\ud55c \ubc14\ub97c \uc774\ud574\ud558\uace0, \ubb38\ub9e5\uc5d0 \ub9de\ub294 \uc751\ub2f5\uc744 \uc0dd\uc131\ud558\uba70, \uc5ec\ub7ec \uc5b8\uc5b4\uc801 \uc694\uc18c\ub97c \ubd84\uc11d\ud558\ub294 \ubc29\ubc95\uc785\ub2c8\ub2e4. \uc774 \uacfc\uc815\uc5d0\uc11c \uc911\uc694\ud55c \uae30\uc220 \uc911 \ud558\ub098\uac00 \uc784\ubca0\ub529(Embedding)\uc785\ub2c8\ub2e4. \uc784\ubca0\ub529\uc740 \ub2e8\uc5b4\ub97c \ubca1\ud130 \uacf5\uac04\uc5d0 \ub9e4\ud551\ud558\uc5ec \uc758\ubbf8\uc801 \uad00\uacc4\ub97c \ub354 \uc218\uce58\uc801\uc73c\ub85c \ud45c\ud604\ud560 \uc218 \uc788\ub3c4\ub85d \ub3c4\uc640\uc90d\ub2c8\ub2e4. \uc624\ub298\uc740 \ud30c\uc774\ud1a0\uce58\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc790\uc5f0\uc5b4 \ucc98\ub9ac\ub97c \uc704\ud55c \ub2e8\uc5b4 \uc784\ubca0\ub529\uc744 \uad6c\ud604\ud574 \ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. \uc784\ubca0\ub529\uc774\ub780?\u2026","rel":"","context":"&quot;\ud30c\uc774\ud1a0\uce58 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\ud30c\uc774\ud1a0\uce58 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ed%8c%8c%ec%9d%b4%ed%86%a0%ec%b9%98-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":30000,"url":"https:\/\/atmokpo.com\/w\/30000\/","url_meta":{"origin":29973,"position":2},"title":"\ub525\ub7ec\ub2dd \ud30c\uc774\ud1a0\uce58 \uac15\uc88c, \uacf5\uac04 \ud53c\ub77c\ubbf8\ub4dc \ud480\ub9c1","author":"root","date":"2024\ub144 10\uc6d4 28\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \uc791\uc131\uc77c: [\ub0a0\uc9dc] 1. \uacf5\uac04 \ud53c\ub77c\ubbf8\ub4dc \ud480\ub9c1(SPP)\uc774\ub780? \uacf5\uac04 \ud53c\ub77c\ubbf8\ub4dc \ud480\ub9c1(SPP, Spatial Pyramid Pooling)\uc740 \uc774\ubbf8\uc9c0 \ubd84\ub958\uc640 \uac19\uc740 \ub2e4\uc591\ud55c \ube44\uc804 \ud0dc\uc2a4\ud06c\uc758 \ubaa8\ub378\uc5d0\uc11c \uc0ac\uc6a9\ub418\ub294 \uae30\ubc95\uc785\ub2c8\ub2e4. \uc77c\ubc18\uc801\uc778 \ud569\uc131\uacf1 \uc2e0\uacbd\ub9dd(CNN)\uc740 \uace0\uc815\ub41c \ud06c\uae30\uc758 \uc785\ub825\uc744 \ud544\uc694\ub85c \ud558\uc9c0\ub9cc, SPP\ub294 \ubcc0\ub3d9\ud558\ub294 \ud06c\uae30\uc758 \uc774\ubbf8\uc9c0\ub97c \uc785\ub825\uc73c\ub85c \ubc1b\uc744 \uc218 \uc788\ub294 \ud2b9\uc131\uc744 \uac00\uc9c0\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ub294 SPP\uac00 \uc785\ub825 \uc774\ubbf8\uc9c0\uc758 \ud06c\uae30\ub97c \uc5ec\ub7ec \uacb9\uc73c\ub85c \ub098\ub204\ub294\u2026","rel":"","context":"&quot;\ud30c\uc774\ud1a0\uce58 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\ud30c\uc774\ud1a0\uce58 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ed%8c%8c%ec%9d%b4%ed%86%a0%ec%b9%98-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":38798,"url":"https:\/\/atmokpo.com\/w\/38798\/","url_meta":{"origin":29973,"position":3},"title":"OpenCV \uac15\uc88c, PyTorch \ubaa8\ub378\uc744 OpenCV\ub85c \ub85c\ub4dc\ud558\uc5ec \uc2e4\ud589\ud558\uae30","author":"root","date":"2024\ub144 11\uc6d4 02\uc77c","format":false,"excerpt":"\uc800\uc790: \uc870\uad11\ud615 \uc791\uc131\uc77c: 2024\ub144 11\uc6d4 26\uc77c 1. \uc11c\ub860 OpenCV(Open Source Computer Vision Library)\ub294 \ucef4\ud4e8\ud130 \ube44\uc804 \ubc0f \uba38\uc2e0\ub7ec\ub2dd\uc744 \uc704\ud55c \ub77c\uc774\ube0c\ub7ec\ub9ac\ub85c, \ub2e4\uc591\ud55c \uc774\ubbf8\uc9c0 \ubc0f \ube44\ub514\uc624 \ucc98\ub9ac \uae30\uc220\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. PyTorch\ub294 \uba38\uc2e0\ub7ec\ub2dd \ub77c\uc774\ube0c\ub7ec\ub9ac\ub85c, \ud2b9\ud788 \ub525\ub7ec\ub2dd \ubaa8\ub378\uc758 \uac1c\ubc1c\uacfc \ud559\uc2b5\uc5d0 \ub9ce\uc774 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \ubcf8 \uac15\uc88c\uc5d0\uc11c\ub294 PyTorch\ub85c \ud559\uc2b5\ud55c \ubaa8\ub378\uc744 OpenCV\ub97c \ud1b5\ud574 \ub85c\ub4dc\ud558\uc5ec \uc2e4\uc2dc\uac04\uc73c\ub85c \uc2e4\ud589\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 2.\u2026","rel":"","context":"&quot;OpenCV&quot;\uc5d0\uc11c","block_context":{"text":"OpenCV","link":"https:\/\/atmokpo.com\/w\/category\/opencv\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":25385,"url":"https:\/\/atmokpo.com\/w\/25385\/","url_meta":{"origin":29973,"position":4},"title":"\ub525 \ub7ec\ub2dd\uc744 \uc774\uc6a9\ud55c \uc790\uc5f0\uc5b4 \ucc98\ub9ac, Word-Level \ubc88\uc5ed\uae30 \ub9cc\ub4e4\uae30 (Neural Machine Translation (seq2seq) Tutorial)","author":"root","date":"2024\ub144 10\uc6d4 26\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \uc791\uc131\uc77c: 2024\ub144 11\uc6d4 26\uc77c 1. \uc11c\ub860 \ub525 \ub7ec\ub2dd \uae30\uc220\uc758 \ubc1c\uc804\uc73c\ub85c \uc790\uc5f0\uc5b4 \ucc98\ub9ac(NLP)\ub294 \uadf8 \uc5b4\ub290 \ub54c\ubcf4\ub2e4\ub3c4 \uc8fc\ubaa9\ubc1b\uace0 \uc788\uc2b5\ub2c8\ub2e4. \ud2b9\ud788 Neural Machine Translation (NMT) \uae30\uc220\uc740 \uba38\uc2e0 \ubc88\uc5ed \ubd84\uc57c\uc5d0\uc11c \ud601\uc2e0\uc744 \uac00\uc838\uc654\uc2b5\ub2c8\ub2e4. \ubcf8 \ud29c\ud1a0\ub9ac\uc5bc\uc5d0\uc11c\ub294 \uc2dc\ud000\uc2a4 \ud22c \uc2dc\ud000\uc2a4(Seq2Seq) \ubaa8\ub378\uc744 \ud1b5\ud574 \ub2e8\uc5b4 \uc218\uc900\uc758 \ubc88\uc5ed\uae30\ub97c \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. \uc774 \ubc88\uc5ed\uae30\ub294 \uc785\ub825 \ubb38\uc7a5\uc758 \uc758\ubbf8\ub97c \uc774\ud574\ud558\uace0, \uadf8\uc5d0\u2026","rel":"","context":"&quot;\ub525\ub7ec\ub2dd \uc790\uc5f0\uc5b4\ucc98\ub9ac&quot;\uc5d0\uc11c","block_context":{"text":"\ub525\ub7ec\ub2dd \uc790\uc5f0\uc5b4\ucc98\ub9ac","link":"https:\/\/atmokpo.com\/w\/category\/%eb%94%a5%eb%9f%ac%eb%8b%9d-%ec%9e%90%ec%97%b0%ec%96%b4%ec%b2%98%eb%a6%ac\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":39284,"url":"https:\/\/atmokpo.com\/w\/39284\/","url_meta":{"origin":29973,"position":5},"title":"PyQt\uac1c\ubc1c\uac15\uc88c, MacOS Spotlight \uac19\uc740 \uae30\ub2a5 \uad6c\ud604, \ud14d\uc2a4\ud2b8\uc640 \ub9c1\ud06c \ub4f1\uc744 \ud3ec\ud568\ud55c \uc815\ubcf4 \ub808\uc774\uc5b4 \ucd94\uac00","author":"root","date":"2024\ub144 11\uc6d4 02\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \uc791\uc131\uc77c: 2024\ub144 11\uc6d4 26\uc77c 1. \uc11c\ub860 PyQt\ub294 Python \ud504\ub85c\uadf8\ub798\uba38\ub4e4\uc774 Qt \ud504\ub808\uc784\uc6cc\ud06c\ub97c \ud65c\uc6a9\ud558\uc5ec \uac15\ub825\ud558\uace0 \uc9c1\uad00\uc801\uc778 GUI(Graphical User Interface) \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4e4 \uc218 \uc788\ub3c4\ub85d \uc9c0\uc6d0\ud558\ub294 \ub77c\uc774\ube0c\ub7ec\ub9ac\uc785\ub2c8\ub2e4. \ubcf8 \uac15\uc88c\uc5d0\uc11c\ub294 MacOS\uc758 Spotlight\uc640 \uc720\uc0ac\ud55c \uae30\ub2a5\uc744 \uad6c\ud604\ud574\ubcfc \uac83\uc785\ub2c8\ub2e4. Spotlight\ub294 \uc0ac\uc6a9\uc790\uac00 \ud544\uc694\ub85c \ud558\ub294 \uc815\ubcf4\ub97c \ube60\ub974\uac8c \ucc3e\uc744 \uc218 \uc788\ub3c4\ub85d \ub3d5\ub294 \uac15\ub825\ud55c \ub3c4\uad6c\uc785\ub2c8\ub2e4. \uc6b0\ub9ac\ub294 \uc774\uc640 \uc720\uc0ac\ud55c \uac80\uc0c9 \uae30\ub2a5\uc744\u2026","rel":"","context":"&quot;PyQt&quot;\uc5d0\uc11c","block_context":{"text":"PyQt","link":"https:\/\/atmokpo.com\/w\/category\/pyqt\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/29973","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=29973"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/29973\/revisions"}],"predecessor-version":[{"id":29974,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/29973\/revisions\/29974"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=29973"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=29973"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=29973"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}