摘要: 我们在Server和Client之间通信。 Server的代码如下: """ My demo of sending and reciving data. """ import socket sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM 阅读全文
posted @ 2025-02-21 18:38 南乡水 阅读(2) 评论(0) 推荐(0) 编辑
摘要: import requests from bs4 import BeautifulSoup import time import random url = 'https://book.douban.com/mine?status=collect' headers = { "User-Agent": 阅读全文
posted @ 2025-02-21 17:21 南乡水 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 我总共使用过四种方法访问远端的服务器: 在控制台中使用SSH连接; 在VSCode中使用Remote Explorer连接; 在Windows中使用MobaXterm; 在Windows中使用远程桌面连接。 越靠后的方法能获得的可视化能力越强。 阅读全文
posted @ 2025-02-18 11:21 南乡水 阅读(20) 评论(0) 推荐(0) 编辑
摘要: """ My Monte Carlo Tree Search Demo """ import argparse import math import random from copy import deepcopy from typing_extensions import Self def par 阅读全文
posted @ 2024-10-24 21:27 南乡水 阅读(13) 评论(0) 推荐(0) 编辑
摘要: """My SAC continuous demo""" import argparse import copy import os import random import gym import numpy as np import torch import torch.nn.functional 阅读全文
posted @ 2024-10-10 21:22 南乡水 阅读(29) 评论(0) 推荐(0) 编辑
摘要: # """My demo train script.""" import argparse import logging import os import random import time import numpy as np import torch from torch import nn, 阅读全文
posted @ 2024-08-14 19:12 南乡水 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 在当前文件夹下安装pybind11后,第一步,编写CPP文件 1、cpp_sources/data_processor.h #include <random> #include <vector> class DataProcessor { public: DataProcessor() = defa 阅读全文
posted @ 2024-05-07 17:18 南乡水 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 首先编写4个文件: 1、CMakeLists.txt内容: cmake_minimum_required(VERSION 3.15) project(Demo) include_directories(${PROJECT_BINARY_DIR}/headers) aux_source_directo 阅读全文
posted @ 2024-05-07 14:21 南乡水 阅读(10) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <memory> #include <thread> #include <vector> class Node { public: virtual void show() = 0; virtual bool hasFinished() { r 阅读全文
posted @ 2024-03-21 14:41 南乡水 阅读(14) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <unistd.h> int main(int argc, char *argv[]) { pid_t pid = fork(); if (pid > 0) { std::cout << "In parent process." << std 阅读全文
posted @ 2024-02-26 16:16 南乡水 阅读(29) 评论(0) 推荐(0) 编辑
点击右上角即可分享
微信分享提示