2024年7月23日

可靠性分析教材

摘要: 一、可靠性设计类相关书籍 1、Reliability Engineering: Theory and Practice,Alessandro Birolini 2、Practical Reliability Engineering,Patrick D. T. O'Connor, Andre Kley 阅读全文

posted @ 2024-07-23 21:58 iUpoint 阅读(53) 评论(0) 推荐(0) 编辑

正则表达式

摘要: https://www.jianshu.com/p/3dd137ba2875?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes https://blog.csdn.net/lovedingd/article/details/12 阅读全文

posted @ 2024-07-23 21:47 iUpoint 阅读(16) 评论(0) 推荐(0) 编辑

统计学教材

摘要: 1. AdvancedCalculus with Applications in Statistics2.A History of Probability and Statistics and Their Applications before 17503.Markov Decision Proce 阅读全文

posted @ 2024-07-23 21:34 iUpoint 阅读(27) 评论(0) 推荐(0) 编辑

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:04 iUpoint 阅读(12) 评论(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 阅读(204) 评论(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 阅读(68) 评论(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 阅读(34) 评论(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 阅读(35) 评论(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 阅读(985) 评论(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 阅读(138) 评论(0) 推荐(0) 编辑

导航