Lei YU

Results 6 comments of Lei YU

我的配置Win10, E5-1650, GTX970 4GiB显存,在Tensorflow上跑了一下,发现确实很慢。GPU显存基本上占满了,但是GPU usage只有3~4% 看上去是没有充分利用GPU

打了些log,看上去时间主要花在`start_self_play()`里了,调用MCTSPlayer.get_action()的时候 ``` acts, probs = self.mcts.get_move_probs(board, temp) ``` 这一步要花2秒左右的时间。。。

You can install ffmpeg on Ubuntu by adding a PPA, but you need to replace some packages after while. See https://launchpad.net/~mc3man/+archive/ubuntu/trusty-media for details.

Although PS4 does not play the transcoding stream from PMS, I can confirm that PS4 is able to play the content that is transcoded by PMS. I manually copied the...

如果懂一点点python和一点点html,只要能打开网页(比如说通过用户名/密码登陆),稍微解析一点html就可以把内容抓下来了。 具体可以对照着各个recipe和对应的网页内容看,很容易懂的。

大致看了下,把`keep_only_tags`修改成下面这个就好了。 ``` keep_only_tags = [ dict(name='div', attrs={'id':['bodyContent']}), ] ``` 不过这个只包含正文内容,最好还能加上标题,所以改成 `dict(name='div', attrs={'class':['content_hd', 'bodyContent']})`更好一点。。。