نتایج جستجو برای: self centered graph

تعداد نتایج: 760711  

Journal: :IEEE Access 2023

Embedding learning is essential in various research areas, especially natural language processing (NLP). However, given the nature of unstructured data and word frequency distribution, general pre-trained embeddings, such as word2vec GloVe, are often inferior tasks for specific domains because missing or unreliable embedding. In many domain-specific tasks, pre-existing side information can be c...

Journal: :Symmetry 2022

Graph representation learning has become a mainstream method for processing network structured data, and most graph methods rely heavily on labeling information downstream tasks. Since labeled is rare in the real world, adopting self-supervised to solve neural problem significant challenge. Currently, existing approaches attempt maximize mutual learning, which leads large amount of redundant th...

Journal: :Discrete Mathematics 2006
Flavia Bonomo

A clique in a graph is a complete subgraph maximal under inclusion. The clique graph of a graph is the intersection graph of its cliques. A graph is self-clique when it is isomorphic to its clique graph. A circular-arc graph is the intersection graph of a family of arcs of a circle. A Helly circular-arc graph is a circular-arc graph admitting a model whose arcs satisfy the Helly property. In th...

2005
Kohji Tomita Satoshi Murata Akiya Kamimura Haruhisa Kurokawa

In this paper, we consider how self-description can be realized for construction and execution in a single framework of a variant of graph rewriting systems, called graph rewriting automata. As an example of self-description for construction, a self-replication based on a self-description is shown. Meta-node structure is introduced for selfdescription for execution that enables us to embed rule...

Introduction: Today, student-centered methods must be used to train students with professional competency. One of the most valuable methods is Jigsaw (JT). Despite its various positive effects on students’ learning, not all teachers are familiar with Jigsaw. In order to familiarize teachers with this method and encourage them to use it in teaching their students, this article introduces Jigsaw,...

2005
Kayhan Erciyes Ali Alp Geoffrey Marshall

We present new serial and parallel algorithms for multilevel graph partitioning. Our algorithm has coarsening, partitioning and uncoarsening phases like other multilevel partitioning methods. However, we choose fixed nodes which are at least a specified distance away from each other and coarsen them with their neighbor nodes in the coarsening phase using various heuristics. Using this algorithm...

2006
TOOMAS KIRT

In this paper we propose a self-organizing method for the graph colouring problem. The proposed self-organizing method for the graph colouring extends the chemical casting model and makes it possible to find the number of colours needed to colour the graph. The self-organizing approach is needed to solve scheduling tasks in the applications of ad hoc networks. Nodes in ad hoc networks are usual...

2016
RABIA AKMAL

In this paper, we introduce the concept of an intuitionistic fuzzy graph structure (IFGS). We discuss certain notions, including intuitionistic fuzzy Bi-cycles, intuitionistic fuzzy Bi-trees and φ-complement of an intuitionistic fuzzy graph structure with several examples. We also present φ-complement of an intuitionistic fuzzy graph structure along with self-complementary and strong self-compl...

2010
David W. Eggert Kevin W. Bowyer R. Dyer

The study of the viewer-centered object representation known as the aspect graph has recently been an active area of research in computer vision. The aspect graph is desirable because it provides a complete enumeration of all possible distinct views of an object, given a particular model for viewpoint space and adefinition of "distinct". This paper presents a history of the evolution of the asp...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->