由于项目中还没有更好的多点触控思路,所以需要将多点触控暂时关闭;关闭多点触控的代码只有一行:private void
image_ManipulationStarting(object sender, ManipulationStartingEventArgs
e){e.Mode = Manipul...
分类:
其他好文 时间:
2014-05-08 14:34:30
阅读次数:
251
以下内容主要基于《Latent Dirichlet
Allocation》,JMLR-2003一文,另加入了一些自己的理解,刚开始了解,有不对的还请各位指正。LDA-Latent Dirichlet
AllocationJMLR-2003摘要:本文讨论的LDA是对于离散数据集,如文本集,的一种生成式...
分类:
其他好文 时间:
2014-05-08 13:28:29
阅读次数:
909
private void button1_Click(object sender, EventArgs
e) { //OpenFileDialog dlg = new OpenFileDialog(); OpenFileDialog fileDialog1 =
new OpenFileDialog....
分类:
其他好文 时间:
2014-05-08 13:27:26
阅读次数:
229
1. What is the LDA?LDA(latent dilichlet allocation)
is a method to assign the topic (distribution) of a given document. However,
note that this model ...
分类:
其他好文 时间:
2014-05-08 13:16:49
阅读次数:
289
asp.net下载文件几种方式 protected void Button1_Click(object
sender, EventArgs e) { /*
微软为Response对象提供了一个新的方法TransmitFile来解决使用Response.BinaryWrite 下载超过400m...
分类:
Web程序 时间:
2014-05-08 11:54:24
阅读次数:
498
1.表和数据恢复1、从回收站里查询被删除的表 select
object_name,original_name,partition_name,type,ts_name,createtime,droptime from
recyclebin; 2.执行表的恢复语句 flashback table ta...
分类:
数据库 时间:
2014-05-08 11:26:33
阅读次数:
350
想使用python的logging模块记录日志,并使用RotatingFileHandler来处理日志以便于在日志文件超过指定的大小后会重新生成新的日志文件。
基本代码如下:
import logging
logger = logging.getLogger('mylogger')
logger.setLevel(logging.INFO)
fh=logging.handlers.Ro...
分类:
编程语言 时间:
2014-05-08 00:25:12
阅读次数:
457
之前都是用扩展方法来copy属性值,不过兼容性不是很好。(关于这个扩展方法可以参照这个博客),不过我们可以通过下方的代码来实现,由于是微软提供的功能,所以不需要考虑兼容性问题:public partial class WebForm2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventAr...
分类:
其他好文 时间:
2014-05-08 00:19:02
阅读次数:
326
private void button1_Click(object sender, EventArgs
e) { //OpenFileDialog dlg = new OpenFileDialog(); OpenFileDialog dlg = new
OpenFileDialog(); if...
分类:
其他好文 时间:
2014-05-07 20:28:32
阅读次数:
295
很神奇吧因为他们两个调用的方法不同一般输出数组调用的是:voidjava.io.PrintStream.println(Objectx)所以调用的是object的toString()方法然而输出字符数组时调用:voidjava.io.PrintStream.println(char[]x)
分类:
编程语言 时间:
2014-05-07 15:29:45
阅读次数:
361