首页 > 最新文献

2011 Seventh International Conference on Semantics, Knowledge and Grids最新文献

英文 中文
The Method of Medical Named Entity Recognition Based on Semantic Model and Improved SVM-KNN Algorithm 基于语义模型和改进SVM-KNN算法的医学命名实体识别方法
Pub Date : 2011-10-24 DOI: 10.1109/SKG.2011.24
Xia Han, Ruonan Rao
In the medical field, a lot of unstructured information which is expressed by natural language exists in medical literature, technical documentation and medical records. IE (Information Extraction) as one of the most important research directions in natural language process aims to help humans extract concerned information automatically. NER (Named Entity Recognition) is one of the subsystems of IE and has direct influence on the quality of IE. Nowadays NER of medical field has not reached ideal precision largely due to the knowledge complexity in medical field. It is hard to describe the medical entity definitely in feature selection and current selected features are not rich and lack of semantic information. Besides that, different medical entities which have the similar characters more easily cause classification algorithm making wrong judgment. Combination multi classification algorithms such as SVM-KNN can overcome its own disadvantages and get higher performance. But current SVM-KNN classification algorithm may provide wrong categories results due to setting inappropriate K value and unbalanced examples distribution. In this paper, we introduce two-level modelling tool to help specialists to build semantic models and select features from them. We design and implement medical named entity recognition analysis engine based on UIMA framework and adopt improved SVM-KNN algorithm called EK-SVM-KNN (Extending K SVM-KNN) in classification. We collect experiment data from SLE(Systemic Lupus Erythematosus) clinical information system in Renji Hospital. We adopt 50 Pathology reports as training data and provide 1000 Pathology as test data. Experiment shows medical NER based on semantic model and improved SVM-KNN algorithm can enhance the quality of NER and we get the precision, recall rate and F value up to 86%.
在医学领域,医学文献、技术文档和病历中存在大量以自然语言表达的非结构化信息。信息抽取(Information Extraction, IE)是自然语言处理中最重要的研究方向之一,旨在帮助人类自动抽取相关信息。命名实体识别(NER, Named Entity Recognition)是IE的一个子系统,直接影响到IE的质量。由于医学领域知识的复杂性,目前医学领域的NER并没有达到理想的精度。在特征选择上难以对医疗实体进行明确的描述,目前所选择的特征语义信息不够丰富和缺乏。此外,具有相似特征的不同医疗实体更容易导致分类算法做出错误判断。SVM-KNN等组合多分类算法可以克服自身的缺点,获得更高的性能。但是目前的SVM-KNN分类算法由于K值设置不合适,样本分布不平衡,可能会给出错误的分类结果。在本文中,我们引入了两级建模工具,以帮助专家建立语义模型并从中选择特征。我们设计并实现了基于UIMA框架的医学命名实体识别分析引擎,并在分类中采用改进的SVM-KNN算法EK-SVM-KNN (extended K SVM-KNN)。实验数据来源于仁济医院系统性红斑狼疮临床信息系统。我们采用50份病理学报告作为培训数据,提供1000份病理学作为测试数据。实验表明,基于语义模型的医学NER和改进的SVM-KNN算法可以提高NER的质量,准确率、召回率和F值均达到86%。
{"title":"The Method of Medical Named Entity Recognition Based on Semantic Model and Improved SVM-KNN Algorithm","authors":"Xia Han, Ruonan Rao","doi":"10.1109/SKG.2011.24","DOIUrl":"https://doi.org/10.1109/SKG.2011.24","url":null,"abstract":"In the medical field, a lot of unstructured information which is expressed by natural language exists in medical literature, technical documentation and medical records. IE (Information Extraction) as one of the most important research directions in natural language process aims to help humans extract concerned information automatically. NER (Named Entity Recognition) is one of the subsystems of IE and has direct influence on the quality of IE. Nowadays NER of medical field has not reached ideal precision largely due to the knowledge complexity in medical field. It is hard to describe the medical entity definitely in feature selection and current selected features are not rich and lack of semantic information. Besides that, different medical entities which have the similar characters more easily cause classification algorithm making wrong judgment. Combination multi classification algorithms such as SVM-KNN can overcome its own disadvantages and get higher performance. But current SVM-KNN classification algorithm may provide wrong categories results due to setting inappropriate K value and unbalanced examples distribution. In this paper, we introduce two-level modelling tool to help specialists to build semantic models and select features from them. We design and implement medical named entity recognition analysis engine based on UIMA framework and adopt improved SVM-KNN algorithm called EK-SVM-KNN (Extending K SVM-KNN) in classification. We collect experiment data from SLE(Systemic Lupus Erythematosus) clinical information system in Renji Hospital. We adopt 50 Pathology reports as training data and provide 1000 Pathology as test data. Experiment shows medical NER based on semantic model and improved SVM-KNN algorithm can enhance the quality of NER and we get the precision, recall rate and F value up to 86%.","PeriodicalId":184788,"journal":{"name":"2011 Seventh International Conference on Semantics, Knowledge and Grids","volume":"23 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2011-10-24","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"127226249","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":0,"RegionCategory":"","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 21
A Hybrid Join Algorithm on Top of Map Reduce 基于Map Reduce的混合连接算法
Pub Date : 2011-10-24 DOI: 10.1109/SKG.2011.13
Weisong Hu, Lili Ma, Xiaowei Liu, Hongwei Qi, L. Zha, Huaming Liao, Yuezhuo Zhang
Hadoop has shown great power in processing vast data in parallel. Hive, the database on Hadoop, enables more experts to process relational data by providing sql-like interface. However, Hive does not provide an efficient approach for join, a common but expensive operator in relational database. Due to the importance of join, this paper proposes a novel hybrid algorithm, HJA, which can help to automatically choose the relatively better one among several methods, divide and memory copy merge, Partition Join(PJ) and naïve Hive join. Experiments show that HJA can get best performance in most situations.
Hadoop在并行处理大量数据方面显示出了强大的能力。Hadoop上的数据库Hive通过提供类似sql的接口,使更多的专家能够处理关系数据。然而,Hive并没有提供一种高效的join方法,join是关系数据库中常见但代价昂贵的操作。鉴于连接的重要性,本文提出了一种新的混合算法HJA,该算法可以自动从几种方法中选择相对较好的方法,包括分割和内存复制合并、分区连接(PJ)和naïve Hive连接。实验表明,HJA在大多数情况下都能获得最佳性能。
{"title":"A Hybrid Join Algorithm on Top of Map Reduce","authors":"Weisong Hu, Lili Ma, Xiaowei Liu, Hongwei Qi, L. Zha, Huaming Liao, Yuezhuo Zhang","doi":"10.1109/SKG.2011.13","DOIUrl":"https://doi.org/10.1109/SKG.2011.13","url":null,"abstract":"Hadoop has shown great power in processing vast data in parallel. Hive, the database on Hadoop, enables more experts to process relational data by providing sql-like interface. However, Hive does not provide an efficient approach for join, a common but expensive operator in relational database. Due to the importance of join, this paper proposes a novel hybrid algorithm, HJA, which can help to automatically choose the relatively better one among several methods, divide and memory copy merge, Partition Join(PJ) and naïve Hive join. Experiments show that HJA can get best performance in most situations.","PeriodicalId":184788,"journal":{"name":"2011 Seventh International Conference on Semantics, Knowledge and Grids","volume":"1 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2011-10-24","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"126461789","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":0,"RegionCategory":"","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 2
Empirical Study of Chinese Text Similarity Computation Based on Machine Translation 基于机器翻译的中文文本相似度计算实证研究
Pub Date : 2011-10-24 DOI: 10.1109/SKG.2011.19
Yu Xu, Jianxun Liu, Mingdong Tang, Yiping Wen
For the problems of Chinese text similarity calculation based on word frequency statistics, this paper proposed a method by using machine translation to translate Chinese text into English text, indirectly calculate similarity of given texts. This method can avoid some shortcomings of Chinese word segmentation and utilize the advantages of the natural word segmentation of English, and also can use machine translation to indirectly take the semantics of part of words into account. The experiments compared it with the way of directly using Chinese, and a detailed analysis was performed. Experiments show that this method can improve most of social texts' similarity computation as well as increase the accuracy of the computation as a whole.
针对基于词频统计的中文文本相似度计算问题,本文提出了一种利用机器翻译将中文文本翻译成英文文本,间接计算给定文本相似度的方法。这种方法可以避免汉语分词的一些缺点,利用英语自然分词的优点,也可以利用机器翻译间接考虑部分词的语义。实验将其与直接使用中文的方式进行了比较,并进行了详细的分析。实验表明,该方法可以改善大多数社会文本的相似度计算,并从整体上提高了计算的准确性。
{"title":"Empirical Study of Chinese Text Similarity Computation Based on Machine Translation","authors":"Yu Xu, Jianxun Liu, Mingdong Tang, Yiping Wen","doi":"10.1109/SKG.2011.19","DOIUrl":"https://doi.org/10.1109/SKG.2011.19","url":null,"abstract":"For the problems of Chinese text similarity calculation based on word frequency statistics, this paper proposed a method by using machine translation to translate Chinese text into English text, indirectly calculate similarity of given texts. This method can avoid some shortcomings of Chinese word segmentation and utilize the advantages of the natural word segmentation of English, and also can use machine translation to indirectly take the semantics of part of words into account. The experiments compared it with the way of directly using Chinese, and a detailed analysis was performed. Experiments show that this method can improve most of social texts' similarity computation as well as increase the accuracy of the computation as a whole.","PeriodicalId":184788,"journal":{"name":"2011 Seventh International Conference on Semantics, Knowledge and Grids","volume":"5 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2011-10-24","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"131394226","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":0,"RegionCategory":"","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 1
Quality-Driven Hierarchical Clustering Algorithm for Service Intelligence Computation 面向服务智能计算的质量驱动层次聚类算法
Pub Date : 2011-10-24 DOI: 10.1109/SKG.2011.49
Y. Zhao, Chi-Hung Chi, Chen Ding
Clustering is an important technique for intelligence computation such as trust, recommendation, reputation, and requirement elicitation. With the user centric nature of service and the user's lack of prior knowledge on the distribution of the raw data, one challenge is on how to associate user quality requirements on the clustering results with the algorithmic output properties (e.g. number of clusters to be targeted). In this paper, we focus on the hierarchical clustering process and propose two quality-driven hierarchical clustering algorithms, HBH (homogeneity-based hierarchical) and HDH (homogeneity-driven hierarchical) clustering algorithms, with minimum acceptable homogeneity and relative population for each cluster output as their input criteria. Furthermore, we also give a HDH-approximation algorithm in order to address the time performance issue. Experimental study on data sets with different density distribution and dispersion levels shows that the HDH gives the best quality result and HDH-approximation can significantly improve the execution time.
聚类是一种重要的智能计算技术,如信任、推荐、声誉和需求提取。由于服务以用户为中心,用户缺乏对原始数据分布的先验知识,因此如何将用户对聚类结果的质量要求与算法输出属性(例如目标聚类的数量)联系起来是一个挑战。本文重点研究了层次聚类过程,提出了两种质量驱动的层次聚类算法,即HBH (homohomogeneous -based hierarchical)和HDH (homohomogeneous -driven hierarchical)聚类算法,以最小可接受的均匀性和每个聚类输出的相对人口作为输入标准。此外,为了解决时间性能问题,我们还给出了一种hdh近似算法。在不同密度分布和离散程度的数据集上进行的实验研究表明,HDH算法能给出最好的质量结果,并且HDH近似能显著提高执行时间。
{"title":"Quality-Driven Hierarchical Clustering Algorithm for Service Intelligence Computation","authors":"Y. Zhao, Chi-Hung Chi, Chen Ding","doi":"10.1109/SKG.2011.49","DOIUrl":"https://doi.org/10.1109/SKG.2011.49","url":null,"abstract":"Clustering is an important technique for intelligence computation such as trust, recommendation, reputation, and requirement elicitation. With the user centric nature of service and the user's lack of prior knowledge on the distribution of the raw data, one challenge is on how to associate user quality requirements on the clustering results with the algorithmic output properties (e.g. number of clusters to be targeted). In this paper, we focus on the hierarchical clustering process and propose two quality-driven hierarchical clustering algorithms, HBH (homogeneity-based hierarchical) and HDH (homogeneity-driven hierarchical) clustering algorithms, with minimum acceptable homogeneity and relative population for each cluster output as their input criteria. Furthermore, we also give a HDH-approximation algorithm in order to address the time performance issue. Experimental study on data sets with different density distribution and dispersion levels shows that the HDH gives the best quality result and HDH-approximation can significantly improve the execution time.","PeriodicalId":184788,"journal":{"name":"2011 Seventh International Conference on Semantics, Knowledge and Grids","volume":"71 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2011-10-24","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"127179548","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":0,"RegionCategory":"","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 0
Integrate Fuzzy Logic into SLN 将模糊逻辑集成到SLN中
Pub Date : 2011-10-24 DOI: 10.1109/SKG.2011.15
Ke Ren, Zhixing Huang, Anping Zhao, Yuhui Qiu
SLN is a loosely coupled semantic data model assigned for the network resource management. Integrating fuzzy logic into SLN can be used to handle the ambiguity, uncertainty and imprecision. This paper proposes a novel data model of fuzzy semantic link network, and provides membership functions used to define the fuzzy semantic association degree between the semantic nodes. Its nodes can be any type of resources, and its edges can be any kind of semantic relations, the potential of fuzzy compound semantic links can be got from fuzzy reasoning rules which based on fuzzy semantic relations.
SLN是为网络资源管理而分配的松耦合语义数据模型。将模糊逻辑集成到语言网络中,可以有效地处理模糊性、不确定性和不精确性。本文提出了一种新的模糊语义链路网络数据模型,并提供了用于定义语义节点间模糊语义关联度的隶属函数。它的节点可以是任意类型的资源,它的边可以是任意类型的语义关系,基于模糊语义关系的模糊推理规则可以得到模糊复合语义链接的潜力。
{"title":"Integrate Fuzzy Logic into SLN","authors":"Ke Ren, Zhixing Huang, Anping Zhao, Yuhui Qiu","doi":"10.1109/SKG.2011.15","DOIUrl":"https://doi.org/10.1109/SKG.2011.15","url":null,"abstract":"SLN is a loosely coupled semantic data model assigned for the network resource management. Integrating fuzzy logic into SLN can be used to handle the ambiguity, uncertainty and imprecision. This paper proposes a novel data model of fuzzy semantic link network, and provides membership functions used to define the fuzzy semantic association degree between the semantic nodes. Its nodes can be any type of resources, and its edges can be any kind of semantic relations, the potential of fuzzy compound semantic links can be got from fuzzy reasoning rules which based on fuzzy semantic relations.","PeriodicalId":184788,"journal":{"name":"2011 Seventh International Conference on Semantics, Knowledge and Grids","volume":"21 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2011-10-24","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"130045571","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":0,"RegionCategory":"","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 1
Computer Description of Old Chinese Phonological System Based on Graph Theory 基于图论的古汉语语音系统计算机描述
Pub Date : 2011-10-24 DOI: 10.1109/SKG.2011.8
Jiajia Hu, Ning Wang
This paper, based on the theories and fruits of Old Chinese Phonology, uses the graph model in mathematics as the method to describe the initial-rhyme relationships of Old Chinese, and the Euclidean distance on 2-dimensional plane to represent the distance between sounds in the phonological harmony. Although the model is still in its infancy and there is still a lot of room for refinement and development by experts on Old Chinese phonology, it provides a more intuitive method of quantitative analysis for the long established qualitative study of Old Chinese phonology which would have some very practical uses in this field, such as the research of Xiesheng system of Chinese characters, or the the research of Chinese Etymology.
本文以古汉语音韵学的理论和成果为基础,利用数学中的图形模型作为描述古汉语声母关系的方法,并利用二维平面上的欧几里得距离来表示语音谐和中的音间距离。虽然这个模型还处于初级阶段,古汉语音系研究专家还有很大的改进和发展空间,但它为长期建立的古汉语音系定性研究提供了一种更直观的定量分析方法,在这一领域有一些非常实际的用途,如汉字的协声系统研究,或汉语词源学的研究。
{"title":"Computer Description of Old Chinese Phonological System Based on Graph Theory","authors":"Jiajia Hu, Ning Wang","doi":"10.1109/SKG.2011.8","DOIUrl":"https://doi.org/10.1109/SKG.2011.8","url":null,"abstract":"This paper, based on the theories and fruits of Old Chinese Phonology, uses the graph model in mathematics as the method to describe the initial-rhyme relationships of Old Chinese, and the Euclidean distance on 2-dimensional plane to represent the distance between sounds in the phonological harmony. Although the model is still in its infancy and there is still a lot of room for refinement and development by experts on Old Chinese phonology, it provides a more intuitive method of quantitative analysis for the long established qualitative study of Old Chinese phonology which would have some very practical uses in this field, such as the research of Xiesheng system of Chinese characters, or the the research of Chinese Etymology.","PeriodicalId":184788,"journal":{"name":"2011 Seventh International Conference on Semantics, Knowledge and Grids","volume":"60 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2011-10-24","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"132041261","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":0,"RegionCategory":"","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 0
Policy-Based SLA-Aware Cloud Service Provision Framework 基于策略的sla感知云服务提供框架
Pub Date : 2011-10-24 DOI: 10.1109/SKG.2011.10
Zhilin Wang, Xinhuai Tang, Xiangfeng Luo
Cloud computing has emerged as a new paradigm, which is the long-held dream of computing as utility, customer get it on an on-demand model. When discuss about performance requirement and QoS (Quality of Service) of service, it is hard to tackle these problem in a round consideration. In this work we propose an SLA-aware (Service Level Agreement aware) framework ¨C cloud service provider (CSP) for cloud service (cloud infrastructure) delivery, and making allowance for the benefit of stakeholder of cloud service provider and service consumer. By using our proposed system and hierarchy SLA monitoring model we reached our win-win objective which is maximum revenue of cloud provider and minimum SLA violation.
云计算已经作为一种新的范例出现,这是长期以来的梦想,即计算作为一种实用工具,客户可以按需获得它。在讨论服务的性能要求和服务质量时,很难全面地考虑这些问题。在这项工作中,我们提出了一个sla感知(服务水平协议感知)框架——用于云服务(云基础设施)交付的云服务提供商(CSP),并考虑到云服务提供商和服务消费者的利益相关者的利益。采用我们提出的系统分层SLA监控模型,实现了云提供商收益最大化和SLA违规最小化的双赢目标。
{"title":"Policy-Based SLA-Aware Cloud Service Provision Framework","authors":"Zhilin Wang, Xinhuai Tang, Xiangfeng Luo","doi":"10.1109/SKG.2011.10","DOIUrl":"https://doi.org/10.1109/SKG.2011.10","url":null,"abstract":"Cloud computing has emerged as a new paradigm, which is the long-held dream of computing as utility, customer get it on an on-demand model. When discuss about performance requirement and QoS (Quality of Service) of service, it is hard to tackle these problem in a round consideration. In this work we propose an SLA-aware (Service Level Agreement aware) framework ¨C cloud service provider (CSP) for cloud service (cloud infrastructure) delivery, and making allowance for the benefit of stakeholder of cloud service provider and service consumer. By using our proposed system and hierarchy SLA monitoring model we reached our win-win objective which is maximum revenue of cloud provider and minimum SLA violation.","PeriodicalId":184788,"journal":{"name":"2011 Seventh International Conference on Semantics, Knowledge and Grids","volume":"23 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2011-10-24","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"126540523","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":0,"RegionCategory":"","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 9
Towards an IDM Approach of Transforming Web Services into ACME Providing Quality of Service 一种将Web服务转换为提供服务质量的ACME的IDM方法
Pub Date : 2011-10-24 DOI: 10.1109/SKG.2011.38
Amel Mhamdi, Raoudha Maraoui, Mohamed Graiet, Mourad Kmimech, Mohamed Tahar Bhiri, Eric Cariou
In this paper, the work developed aims at contributing to the research related to the Quality of Service (QoS) for Web services. We started this research by providing a comprehensive review and description of the QoS specifications that comprise some already existing factors contributing to the QoS and some newly proposed ones. These include the availability, accessibility, reliability, integrity, the response time of the service, security, performance, etc. Hence, the aim of this research is two folds, first, it helps the designers and developers to provide better web services and second, and it helps ensure consistent software architecture as a reference model for many applications. To achieve this, we model, first, the meta-QoS model of the Web services. Then, we formalize the QoS of the Web services by referring to ARMANI which provides a language of predicates that is powerful enough to reconcile any mismatches and, thus, provide a reliable composition of the Web services. We also, handle the mediation of the composite Web services with the ACME using an automatic MDE approach and implementing a tool for this aim: Web services compositions are transformed onto ACME specifications. We are the, able to check the composition of the Web services through the ACME verification tools.
在本文中,所开展的工作旨在促进与Web服务的服务质量(QoS)相关的研究。我们通过提供对QoS规范的全面回顾和描述开始了这项研究,这些规范包括一些已经存在的对QoS有贡献的因素和一些新提出的因素。这些包括可用性、可访问性、可靠性、完整性、服务的响应时间、安全性、性能等。因此,本研究的目的是双重的,第一,它帮助设计人员和开发人员提供更好的web服务,第二,它帮助确保一致的软件架构作为许多应用程序的参考模型。为此,我们首先对Web服务的元qos模型进行建模。然后,我们通过引用ARMANI来形式化Web服务的QoS, ARMANI提供了一种足够强大的谓词语言,可以调和任何不匹配,从而提供可靠的Web服务组合。我们还使用自动MDE方法处理ACME组合Web服务的中介,并为此实现一个工具:将Web服务组合转换为ACME规范。我们可以通过ACME验证工具检查Web服务的组合。
{"title":"Towards an IDM Approach of Transforming Web Services into ACME Providing Quality of Service","authors":"Amel Mhamdi, Raoudha Maraoui, Mohamed Graiet, Mourad Kmimech, Mohamed Tahar Bhiri, Eric Cariou","doi":"10.1109/SKG.2011.38","DOIUrl":"https://doi.org/10.1109/SKG.2011.38","url":null,"abstract":"In this paper, the work developed aims at contributing to the research related to the Quality of Service (QoS) for Web services. We started this research by providing a comprehensive review and description of the QoS specifications that comprise some already existing factors contributing to the QoS and some newly proposed ones. These include the availability, accessibility, reliability, integrity, the response time of the service, security, performance, etc. Hence, the aim of this research is two folds, first, it helps the designers and developers to provide better web services and second, and it helps ensure consistent software architecture as a reference model for many applications. To achieve this, we model, first, the meta-QoS model of the Web services. Then, we formalize the QoS of the Web services by referring to ARMANI which provides a language of predicates that is powerful enough to reconcile any mismatches and, thus, provide a reliable composition of the Web services. We also, handle the mediation of the composite Web services with the ACME using an automatic MDE approach and implementing a tool for this aim: Web services compositions are transformed onto ACME specifications. We are the, able to check the composition of the Web services through the ACME verification tools.","PeriodicalId":184788,"journal":{"name":"2011 Seventh International Conference on Semantics, Knowledge and Grids","volume":"28 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2011-10-24","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"115181211","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":0,"RegionCategory":"","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 1
Towards Intelligent Distributed Applications Based on Distributed Semantics and Reasoning 基于分布式语义和推理的智能分布式应用
Pub Date : 2011-10-24 DOI: 10.1109/SKG.2011.27
W. Du
This paper proposes an agent based framework to incorporating distributed semantics and reasoning into a conventional distributed system, to support intelligent decisions and behaviours of distributed nodes of the system. In the framework, service agents which reside in distributed nodes provide semantic services specific to the local environment, and mobile agents provide semantic services to applications that use the underlying distributed system.
本文提出了一种基于智能体的框架,将分布式语义和推理集成到传统的分布式系统中,以支持系统中分布式节点的智能决策和行为。在该框架中,驻留在分布式节点中的服务代理提供特定于本地环境的语义服务,而移动代理向使用底层分布式系统的应用程序提供语义服务。
{"title":"Towards Intelligent Distributed Applications Based on Distributed Semantics and Reasoning","authors":"W. Du","doi":"10.1109/SKG.2011.27","DOIUrl":"https://doi.org/10.1109/SKG.2011.27","url":null,"abstract":"This paper proposes an agent based framework to incorporating distributed semantics and reasoning into a conventional distributed system, to support intelligent decisions and behaviours of distributed nodes of the system. In the framework, service agents which reside in distributed nodes provide semantic services specific to the local environment, and mobile agents provide semantic services to applications that use the underlying distributed system.","PeriodicalId":184788,"journal":{"name":"2011 Seventh International Conference on Semantics, Knowledge and Grids","volume":"19 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2011-10-24","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"126871295","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":0,"RegionCategory":"","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 0
Integration of Semantically Aligned Heterogeneous Databases 语义对齐异构数据库的集成
Pub Date : 2011-10-24 DOI: 10.1109/SKG.2011.30
Yi Yang, Junkang Feng
In this paper we propose a methodology whereby we semantically align heterogeneous databases without changing the databases. The alignment achieved is on the data instance level, which does not require the semantics of the data at the type level. We first introduce semantic alignment in the context of our databases research project then discuss in details how heterogeneous databases that are semantically aligned may be integrated. In general, we align heterogeneous databases with 'Global as View'. We show that by drawing on Barwise-Seligman's information flow channel theory and making use of Enhanced Entity-Relationship model, semantically aligned heterogeneous databases can be successfully integrated, which enables non-conventional queries on constituting databases. We show that without modifying databases our methodology integrates any chosen databases on data instances level without loss of information, which is our contribution over existing works. Furthermore, Barwise-Seligman's information flow channel theory represents a novel and mathematically sound approach to linking independent systems. As we use this theory as a theoretical basis of our work and therefore we believe that our ideas presented here have a general applicability in talking issues in distributed systems.
在本文中,我们提出了一种在不改变数据库的情况下对异构数据库进行语义对齐的方法。实现的对齐是在数据实例级别上,它不需要类型级别的数据语义。我们首先在数据库研究项目的上下文中介绍语义对齐,然后详细讨论如何集成语义对齐的异构数据库。通常,我们将异构数据库与“全局即视图”对齐。通过借鉴Barwise-Seligman的信息流通道理论,利用增强实体-关系模型,可以成功地集成语义对齐的异构数据库,从而实现对数据库构成的非常规查询。我们表明,在不修改数据库的情况下,我们的方法在数据实例级别集成了任何选定的数据库,而不会丢失信息,这是我们对现有工作的贡献。此外,Barwise-Seligman的信息流通道理论代表了一种连接独立系统的新颖且数学上合理的方法。由于我们使用这个理论作为我们工作的理论基础,因此我们相信我们在这里提出的想法在讨论分布式系统中的问题时具有普遍的适用性。
{"title":"Integration of Semantically Aligned Heterogeneous Databases","authors":"Yi Yang, Junkang Feng","doi":"10.1109/SKG.2011.30","DOIUrl":"https://doi.org/10.1109/SKG.2011.30","url":null,"abstract":"In this paper we propose a methodology whereby we semantically align heterogeneous databases without changing the databases. The alignment achieved is on the data instance level, which does not require the semantics of the data at the type level. We first introduce semantic alignment in the context of our databases research project then discuss in details how heterogeneous databases that are semantically aligned may be integrated. In general, we align heterogeneous databases with 'Global as View'. We show that by drawing on Barwise-Seligman's information flow channel theory and making use of Enhanced Entity-Relationship model, semantically aligned heterogeneous databases can be successfully integrated, which enables non-conventional queries on constituting databases. We show that without modifying databases our methodology integrates any chosen databases on data instances level without loss of information, which is our contribution over existing works. Furthermore, Barwise-Seligman's information flow channel theory represents a novel and mathematically sound approach to linking independent systems. As we use this theory as a theoretical basis of our work and therefore we believe that our ideas presented here have a general applicability in talking issues in distributed systems.","PeriodicalId":184788,"journal":{"name":"2011 Seventh International Conference on Semantics, Knowledge and Grids","volume":"9 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2011-10-24","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"129141407","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":0,"RegionCategory":"","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 1
期刊
2011 Seventh International Conference on Semantics, Knowledge and Grids
全部 Acc. Chem. Res. ACS Applied Bio Materials ACS Appl. Electron. Mater. ACS Appl. Energy Mater. ACS Appl. Mater. Interfaces ACS Appl. Nano Mater. ACS Appl. Polym. Mater. ACS BIOMATER-SCI ENG ACS Catal. ACS Cent. Sci. ACS Chem. Biol. ACS Chemical Health & Safety ACS Chem. Neurosci. ACS Comb. Sci. ACS Earth Space Chem. ACS Energy Lett. ACS Infect. Dis. ACS Macro Lett. ACS Mater. Lett. ACS Med. Chem. Lett. ACS Nano ACS Omega ACS Photonics ACS Sens. ACS Sustainable Chem. Eng. ACS Synth. Biol. Anal. Chem. BIOCHEMISTRY-US Bioconjugate Chem. BIOMACROMOLECULES Chem. Res. Toxicol. Chem. Rev. Chem. Mater. CRYST GROWTH DES ENERG FUEL Environ. Sci. Technol. Environ. Sci. Technol. Lett. Eur. J. Inorg. Chem. IND ENG CHEM RES Inorg. Chem. J. Agric. Food. Chem. J. Chem. Eng. Data J. Chem. Educ. J. Chem. Inf. Model. J. Chem. Theory Comput. J. Med. Chem. J. Nat. Prod. J PROTEOME RES J. Am. Chem. Soc. LANGMUIR MACROMOLECULES Mol. Pharmaceutics Nano Lett. Org. Lett. ORG PROCESS RES DEV ORGANOMETALLICS J. Org. Chem. J. Phys. Chem. J. Phys. Chem. A J. Phys. Chem. B J. Phys. Chem. C J. Phys. Chem. Lett. Analyst Anal. Methods Biomater. Sci. Catal. Sci. Technol. Chem. Commun. Chem. Soc. Rev. CHEM EDUC RES PRACT CRYSTENGCOMM Dalton Trans. Energy Environ. Sci. ENVIRON SCI-NANO ENVIRON SCI-PROC IMP ENVIRON SCI-WAT RES Faraday Discuss. Food Funct. Green Chem. Inorg. Chem. Front. Integr. Biol. J. Anal. At. Spectrom. J. Mater. Chem. A J. Mater. Chem. B J. Mater. Chem. C Lab Chip Mater. Chem. Front. Mater. Horiz. MEDCHEMCOMM Metallomics Mol. Biosyst. Mol. Syst. Des. Eng. Nanoscale Nanoscale Horiz. Nat. Prod. Rep. New J. Chem. Org. Biomol. Chem. Org. Chem. Front. PHOTOCH PHOTOBIO SCI PCCP Polym. Chem.
×
引用
GB/T 7714-2015
复制
MLA
复制
APA
复制
导出至
BibTeX EndNote RefMan NoteFirst NoteExpress
×
0
微信
客服QQ
Book学术公众号 扫码关注我们
反馈
×
意见反馈
请填写您的意见或建议
请填写您的手机或邮箱
×
提示
您的信息不完整,为了账户安全,请先补充。
现在去补充
×
提示
您因"违规操作"
具体请查看互助需知
我知道了
×
提示
现在去查看 取消
×
提示
确定
Book学术官方微信
Book学术文献互助
Book学术文献互助群
群 号:481959085
Book学术
文献互助 智能选刊 最新文献 互助须知 联系我们:info@booksci.cn
Book学术提供免费学术资源搜索服务,方便国内外学者检索中英文文献。致力于提供最便捷和优质的服务体验。
Copyright © 2023 Book学术 All rights reserved.
ghs 京公网安备 11010802042870号 京ICP备2023020795号-1