网站首页 站内搜索

搜索结果

查询Tags标签: NR,共有 46条记录
  • 编写脚本disk.sh,显示当前硬盘分区中空间利用率最大的值 Linux0304

    df | grep "^/dev/sd" | tr -s " " | cut -d " " -f 5 | sort -nr | head -1 df | grep ^/dev/sda | grep -Eo [0-9]+% | sort -nr | head -n1

    2021/10/28 7:10:32 人评论 次浏览
  • 【优化求解】基于磷虾群算法求解最优目标matlab源码

    1 简介 磷虾群算法(Krill Herd Algorithm,KHA)是 Gandomi 等于2012年提出的一种新型优化算法 。具体原理如下:2 部分代码 % Krill Herd Algorithm V 1.1% Main paper: % Gandomi A.H., Alavi A.H., Krill Herd: A New Bio-Inspired Optimization Algorithm. % Communic…

    2021/10/24 22:14:47 人评论 次浏览
  • 【优化求解】基于磷虾群算法求解最优目标matlab源码

    1 简介 磷虾群算法(Krill Herd Algorithm,KHA)是 Gandomi 等于2012年提出的一种新型优化算法 。具体原理如下:2 部分代码 % Krill Herd Algorithm V 1.1% Main paper: % Gandomi A.H., Alavi A.H., Krill Herd: A New Bio-Inspired Optimization Algorithm. % Communic…

    2021/10/24 22:14:47 人评论 次浏览
  • [源码解析]PyTorch如何实现前向传播(2) --- 基础类(下)

    [源码解析]PyTorch如何实现前向传播(2) --- 基础类(下) 目录[源码解析]PyTorch如何实现前向传播(2) --- 基础类(下)0x00 摘要0x01 前文回顾0x02 TensorImpl2.1 转嫁2.2 定义0x03 自动求导相关类3.1 AutogradMeta3.2 DifferentiableViewMeta3.3 AutogradContext3.4 Auto Fu…

    2021/10/20 9:10:11 人评论 次浏览
  • [源码解析]PyTorch如何实现前向传播(2) --- 基础类(下)

    [源码解析]PyTorch如何实现前向传播(2) --- 基础类(下) 目录[源码解析]PyTorch如何实现前向传播(2) --- 基础类(下)0x00 摘要0x01 前文回顾0x02 TensorImpl2.1 转嫁2.2 定义0x03 自动求导相关类3.1 AutogradMeta3.2 DifferentiableViewMeta3.3 AutogradContext3.4 Auto Fu…

    2021/10/20 9:10:11 人评论 次浏览
  • 2021-10-03

    #include <stdio.h> #include <stdlib.h> #include <signal.h> #include <sys/time.h> #include <time.h> #include <unistd.h> #include <termios.h> #include <stdbool.h> #define ROW 29 // 游戏区域的行数 #define C…

    2021/10/4 6:14:41 人评论 次浏览
  • 2021-10-03

    #include <stdio.h> #include <stdlib.h> #include <signal.h> #include <sys/time.h> #include <time.h> #include <unistd.h> #include <termios.h> #include <stdbool.h> #define ROW 29 // 游戏区域的行数 #define C…

    2021/10/4 6:14:41 人评论 次浏览
  • linux-2.6.38 pid对象管理方式学习笔记

    进程ID对于linux内核的进程管理至关重要,进程ID包括PID、PGID、SID和TGID等,每个进程的task_struct除了维护有全局的level 0级别的pid、tgid以及保存在信号处理结构中的会话ID和进程组ID(task_struct->signal->__session + task_struct->signal->__pgrp)外…

    2021/9/22 7:09:57 人评论 次浏览
  • linux-2.6.38 pid对象管理方式学习笔记

    进程ID对于linux内核的进程管理至关重要,进程ID包括PID、PGID、SID和TGID等,每个进程的task_struct除了维护有全局的level 0级别的pid、tgid以及保存在信号处理结构中的会话ID和进程组ID(task_struct->signal->__session + task_struct->signal->__pgrp)外…

    2021/9/22 7:09:57 人评论 次浏览
  • Linux 第三次练习(文本处理工具练习)

    1、找出ifconfig“网卡名”命令结果中本机的IPv4地址ifconfig| egrep -A1 ^eth0 | tail -n+2 | tr -s " " | cut -d" " -f 32、查出分区空间使用率的最大百分比值df | tail -n+2 | tr -s " " % | cut -d"%" -f5 | sort -nr | hea…

    2021/9/20 7:08:44 人评论 次浏览
  • Linux 第三次练习(文本处理工具练习)

    1、找出ifconfig“网卡名”命令结果中本机的IPv4地址ifconfig| egrep -A1 ^eth0 | tail -n+2 | tr -s " " | cut -d" " -f 32、查出分区空间使用率的最大百分比值df | tail -n+2 | tr -s " " % | cut -d"%" -f5 | sort -nr | hea…

    2021/9/20 7:08:44 人评论 次浏览
  • Linux-shell-AWK

    awk处理过程: 依次对每一行进行处理的结果 awk [-F|-f|-v] ‘BEGIN{} //{command1; command2} END{}’ file[-F|-f|-v] :-F指定分隔符,-f调用脚本,-v定义变量 var=valueBEGIN 初始化代码块,在对每一行进行处理之前,初始化代码,主要是引用全局变量,设置FS分隔…

    2021/9/10 7:03:51 人评论 次浏览
  • Linux-shell-AWK

    awk处理过程: 依次对每一行进行处理的结果 awk [-F|-f|-v] ‘BEGIN{} //{command1; command2} END{}’ file[-F|-f|-v] :-F指定分隔符,-f调用脚本,-v定义变量 var=valueBEGIN 初始化代码块,在对每一行进行处理之前,初始化代码,主要是引用全局变量,设置FS分隔…

    2021/9/10 7:03:51 人评论 次浏览
  • 【图像检测】基于Combined Separability Filter实现鼻孔和瞳孔检测matlab源码

    ​ 一、Combined Separability Filter​ ​ ​ ​ ​ ​二、部分代码clear;X = imread(testimages/sample1.png); % sample1.png is a gray-scale CG generated face image[H, W] = size(X); S1 = cat(3,X,X,X); % used for displaying final result (Geometric mean) …

    2021/9/6 14:08:48 人评论 次浏览
  • 【图像检测】基于Combined Separability Filter实现鼻孔和瞳孔检测matlab源码

    ​ 一、Combined Separability Filter​ ​ ​ ​ ​ ​二、部分代码clear;X = imread(testimages/sample1.png); % sample1.png is a gray-scale CG generated face image[H, W] = size(X); S1 = cat(3,X,X,X); % used for displaying final result (Geometric mean) …

    2021/9/6 14:08:48 人评论 次浏览
扫一扫关注最新编程教程