摘要: (0)编辑 "/home/wangfang/.bashrc"文件 (1)修改project名字,运行bash "/home/wangfang/compile.sh",即编译哪个包 (2)编译完成后,激活虚拟环境,cd到相应的生成的包,pip install -e .,即可安装编译的包 阅读全文
posted @ 2024-05-23 16:48 王姑娘呀~ 阅读(1) 评论(0) 推荐(0) 编辑
摘要: (1)ComplexHeatmap死活安装不上,下载了最新的R(R 4.3.2),然后用这一句就代码就装上了:devtools::install_github("jokergoo/ComplexHeatmap") 阅读全文
posted @ 2023-12-21 17:18 王姑娘呀~ 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 真是神了奇了,还能被审稿人问到Lasso系数的置信区间的信息,还好有现成的工具可以计算 # load library library(selectiveInference) library(xlsx)library(glmnet) # load datasetwd("E:\\UAI_Program\ 阅读全文
posted @ 2023-12-14 18:26 王姑娘呀~ 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 1 修改owner和group所属者: sudo chown -R wangfang:wangfang * 2 修改文件夹下,某一层级文件夹的名字: (1)cd 目标文件夹绝对路径,(2)rename 's/原来的文件夹名字/希望变成的名字/' */* 3 统计一个目录下,文件夹个数:ls -A | 阅读全文
posted @ 2023-05-23 15:37 王姑娘呀~ 阅读(7) 评论(0) 推荐(0) 编辑
摘要: (1)10.9.54.154面板输入:conda create --name TransUnet python=3.7 (2)安装相应包,选择y (3)查看已有的虚拟环境:conda info --envs (4)pycharm加载虚拟环境:file, settings, python interp 阅读全文
posted @ 2023-05-18 11:18 王姑娘呀~ 阅读(100) 评论(0) 推荐(0) 编辑
摘要: # librarylibrary(ggplot2);library(reshape2);library(ggsci) # Intersection points of DCA curves for multiple modelsDCAPoints <- function(Data,ModelName 阅读全文
posted @ 2023-04-14 17:26 王姑娘呀~ 阅读(354) 评论(0) 推荐(0) 编辑
摘要: #### Delong Statistics calculation 2023-04-14 ## Variance calculation function VarSe <- function(PosProb,NegProb, Auc){ XiA <- PosProb; YiB <- NegProb 阅读全文
posted @ 2023-04-14 17:17 王姑娘呀~ 阅读(399) 评论(0) 推荐(1) 编辑
摘要: 1,数据预处理 (1)Dicom 2 Nii (2)MR图像做N4偏置场矫正 (3)数据分组,确定训练集和验证集的图像和ROI的输入路径txt 2,训练阶段 (1)TrainConfig确定,Spacing注意一下,尽量和原始尺寸一致 (2)保存的模型要转成neuro模型,代码位置"/data1/w 阅读全文
posted @ 2023-02-23 09:45 王姑娘呀~ 阅读(64) 评论(0) 推荐(0) 编辑
摘要: (1)登录,进入服务器 (2)连接网:/usr/bin/google-chrome-stable (3)创建虚拟环境:conda create -n Seg_pancreas ## 没有-n会报错【删除虚拟环境:conda remove --XXX test_env --all】,激活 conda 阅读全文
posted @ 2022-04-28 15:30 王姑娘呀~ 阅读(184) 评论(1) 推荐(0) 编辑
摘要: 安装好anaconda后,安装pytorch: (1)使用pip install** ,代替conda install***更方便 (2)需要用到GPU资源的话,要加cuda的内容。linux查看本机cudu版本的命令为:cat /usr/local/cuda/version.txt (3)知道了c 阅读全文
posted @ 2021-10-14 17:40 王姑娘呀~ 阅读(2791) 评论(0) 推荐(0) 编辑