摘要: 前言 + 之前想利用实验室的服务器资源(GPU和CPU)来运行jupyter notebook,但是现在实验室使用slurm管理所有的节点,ssh只能登录管理节点,再通过管理节点来申请资源或提交任务,因此不能通过ssh来直接访问计算资源 + 不能直接在管理节点上启动jupyter,可以通过slurm 阅读全文
posted @ 2020-03-04 19:20 cookielbsc 阅读(1679) 评论(1) 推荐(0) 编辑
摘要: 前言 因为实验室节点目前不知道还能不能配合jupyter使用,又想在学习fastai的时候能够配合jupyter更加直观,因此把主意打到了以前用过的Google的colab上,毕竟能够提供GPU加速,而自己电脑吃不消.. 教程收集 官方 "欢迎使用 Colaboratory" "Colaborato 阅读全文
posted @ 2020-02-24 20:34 cookielbsc 阅读(284) 评论(0) 推荐(0) 编辑
摘要: conda建立虚拟环境 常用指令 注意 + 如果在创建虚拟环境时没有指定python版本,那么虚拟环境创建时并没有建立一个新的python环境,只是复制了base环境,使用pip list查看发现所有包和base环境是相同的,在该虚拟环境下使用pip安装新的包,相当于是在base下安装,因此两者的p 阅读全文
posted @ 2019-11-20 19:35 cookielbsc 阅读(1148) 评论(0) 推荐(0) 编辑
摘要: 2019.4.5 周五 磁盘分为基本磁盘和动态磁盘 基本磁盘转动态磁盘是很容易的 https://jingyan.baidu.com/article/59a015e3a3d504f7948865b1.html https://www.easeus.com/partition manager soft 阅读全文
posted @ 2019-04-07 12:43 cookielbsc 阅读(2799) 评论(0) 推荐(0) 编辑
摘要: 连接服务器 Windows XShell XFtp SSH 1. 通过SSH来连接实验室的服务器 使用SSH连接已经不陌生了 github和OS课设都经常使用 目前使用 192.168.7.169 2. 使用工具 XShell 和 XFtp 使用XShell连接服务器以及操作,服务器每个节点上都安装 阅读全文
posted @ 2018-10-12 20:56 cookielbsc 阅读(9817) 评论(0) 推荐(0) 编辑
摘要: tags: ACT iBreathCare urls.py view.py returnfilter sendMessage addVitualExpGroup selectPatientFromGroup getOutPatientDate getEmgPatientDate getInPatie 阅读全文
posted @ 2017-10-26 17:10 cookielbsc 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 前面随便说说 之前在 windows 上一直习惯用 cmdmarkdown 把要写的东西写下来,再通过 typora 转成 pdf;现在很多时候在用 Ubuntu,需要把写完的作业转成 pdf 交上去,听说 typora 出 linux 版了( "传送门" ),然而貌似并不能打开呀...(好吧 后来 阅读全文
posted @ 2017-10-19 18:57 cookielbsc 阅读(1944) 评论(0) 推荐(0) 编辑
摘要: 题目 Given a linked list, reverse the nodes of a linked list k at a time and return its modified list. k is a positive integer and is less than or equal 阅读全文
posted @ 2017-10-09 15:08 cookielbsc 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 题目 Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity. 翻译 合并k个有序的链表 Hints Related Topics: LinkedList, D 阅读全文
posted @ 2017-09-17 23:29 cookielbsc 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 题目 Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. 翻译 合并 阅读全文
posted @ 2017-09-17 23:28 cookielbsc 阅读(107) 评论(0) 推荐(0) 编辑