Yue's Blog

去做,去学,去感受,唯独不去想。

Data structure transformation

Data Structure Transformation When I read a really terrible repository, it uses tensor and sparse matrix simultaneously for the same initial dataset. I’m so confused… and after I transform both of...

python argparse

你学废了吗

argparse模块 argparse方便修改参数。 以下都是抄的知乎原文,写得非常清晰! 传入一个参数 import argparse parser = argparse.ArgumentParser(description='命令行中传入一个数字') #type是要传入的参数的数据类型 help是该参数的提示信息 parser.add_argument('integers',...

MCMC

纯手工搬运

MCMC(一)蒙特卡罗方法(随机模拟) 如何用蒙特卡罗方法来随机模拟求解一些复杂的连续积分或者离散求和。 例子:正方形、内切圆中撒点 rejection sampling https://en.wikipedia.org/wiki/Rejection_sampling#Theory 使用接受-拒绝采样,我们可以解决一些概率分布不是常见的分布的时候,得到其采样集并用蒙特卡罗方法求和的...

Error in sourceCpp('xx.cpp')

我差点因为这个bug换题

debug的心路历程 太长不看版: 删去.cpp文件中的#include <Rcpp> 还是看看我的碎碎念吧: 复现论文,论文代码有是有(用rcpp写的),但在sourceCpp这一步就卡了,开始以为是安装Rtools或者rcpp的时候环境或者路径没设置好(我对环境/路径一窍不通),把Rtools和rcpp都重装了几次,还是同一个bug;以为是源代码有问题,问了师兄才知道...

Git指令整理

不适合阅读的整理的一些个人常用的 Git 指令

随便整理的一些自用的Git指令 GitHub创建仓库提示代码 echo "# 项目名" >> README.md git init git add README.md git commit -m "first commit" git remote add origin git@github.com:qiubaiying/项目名.git git push -u orig...