摘要: 本人之前并未开发过网站,存粹爱好学习,如有不对地方,请忽略。 代码下载链接 https://files.cnblogs.com/files/zysuper/html_host.zip 资源配置: 前端:HTML5 后台:python框架,django 信息交互:ajax异步执行框架 demo的应用: 阅读全文
posted @ 2020-10-18 18:00 InTheWild 阅读(221) 评论(0) 推荐(0)
摘要: 使用ssh做内网穿透: ssh L local_port1 : host_ip : host_port2 user_name@ host_ip p ssh_port 将本地的port1端口映射到远程主机的port2端口。 其中远程主机为内网连接,不暴露 host_ip为公网主机,将ssh_port端 阅读全文
posted @ 2020-10-18 17:26 InTheWild 阅读(260) 评论(0) 推荐(0)
摘要: pytorch 常见数据类型 tensor,variable,numpy numpy->tensor tensor->numpy x_numpy=np.arange(100).reshape(10,10) x_tensor=torch.from_numpy(x_numpy)[默认存放在cpu中] 转 阅读全文
posted @ 2020-10-18 17:12 InTheWild 阅读(128) 评论(0) 推荐(0)