2023年9月3日

python 基础

摘要: # -*- coding: utf-8 -*- """ Created on Sun Sep 3 16:30:59 2023 """ import numpy as np import pandas as pd # # list a = [2,3,1,'1',5] #list() a.append( 阅读全文

posted @ 2023-09-03 18:05 iUpoint 阅读(8) 评论(0) 推荐(0) 编辑

2023年3月29日

Fortran 笔记

摘要: 原文链接:https://blog.csdn.net/Trisyp/article/details/50607422 Fortran77和90/95编程入门 fortran教程 Frotran函数介绍 最早的高级语言大约诞生于1945年,是德国人楚译为他的Z-4计算机设计的Plan Calcul,比 阅读全文

posted @ 2023-03-29 09:39 iUpoint 阅读(147) 评论(0) 推荐(0) 编辑

2022年8月23日

C语⾔出错信息中英⽂对照表

摘要: Ambiguous operators need parentheses #不明确的运算需要用括号括起 Ambiguous symbol "xxx" #不明确的符号 Argument list syntax error #参数表语法错误 Array bounds missing #丢失数组界限符 A 阅读全文

posted @ 2022-08-23 18:01 iUpoint 阅读(39) 评论(0) 推荐(0) 编辑

2022年7月27日

python 多进程,多线程

摘要: python 多进程,多线程 import time from math import sqrt def test_func_1(val): time.sleep(1) return sqrt(val**2) %time [test_func_1(i) for i in range(10)] #多进 阅读全文

posted @ 2022-07-27 14:42 iUpoint 阅读(31) 评论(0) 推荐(0) 编辑

2022年7月6日

模型部署

摘要: 1. pytorch docker 部署 环境部署:https://github.com/pytorch/serve/blob/master/ts_scripts/install_dependencies.py demo:https://github.com/pytorch/serve/tree/m 阅读全文

posted @ 2022-07-06 11:00 iUpoint 阅读(28) 评论(0) 推荐(0) 编辑

2022年6月16日

linux服务器(centos 7.8)配置深度学习环境

摘要: 参考链接: 使用GPU云服务器搭建深度学习环境(CUDA+CUDNN) CentOS下的CUDA安装和使用指南 Linux系统CUDA10.2+CUDNN安装教程 Linux GPU加速训练环境搭建(NVIADIA、CUDA、CUDNN) anaconda 镜像源 清华:https://pypi.t 阅读全文

posted @ 2022-06-16 10:08 iUpoint 阅读(823) 评论(0) 推荐(0) 编辑

2022年6月15日

CentOS 基本命令

摘要: 查看磁盘空间 df -hl:查看磁盘剩余空间df -h: 查看每个根路径的分区大小du -sh [目录名]:返回该目录的大小du -sm [文件夹]:返回该文件夹总M数du -h [目录名]:查看指定文件夹下的所有文件大小(包含子文件夹) 根目录扩容 为linux的root目录扩容 umount: 阅读全文

posted @ 2022-06-15 11:24 iUpoint 阅读(125) 评论(0) 推荐(0) 编辑

2022年6月14日

windows10 CUDA11.4+CUDnn+torch+tensorflow环境配置

摘要: 注意看显卡版本及torch和tensorflow支持的最新显卡版本 cmd> nvcc -V #提示版本表示成功,但不意味着可以使用 cmd> nvidia-smi #gpu监控,nvidia-smi | head,经常另开shell观察GPU的运行情况 watch nvidia-smi CUDA下 阅读全文

posted @ 2022-06-14 10:05 iUpoint 阅读(1323) 评论(0) 推荐(0) 编辑

2022年4月18日

pdf翻译并转html

摘要: pdf split pdfsam AppData\Local\Temp\tmp...\ 分割后可以用 google翻译, 翻译效果更好 谷歌翻译 pdf2html pdf2htmlEX # docker run -ti --rm -v /pdf:/pdf -w /pdf pdf2htmlex/pdf 阅读全文

posted @ 2022-04-18 16:51 iUpoint 阅读(76) 评论(0) 推荐(0) 编辑

2022年2月10日

R script 入门教程

摘要: R 脚本语言入门 R语言教程 Sys.time() Sys.sleep(1) install.packages("") #安装R包 例如install.packages("ggplot2") library() #加载R包 例如library(ggplot2) help.start() #打开帮助文 阅读全文

posted @ 2022-02-10 15:59 iUpoint 阅读(443) 评论(0) 推荐(0) 编辑

导航