Frank Dai

Results 27 issues of Frank Dai

我用Spark写过两个机器学习算法,[Naive Bayes classifier](https://github.com/apache/incubator-spark/pull/292), [Random forest](https://github.com/apache/incubator-spark/pull/370), [Apache Spark 的 RDD](http://www.cs.berkeley.edu/~matei/papers/2012/nsdi_spark.pdf) 是一个比Map-reduce和MPI更好用的分布式框架,表达力也很强。 看样子你目前是想直接使用golang 的 channel 实现分布式机器学习算法?这样的话,跟直接用MPI差不多,太底层,写的代码会很罗嗦。 方便程度:Spark > Hadoop > MPI, 代码简洁度:Spark > Hadoop > MPI,限制程度:MapReduce > Spark > MPI,MPI是最自由的,写起来也是最麻烦的,所以任何分布式计算框架,都似乎是在抽象和性能之间进行折中。 只有用更高层的抽象工具,写机器学习算法才会更简洁。 对了,[Apache...

编译成PDF后,PDF中的中文,无论是正文还似乎代码中的中文,复制到记事本中是乱码。 这样会导致读者想要复制粘贴代码时,会出现乱码,就需要手动敲代码,或者到github repo的latex源代码里复制粘贴代码,很麻烦。

目前本书中的插图,是直接从其他书中截图或网上搜索的,一是模糊,二是有版权问题。 因此,本书需要将所有插图用开源工具重新绘制。 目前考虑的工具有 Tikz, Graphviz, gpic, gnuplot。 Tikz是一个LaTeX宏包,专门用来画图,非常强大,可以看看[这里](http://www.texample.net/tikz/)的例子,非常炫。 Graphviz适合绘制依赖关系图、简单的class继承关系图等。 gpic 适合绘制线框图,例如数据结构。gpic可参考Brian W. Kernighan的《PIC—A Graphics Language for Typeseing, User Manual》和Eric S.Raymond的《Making Pictures with GNU PIC》。缺点:无法输入中文。 Gnuplot 适合绘制数据密集型的统计图,如直方图,饼状图等。

I think token expiration is a key feature that this project is lack of, here are some good discussions on Hacker News, https://news.ycombinator.com/item?id=8283006

enhancement

The (docker image on Docker Hub)[https://hub.docker.com/r/wonderflow/logkit] hasn't been updated for over one year, this is kind of disappointed. Users can build docker image from the source code, but it would...

## Bug Report This project can not compile under go1.15.10 ### logkit 相关配置: none ### 运行环境: go1.15.10 #### logkit 版本: master #### 操作系统版本: Ubuntu 20.04.2 LTS ### 复现过程操作步骤: `make all`...

## Fixes #1149 ## Changes - [x] Fixed redis reader crash issue if redis_datatype is channel - [x] Fixed redis reader crash issue if Redis server is empty

## Bug Report Redis reader fails to start if redis_datatype is channel ### logkit 相关配置: ```json "reader":{ "mode":"redis", "redis_datatype":"channel", "redis_key":"mykey", "redis_address":"localhost:6379" } ``` ### 运行环境: macOS #### logkit 版本: v1.5.5...

If I add a new api `/newAddress` to the `Controller.java`, and this API makes use of `WalletUtils.generateFullNewWalletFile()`, then I realize that my RESTful server have to access the keystore directory,...

From this line https://github.com/enzymefinance/oyente/blob/69dc0a905d37ae27e9055ccae930e30752b398fb/oyente/oyente.py#L63 we can see that the latest supported solc version is 0.4.19, and `ast_walker.py` apparently doesn't support the AST structure generated by solc 0.8.x. Is there any...