/images/avatar.png

Install Slurm in Ubuntu

Install 1 sudo apt install slurm-wlm slurm-wlm-doc -y Modify config 1 2 rm /etc/slurm-llnl/slurm.conf vi /etc/slurm-llnl/slurm.conf Example of config 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 # slurm.

安装Python导致VNC黑屏解决方案

问题在于VNCServer使用Python编写,所以受到系统Python版本影响。 解决方案: 1 2 3 4 5 6 7 8 9 $ cd $HOME $ vim .bashrc 找到如下语句: export PATH="/home/user/anaconda2/bin:$PATH" 并修改为,并保存退出。 export PATH="$PATH:/home/user/anaconda2/bin" $ vncserver -kill :id $ source .bashrc $ conda config --set auto_activate_base false #取消conda自动启动base

i3.different types of machine learning

Q. What Are the Different Types of Machine Learning? Supervised learning A model makes predictions or decisions based on past or labeled data. Labeled data refers to sets of data that are given tags or labels, and thus made more meaningful. Unsupervised learning In this case, we don’t have labeled data, a model can identify patterns, anomalies, and relationships in the input data. Reinforcement learning The model learn based on the rewards received from the previous action.