请问MSRA-MM version 1.0 dataset这个数据集成在哪里下载啊?谢谢了。

MSRA-MM - MSR Asia Internet Multimedia Dataset 1.0 & 2.0
This dataset named Microsoft Research Asia Multimedia (MSRA-MM), which aims to encourage research in multimedia information retrieval and related areas. The images and videos in the dataset are collected from Internet search engines and the performance of state-of-the-art industrial techniques can be evaluated accordingly. The dataset currently have two versions (1.0 and 2.0)
MSRA-MM 1.0& (Release Date: March 16 2009)
MSRA-MM 1.0 consists of two sub-datasets, i.e., an image dataset and a video dataset that are collected from the image and video search engines. For image dataset, we have selected 68 representative queries based on the query log of&search engies and then collect about 1000 images for each query. There are 65443 images in all. For video dataset, we have selected 165 representative queries from query log and collect 10277 videos accordingly. Features and annotations are provided. More details please read the .
MSRA-MM 2.0 (Release Date: July 10 2009)
The image part contains about 1 million images from 1165 queries and the video part contains 23 thousands of videos. The associated web pages are also downloaded and surrounding texts are extracted. More details please read the .
Related Conference
ICDM workshop on Internet Multimedia Mining 2009, to be held on December 6 2009, Miami, Florida, USA. More details please visit the .
Download the Dataset
PublicationsMeng Wang, Linjun Yang, and
Xian-Sheng Hua, , no. MSR-TR- March 2009.WCF返回数据集,客户应用接收总出错,是配置有问题吗?-asp.net-电脑编程网WCF返回数据集,客户应用接收总出错,是配置有问题吗?作者:ice_frank 和相关&&请问,如果WCF service返回dataset数据集,配置上面是否要有特殊的配置?我的client应用,如果接受从WCF返回字符串是没问题的,但如果接收dataset就会报错: 接收对 DataAnalyzeService.s 的& HTTP 响应时发生错误。这可能是由于服务终结点绑定未使用 HTTP 协议造成的。这还可能是由于中止了 HTTP 请求上下文(可能由于服务关闭)所致。有关详细信息,请参阅日志.......................................... ============================= 这个返回数据集的方法可以肯定是可以返回数据集的。 现在不知道是个问题,请帮忙看看...------回答---------------其他回答(20分)---------可能dataset的schema变了 不要传dataset,把数据分离出来单独传
------其他回答(10分)---------如果使用WCF,还是使用自定义实体类及泛型集合吧,DataSet太大,另外好像有Schema的问题(听别人说的,我很久没用DataSet了)。------其他回答(10分)---------个人感觉,强类型的东西都很麻烦。 不要传DataSet,你的问题很有可能是Schema变化造成的------其他回答(10分)---------1 你的客户端使用SUtil.exe生成的代理?换成Channel试试。 2 传一个少量数据的DATASET试试。 3 用Stream传送Dataset试试------其他回答(25分)---------你的Serivce中是不是还包含有其他方法,它们返回的是什么类型 service reference应该是基于ClientBase的代理,建议使用Channel调用Service。 我们曾经碰见过类似问题后来发现是客户端代理的问题,改用Channel就OK了。 ------其他回答(25分)---------可能dataset的schema变了
不要传dataset,把数据分离出来单独传
------其他回答(100分)---------刚才在VS2008下做了个测试, Server端代码如下:
using S
using System.Collections.G
using System.T
using System.ServiceM
using System.D
namespace DataSetInWCFService
{
class Program
static void Main(string[] args)
System.Console.WriteLine(&Press &ENTER& to start service.&);
System.Console.ReadLine();
StartService();
Console.WriteLine(&Serivce started.&);
System.Console.WriteLine(&Press &ENTER& to terminate service.&);
System.Console.ReadLine();
StopService();
Console.WriteLine(&Serivce stopped.&);
static ServiceHost BNIIIBusinessDuplexServiceHost =
static void StartService()
BNIIIBusinessDuplexServiceHost = new ServiceHost(typeof(DataSetInWCFService.ServiceLib));
BNIIIBusinessDuplexServiceHost.Open();
static void StopService()
if (BNIIIBusinessDuplexServiceHost.State != CommunicationState.Closed)
BNIIIBusinessDuplexServiceHost.Close();
public class ServiceLib : DataSetInWCFService.IServiceLib
public DataSet GetDataSet()
DataSet ds = new DataSet();
DataTable dt = new DataTable();
DataColumn dc = new DataColumn(&TestCol&, typeof(string));
dt.Columns.Add(dc);
DataRow dr = dt.NewRow();
dr[&TestCol&] = &SomeMessages&;
dt.Rows.Add(dr);
ds.Tables.Add(dt);
public string GetString()
return &SomeMessages&;
[ServiceContract(Namespace = &http://DataSetInWCF/TestService&)]
public interface IServiceLib
[OperationContract()]
System.Data.DataSet GetDataSet();
[OperationContract()]
string GetString();
配置如下 XML code
&?xml version=&1.0& encoding=&utf-8& ?&
&configuration&
&system.serviceModel&
&behaviors&
&serviceBehaviors&
&behavior name=&NewBehavior&&
&serviceMetadata httpGetEnabled=&true& /&
&serviceDebug includeExceptionDetailInFaults=&true& /&
&/behavior&
&/serviceBehaviors&
&/behaviors&
&services&
&service behaviorConfiguration=&NewBehavior& name=&DataSetInWCFService.ServiceLib&&
&endpoint address=&& binding=&basicHttpBinding& bindingConfiguration=&&
name=&DataSetInWCFBHttp& contract=&DataSetInWCFService.IServiceLib& /&
&baseAddresses&
&add baseAddress=&http://localhost:3001/DataSetInWCF/TestService& /&
&/baseAddresses&
&/service&
&/services&
&bindings&
&basicHttpBinding&
&binding name=&NewBinding0& /&
&/basicHttpBinding&
&/bindings&
&/system.serviceModel&
&/configuration&
客户端代码如下 C# code
using S
using System.Collections.G
using System.L
using System.T
using System.D
namespace DataSetInWCFClient
{
class Program
static void Main(string[] args)
System.Console.WriteLine(&Press &ENTER& to start service.&);
System.Console.ReadLine();
using (ServiceReference1.ServiceLibClient client = new DataSetInWCFClient.ServiceReference1.ServiceLibClient(&DataSetInWCFBHttp&))
DataSet ds= client.GetDataSet();
Console.WriteLine(ds.Tables[0].Rows[0][&TestCol&] + &&);
System.Console.ReadLine();
配置如下 XML code
&?xml version=&1.0& encoding=&utf-8& ?&
&configuration&
&system.serviceModel&
&endpoint address=&http://localhost:3001/DataSetInWCF/TestService&
binding=&basicHttpBinding&
contract=&ServiceReference1.IServiceLib& name=&DataSetInWCFBHttp& /&
&/system.serviceModel&
&/configuration&
测试通过
------回答---------------其他回答(20分)---------
可能dataset的schema变了
不要传dataset,把数据分离出来单独传
------其他回答(10分)---------如果使用WCF,还是使用自定义实体类及泛型集合吧,DataSet太大,另外好像有Schema的问题(听别人说的,我很久没用DataSet了)。------其他回答(10分)---------个人感觉,强类型的东西都很麻烦。
不要传DataSet,你的问题很有可能是Schema变化造成的------其他回答(10分)---------1 你的客户端使用SvcUtil.exe生成的代理?换成Channel试试。
2 传一个少量数据的DATASET试试。
3 用Stream传送Dataset试试------其他回答(25分)---------
你的Serivce中是不是还包含有其他方法,它们返回的是什么类型
service reference应该是基于ClientBase的代理,建议使用Channel调用Service。
我们曾经碰见过类似问题后来发现是客户端代理的问题,改用Channel就OK了。
------其他回答(25分)---------
可能dataset的schema变了
不要传dataset,把数据分离出来单独传
------其他回答(100分)---------
刚才在VS2008下做了个测试,
Server端代码如下:
using S
using System.Collections.G
using System.T
using System.ServiceM
using System.D
namespace DataSetInWCFService
{
class Program
static void Main(string[] args)
System.Console.WriteLine(&Press &ENTER& to start service.&);
System.Console.ReadLine();
StartService();
Console.WriteLine(&Serivce started.&);
System.Console.WriteLine(&Press &ENTER& to terminate service.&);
System.Console.ReadLine();
StopService();
Console.WriteLine(&Serivce stopped.&);
static ServiceHost BNIIIBusinessDuplexServiceHost =
static void StartService()
BNIIIBusinessDuplexServiceHost = new ServiceHost(typeof(DataSetInWCFService.ServiceLib));
BNIIIBusinessDuplexServiceHost.Open();
static void StopService()
if (BNIIIBusinessDuplexServiceHost.State != CommunicationState.Closed)
BNIIIBusinessDuplexServiceHost.Close();
public class ServiceLib : DataSetInWCFService.IServiceLib
public DataSet GetDataSet()
DataSet ds = new DataSet();
DataTable dt = new DataTable();
DataColumn dc = new DataColumn(&TestCol&, typeof(string));
dt.Columns.Add(dc);
DataRow dr = dt.NewRow();
dr[&TestCol&] = &SomeMessages&;
dt.Rows.Add(dr);
ds.Tables.Add(dt);
public string GetString()
return &SomeMessages&;
[ServiceContract(Namespace = &http://DataSetInWCF/TestService&)]
public interface IServiceLib
[OperationContract()]
System.Data.DataSet GetDataSet();
[OperationContract()]
string GetString();
&?xml version=&1.0& encoding=&utf-8& ?&
&configuration&
&system.serviceModel&
&behaviors&
&serviceBehaviors&
&behavior name=&NewBehavior&&
&serviceMetadata httpGetEnabled=&true& /&
&serviceDebug includeExceptionDetailInFaults=&true& /&
&/behavior&
&/serviceBehaviors&
&/behaviors&
&services&
&service behaviorConfiguration=&NewBehavior& name=&DataSetInWCFService.ServiceLib&&
&endpoint address=&& binding=&basicHttpBinding& bindingConfiguration=&&
name=&DataSetInWCFBHttp& contract=&DataSetInWCFService.IServiceLib& /&
&baseAddresses&
&add baseAddress=&http://localhost:3001/DataSetInWCF/TestService& /&
&/baseAddresses&
&/service&
&/services&
&bindings&
&basicHttpBinding&
&binding name=&NewBinding0& /&
&/basicHttpBinding&
&/bindings&
&/system.serviceModel&
&/configuration&
客户端代码如下
using S
using System.Collections.G
using System.L
using System.T
using System.D
namespace DataSetInWCFClient
{
class Program
static void Main(string[] args)
System.Console.WriteLine(&Press &ENTER& to start service.&);
System.Console.ReadLine();
using (ServiceReference1.ServiceLibClient client = new DataSetInWCFClient.ServiceReference1.ServiceLibClient(&DataSetInWCFBHttp&))
DataSet ds= client.GetDataSet();
Console.WriteLine(ds.Tables[0].Rows[0][&TestCol&] + &&);
System.Console.ReadLine();
&?xml version=&1.0& encoding=&utf-8& ?&
&configuration&
&system.serviceModel&
&endpoint address=&http://localhost:3001/DataSetInWCF/TestService&
binding=&basicHttpBinding&
contract=&ServiceReference1.IServiceLib& name=&DataSetInWCFBHttp& /&
&/system.serviceModel&
&/configuration&
测试通过
相关资料:|||||||WCF返回数据集,客户应用接收总出错,是配置有问题吗?来源网络,如有侵权请告知,即处理!编程Tags:                &                    使用clientDataSet保存XML文件问题,在线等
编辑:www.fx114.net
本篇文章主要介绍了"使用clientDataSet保存XML文件问题,在线等
20xin699]",主要涉及到使用clientDataSet保存XML文件问题,在线等
20xin699]方面的内容,对于使用clientDataSet保存XML文件问题,在线等
20xin699]感兴趣的同学可以参考一下。
使用ClientDataSet控件的savetofile方法,将数据集保存成XML文件时,TDataPacketFormat参数使用dfXML,生成的XML文件头为:
&?xml&version="1.0"&standalone="yes"?&&
因为数据集中含有中文,所以我需要生成的文件头为:
&?xml&version="1.0"&encoding="gb2312"&standalone="yes"&?&&
请问要怎么实现呢?自己顶一个dfXMLUTF8那是保存成utf8格式的吧只有三种格式,
TDataPacketFormat&=&(dfBinary,&dfXML,&dfXMLUTF8);
如果不行的话你之后在生成后再去修改这个文件了!应该是dfXMLUTF8其实没关系的吧,我之前是用dfXMLUTF8,后来改成dfBinary,一样可以显示中文,dfXML没试过我试过了,有中文的,用utf-8格式的保存,无法正确浏览XML文件没有得到满意的答案,结贴了,另外想办法解决,谢谢各位帮忙顶一个
如果您觉得这篇文章对您有帮助,欢迎使用支付宝对我们捐助。
本文标题:
本页链接:查看: 509|回复: 3|关注: 0
求NUS-WIDE和MSRA-MM数据集的下载地址
NUS-WIDE搜到的地址打不开了,有大神知道别的下载地址么
lms啊comp.nus.edu.sg/research/NUS-WIDE啊htm这是我搜到的,
没有人有么:'(
你是在找MSRA-MM1.0的地址还是2.0的地址,你有2.0的数据集么?
我也遇到了相同的问题MSRA-MM都无法下载,不知道哪位大侠能提供一下呢?
站长推荐 /1
Powered by

我要回帖

更多关于 uci数据集 的文章

 

随机推荐