lang
stringclasses
1 value
s2FieldsOfStudy
listlengths
0
8
url
stringlengths
78
78
fieldsOfStudy
listlengths
0
5
lang_conf
float64
0.8
0.98
title
stringlengths
4
300
paperId
stringlengths
40
40
venue
stringlengths
0
300
authors
listlengths
0
105
publicationVenue
dict
abstract
stringlengths
1
10k
text
stringlengths
1.94k
184k
openAccessPdf
dict
year
int64
1.98k
2.03k
publicationTypes
listlengths
0
4
isOpenAccess
bool
2 classes
publicationDate
timestamp[us]date
1978-02-01 00:00:00
2025-04-23 00:00:00
references
listlengths
0
958
total_tokens
int64
509
40k
en
[ { "category": "Medicine", "source": "external" }, { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08a909a7b14a21201fcfb5effd882028349008f3
[ "Medicine", "Computer Science" ]
0.874025
Speeding Up Reachability Queries in Public Transport Networks Using Graph Partitioning
08a909a7b14a21201fcfb5effd882028349008f3
Information Systems Frontiers
[ { "authorId": "3404973", "name": "Bezaye Tesfaye" }, { "authorId": "2893196", "name": "Nikolaus Augsten" }, { "authorId": "31722415", "name": "Mateusz Pawlik" }, { "authorId": "145903871", "name": "Michael H. Böhlen" }, { "authorId": "145917501", "name": "Chri...
{ "alternate_issns": null, "alternate_names": [ "Inf Syst Front" ], "alternate_urls": [ "https://link.springer.com/journal/10796" ], "id": "fe62068f-ff53-47fb-9ce7-8ec2495ad6c1", "issn": "1387-3326", "name": "Information Systems Frontiers", "type": "journal", "url": "http://www.springer.com/...
Computing path queries such as the shortest path in public transport networks is challenging because the path costs between nodes change over time. A reachability query from a node at a given start time on such a network retrieves all points of interest (POIs) that are reachable within a given cost budget. Reachability...
ERROR: type should be string, got "https://doi.org/10.1007/s10796 021 10164 2\n\n# Speeding Up Reachability Queries in Public Transport Networks Using Graph Partitioning\n\n**Bezaye Tesfaye[1]** **· Nikolaus Augsten[1]** **· Mateusz Pawlik[1]** **· Michael H. B¨ohlen[2]** **· Christian S. Jensen[3]**\n\n\nAccepted: 17 June 2021\n© The Author(s) 2021\n\n\n/ Published online: 14 August 2021\n\n\n**Abstract**\nComputing path queries such as the shortest path in public transport networks is challenging because the path costs between\nnodes change over time. A reachability query from a node at a given start time on such a network retrieves all points of\ninterest (POIs) that are reachable within a given cost budget. Reachability queries are essential building blocks in many\napplications, for example, group recommendations, ranking spatial queries, or geomarketing. We propose an efficient\nsolution for reachability queries in public transport networks. Currently, there are two options to solve reachability queries.\n(1) Execute a modified version of Dijkstra’s algorithm that supports time-dependent edge traversal costs; this solution is\nslow since it must expand edge by edge and does not use an index. (2) Issue a separate path query for each single POI, i.e., a\nsingle reachability query requires answering many path queries. None of these solutions scales to large networks with many\nPOIs. We propose a novel and lightweight reachability index. The key idea is to partition the network into cells. Then, in\ncontrast to other approaches, we expand the network cell by cell. Empirical evaluations on synthetic and real-world networks\nconfirm the efficiency and the effectiveness of our index-based reachability query solution.\n\n**Keywords Reachability queries · Public transport networks · Temporal graphs · Spatial network databases**\n\n\n## 1 Introduction\n\nWe study the problem of scalable and efficient reachability querying in public transport networks. A reachability\nquery retrieves all points of interest (POIs) reachable from\na given query node at a specific start time within a given\n\n� Bezaye Tesfaye\n[bbelayneh@cs.sbg.ac.at](mailto: bbelayneh@cs.sbg.ac.at)\n\nNikolaus Augsten\n[augsten@cs.sbg.ac.at](mailto: augsten@cs.sbg.ac.at)\n\nMateusz Pawlik\n[mpawlik@cs.sbg.ac.at](mailto: mpawlik@cs.sbg.ac.at)\n\nMichael H. B¨ohlen\n[boehlen@ifi.uzh.ch](mailto: boehlen@ifi.uzh.ch)\n\nChristian S. Jensen\n[csj@cs.aau.dk](mailto: csj@cs.aau.dk)\n\n1 University of Salzburg, Salzburg, Austria\n\n2 University of Zurich, Z¨urich, Switzerland\n\n3 Aalborg University, Aalborg, Denmark\n\n\ntime budget. The start time is required since the reachability result changes over time. Interesting applications of\nreachability queries include group recommendations, ranking spatial queries, urban planning, and geomarketing. We\npresent two examples.\nConsider a platform that recommends events to a group\nof people such that the group members like to attend the\nevent together (Amer-Yahia et al., 2009; Jameson & Smyth,\n2007). Group members are query nodes and events are POIs.\nWhen the group is given, the events must be evaluated\nby various criteria to optimize the benefit to the group.\nOne important aspect is the location of the event relative\nto the group members. The start time and the travel time\nbudget to reach an event may differ for each member.\nEvents too far away are unlikely to be successful. A single\nrecommendation comprises multiple reachability queries,\none for each group member.\nAnother example is a real estate website that ranks\nproperties (query nodes) according to user preferences. The\nusers may customize reachability criteria for different POIs\n(e.g., school, working place, train station). Thereby, the time\nbudget for individual types of POIs may vary: a user may\nbe willing to commute to work for an hour, while a school\nmust be nearby. Ranking the results of a single user query\n\n\n-----\n\nrequires the computation of multiple reachability queries:\none for each property and parameter setting.\nTo support such applications, reachability queries must\nbe computed efficiently. Achieving this goal in public\ntransport networks is tricky since the shortest path between\ntwo nodes depends on the start time, and the time to\ntraverse a path may vary greatly across time. In a public\ntransport network, stations are nodes, and connections\nbetween stations are edges between nodes. An edge can\nonly be traversed at specific points in time as given by\na schedule. Therefore, computing an index for public\ntransport networks is more complex than for networks with\nconstant edge-traversal costs or networks in which an edge\ncan be traversed at any time (like pedestrian networks or\nroad networks).\n\n_Example 1 Consider, the public transport network in_\nFig. 1a. The nodes v1, v2, . . ., v12 represent stations, and the\ndirected edges represent connections between the stations.\nEach connection has a pair (td _, ta) of departure and arrival_\ntimes. For example, there is a connection leaving v4 at\ntime 10 and arriving at v3 at time 11. The traversal cost\nbetween nodes is expressed in terms of time units. The cost\nof traversing the edge (v4, v3) at time 9 is 2, since we have\na waiting time in addition to the edge traversal time. The\nshortest path from v10 to v11 at start time ts 9 has cost 2\n=\n(edge (v10, v11)), while at ts = 10, the cost of the shortest\npath is 3 (edges (v10, v12), (v12, v11)). At start time ts = 9,\n\n**Fig. 1 Temporal graph of public transport network and reachability index**\n\n\nthe nodes {v8, v9, v11} are reachable from v10 with budget\n_Δt = 2; at ts = 10 with the same budget, we can reach the_\nnodes {v9, v12}.\n\nThe state of the art in answering reachability queries\nin public transport networks includes two approaches.\nThe first is based on a temporal version of Dijkstra’s\nalgorithm (Dijkstra, 1959) that expands in the network until\nthe budget is exhausted. Algorithms following this approach\ncompute a so-called isochrone (the reachable region) and\nintersect it with the set of POIs (Bauer et al., 2008; Gamper\net al., 2011). Since all edges in the isochrone must be\nexpanded, these algorithms do not scale to large networks.\nThe second approach translates a single reachability query\ninto a set of path queries (e.g., shortest path or earliestarrival path (Seufert et al., 2013; Wang et al., 2015; Wu\net al., 2016)), one for each POI. Path queries require heavy\nindex structures and do not scale to large numbers of POIs.\nWe propose an index-based technique for reachability\nqueries in public transport networks. Instead of expanding\nedge by edge, in a precomputation step, we partition the\nnetwork into cells and construct a novel reachability index.\nAt query time, the index is used to expand cell by cell.\nEach cell covers a region of the network and all POIs in\nthat region. The precomputation effort for a specific cell\nis independent of the other cells such that the index scales\nto large networks. The index is small, even smaller than\nthe original graph for some inputs. This paper extends\n\n\n-----\n\nour preliminary results in Tesfaye et al. (2020) with an\nevaluation of different partitioning techniques. The idea of\npartitioning a public transport network to index reachability\nqueries was first published in Tesfaye and Augsten (2016),\nbut the proposed index is not exact and the quality of the\napproximation was not evaluated.\nThe rest of the paper is structured as follows. In Section 2,\nwe define the problem, and we give an overview of our\nsolution in Section 3. We introduce our reachability index\nin Section 4 and discuss query processing using the index\nin Section 5. In Section 6, we review related work. In\nSection 7 we investigate experimentally the performance of\nour solution. We conclude in Section 8.\n\n## 2 Preliminaries and Problem Definition\n\nIn a public transport network, stations are nodes and\nconnections are edges. A connection has a departure time\n_td and an arrival time ta, td < ta. We assume periodic_\nschedules as is typically the case in public transport\nnetworks, e.g., schedules repeat daily or weekly.\nA temporal graph G = (V, E, c) is a directed graph\nwith vertices V, edges E ⊆ _V × V, and a time-dependent_\ncost function c(e, t), c : E × R → R≥0 that captures\nthe time cost of traversing edge e starting at time t. We\nrepresent public transport networks as temporal graphs with\na specific cost function, which we derive from the schedule.\nEach station is a node in the graph, and there is an edge\nfrom node u to node v iff there is a direct connection (i.e.,\nthere are no intermediate stops) from the station of u to the\nstation of v. The cost function is periodic with period Π, i.e.,\n_c(e, t) = c(e, t + Π) and piecewise linear; all linear pieces_\nhave slope k = −1; the cost function is not continuous; all\ndiscontinuities are at departure times of some connections.\nThe time cost of taking a connection si = (td _, ta) to traverse_\nedge e in the period (td − _Π, td_ ] is σ(si, t) = ta − _t. If there_\nare multiple connections Se = {s1, s2, . . ., si} on edge e, the\ncost of traversing edge e departing at time t is the minimum\ncost over all the individual connections at time t, c(e, t) =\nmins∈Se {σ(s, t)}. Our cost function is consistent, i.e., for\nany edge e ∈ _E and all start times t1 ≤_ _t2: t1 + c(e, t1) ≤_\n_t2+c(e, t2). Intuitively, in a consistent cost function, it never_\npays off to skip a connection in order to wait for a later\nand faster connection. Consistency is required for the use\nof Dijkstra’s shortest-path algorithm (Kaufmann & Smith,\n1993).\n\n_Example 2 Consider an edge e with three connections_\n_s1 = (2, 5), s2 = (3, 4), s3 = (4, 6) and a period of_\n_Π = 6. Figure 2 shows the time costs (y-axis) of taking_\nthe individual connections to traverse edge e starting at\ntime t (x-axis): σ(s1, t) = 5 − _t, t ∈_ _(−4, 2] (blue),_\n\n\n**Fig. 2 Example of cost function c(e, t) of traversing edge e starting at**\ntime t derived from three connections s1, s2, and s3 (period Π = 6)\n\n_σ(s2, t) = 4 −_ _t, t ∈_ _(−3, 3] (green), σ(s3, t) = 6 −_ _t,_\n_t_ ∈ _(−2, 4] (red). The overall cost function c(e, t) =_\nmin{σ(s1, t), σ(s2, t), σ(s3, t)} is illustrated with black\ndashed lines. For example, c(e, 2) = 2 (take connection\n_s2 at cost σ(s2, 2) = 4 −_ 2 = 2: depart at time 2,\nwait for 1 unit and then travel for 1 unit), c(e, 4) = 2\n(depart at time 4, no waiting, take connection s3 with cost\n_σ(s3, 4) = 6 −_ 4 = 2). Note that the connection s1 does\nnot contribute to the cost function c because it departs\nearlier and arrives later than the connection s2. Thus, s1\nis obsolete and c(e, t) = min{σ(s2, t), σ(s3, t)} holds,\nmaking c consistent. In practice, connections like s1, if they\nexist, are removed from the schedule.\n\nA path p from u to v in a temporal graph G = (V, E, c)\nis a sequence of edges p = ⟨e1, e2, . . ., en⟩ such that\n_ei ∈_ _E, ei = (wi−1, wi), w0 = u, and wn = v; P (u, v)_\nis the set of all paths from node u to node v. The cost of a\npath is the fastest time to traverse the path at a given start\ntime. Due to the consistency property of our cost function,\nthe path cost is the sum of all edge costs. The cost of path\n_p = ⟨e1, e2, . . ., en⟩_ at time t, λ(p, t), is the cost sum of all\nedges in p: λ(p, t) = [�]1≤i≤n _[c(e][i][, t][i][)][, where][ t][1][ =][ t][ and]_\n_ti = ti−1 + c(ei−1, ti−1) for i > 1. The shortest-path cost_\nfrom node u to node v at time t is the minimum cost of any\npath from u to v, sp(u, v, t) = minp∈P (u,v){λ(p, t)}. A path\nwith the minimum cost is called the shortest path. A node\n_v is reachable from a node u at time t within budget Δt iff_\nthere is a path p ∈ _P (u, v) such that the cost of p at time t_\nis no larger than Δt, i.e., λ(p, t) ≤ _Δt._\n\n**Definition 1 Reachability query. Given a temporal graph**\n_G_ = _(V, E, c) with points of interst P OI_ ⊆ _V,_\n\n\n-----\n\nthe reachability query RQ(u, t, Δt) returns all points of\ninterest reachable from node u at time t within budget\n_Δt, i.e,_\n\n_RQ(u, t, Δt) = {v ∈_ _P OI | ∃p ∈_ _P (u, v), λ(p, t) ≤_ _Δt}_\n\n**Problem definition The goal of this work is to develop an**\nefficient index-based solution for reachability queries that\nscales to large temporal graphs.\n\n## 3 Solution Overview\n\nWe propose a novel index structure, the reachability\n_index, to answer reachability queries. We introduce a bulk_\nloading technique for our index, provide access methods for\nanswering reachability queries, and discuss the incremental\ninsertion and deletion of POIs in the index.\nThe reachability index is built in a precomputation step.\nTo construct the index, we partition the temporal graph into\ndisjoint cells. Any such partitioning yields correct results.\nThe choice of cells, however, affects the effectiveness of the\nindex. We define requirements for a good partitioning and\npropose a suitable partitioning technique.\nThe index is a temporal graph that contains only those\nnodes of the original graph that are POIs or directly connect\ndifferent cells, called border nodes. Each POI belongs to a\ncell. POIs can be inserted into and deleted from the index\nat any time; the update cost is low and depends on a single\ncell. The index consists of the original edges between border\nnodes of neighboring cells and new edges between the\nborder nodes within a cell. Further, an edge between each\nPOI and the border nodes in its cell is introduced. The edge\ncosts are the costs of shortest paths between the respective\nnodes in the original graph.\nA high number of border nodes per cell increases the\nindex size. Each POI adds as many edges to the index as\nthere are border nodes in its cell.\nA search query traverses the index cell by cell. The\nborder nodes are used to cross cells and to reach neighboring\ncells. For each border node, we verify if any of the POIs in\nthat cell is reachable.\n\n## 4 The Reachability Index\n\nThe reachability index R is a temporal graph that is\nconstructed from the original graph G as follows:\n\n1. _Graph partitioning. The nodes of graph G are split into_\ndisjoint cells. At query time, instead of expanding edge\nby edge in G, we expand cell by cell in the index.\n2. _Constructing the index core. Based on the graph_\npartitioning, we insert the so-called border nodes and\n\n\nedges into the initially empty index. This index core\nnever changes.\n3. _Computing the index cost function. The edge cost is_\ncomputed as a shortest-path cost for each departure time\nfrom a source node to a destination node.\n4. _Inserting POIs. Inserting a POI into a cell adds a new_\nnode and an edge to each border node of the cell. POIs\nthat are not border nodes can be inserted and deleted\ndynamically without modifying the rest of the index.\n\nWe detail each step of the index construction next.\nAdditionally, we discuss the factors that affect the size of\nthe reachability index and present a compaction technique\nto reduce the number of connections.\n\n### 4.1 Graph Partitioning\n\nWe partition the nodes of a temporal graph G = (V, E, c)\ninto a set of disjoint cells C = {C1, C2, . . ., Cn}, such that\neach node of G belongs to exactly one cell Ci, i.e., Ci∩Cj =\n∅ for any pair of cells with i ̸= j, and [�]1≤i≤n _[C][i][ =][ V][ .]_\nEach disconnected component of the graph that is supposed\nto be indexed[1] should be partitioned into at least two cells.\nThe nodes of a cell Ci that have an adjacent node in a cell\ndifferent from Ci are border nodes, Bi: A node v ∈ _Ci is a_\nborder node, v ∈ _Bi, if it has an edge to or from another cell,_\ni.e., there is a node w ∈ _V, w /∈_ _Ci, and an edge (v, w) ∈_ _E_\nor an edge (w, v) ∈ _E. For example, the temporal graph G_\nin Fig. 1b of our example public transport network (Fig. 1a)\nis partitioned into two cells (dashed boxes): C1 with border\nnodes v5 and v7, and C2 with border nodes v8 and v9.\nThe cells define the structure of the reachability index.\nThe index will be expanded cell by cell to answer\nreachability queries. A good partitioning should satisfy the\nfollowing properties:\n\n1. _Well connected inside. A cell comprises highly-linked_\nnodes with many edges and connections inside the cell.\n2. _Loosely connected outside. The number of border nodes_\nper cell is small.\n3. _Large distance between cells. Crossing cell borders is_\nexpensive: the number of connections between cells is\nsmall and their cost is high.\n\nFinding a good partitioning that satisfies our requirements is not straightforward. We identify two relevant\napproaches in literature: community detection (Blondel\net al., 2008; Newman & Girvan, 2004; Traag et al., 2019)\nand minimum edge-cut partitioning (Karypis & Kumar,\n1998a; 1998b). Both approaches strive to minimize the\n\n1Indexing very small disconnected components may not be useful\nsince a reachability query expands at most the edges within the\ndisconnected component regardless of the query parameters.\n\n\n-----\n\nedges connecting different partitions. An additional objective of the minimum edge-cut partitioning is to produce\npartitions of balanced size. Community detection algorithms automatically adjust the number of partitions such\nthat the resulting partitions are densely connected inside.\nFor the minimum edge-cut partitioning the number k of partitions is a user-defined parameter. Both approaches allow\nfor edge weights that increase the cost for cutting an edge;\nwe choose the number of connections on an edge to be its\nweight.\nWe assess how well do community detection and\nminimum edge-cut partitioning suit our scenario. In this\nsection, we revisit the commonly used algorithms and\nthoroughly evaluate their impact on our solution in\nSection 7.\n\n**4.1.1 Community Detection**\n\nIn contrast to fixing the number of partitions upfront, community detection aims at identifying naturally occurring\ndensely connected subgraphs. One of the best-known objective functions for community detection is modularity (Newman & Girvan, 2004). Modularity is the difference between\nthe edges in the identified communities and the expected\nnumber of edges in communities of an equivalent network\nwith edges distributed at random. Optimizing modularity,\ni.e., finding communities that maximize modularity, is NPhard. We describe two approximations: Louvain (Blondel\net al., 2008), and its recent improvement Leiden (Traag\net al., 2019).\n\n**Louvain by Blondel et al. (2008) is a two-phase approach.**\nInitially, each node forms its own community. In the first\nphase, nodes are moved to neighboring communities such\nthat the modularity increases. The result is the input to the\nsecond phase, where an aggregated network is created. Each\nnode in the aggregated network represents a community\ndetected in the first phase. The two phases are repeated until\nmodularity cannot be increased any further.\nLouvain produces partitions with the following guarantees: no communities can be merged and no nodes can be\nmoved between communities to further improve modularity (Traag et al., 2019).\n\n**Leiden by Traag et al. (2019) is an improvement of**\nLouvain. Traag et al. observe that Louvain may result\nin poorly connected or even disconnected communities,\nwhich is not desired. Leiden adds an additional phase to\nLouvain. Initially, each node is in its community. In the\nfirst phase, similarly to Louvain, Leiden moves nodes to\nneighboring communities. However, unlike Louvain that\nvisits each node, Leiden uses an improvement, called fast\n_local move, to visit only those nodes whose neighborhood_\n\n\nhas changed. In the second phase, called refinement, Leiden\nfinds sub-communities within each community resulted\nfrom the first phase. Each of the sub-communities will\nform their own community. The refinement phase is used\nto avoid poorly connected and disconnected communities.\nIn the third phase, unlike Louvain, Leiden uses the refined\ncommunities to aggregate the network.\nLeiden provides two new guarantees in addition to the\nguarantees provided by Louvain: communities are well\nconnected, and individual nodes are well connected to their\ncommunities.\n\n**4.1.2 Minimum Edge-Cut Partitioning**\n\nThe minimum edge-cut partitioning computes k partitions\nsuch that: (a) the sizes of the partitions are balanced,\n(b) the number of edges that connect nodes from\ndifferent partitions (the so-called edge-cut) is minimized.\nFinding the minimum edge-cut is NP-hard. Efficient\napproximate methods resulting in high-quality partitions\nfollow a multilevel partitioning paradigm. For our purpose\nwe chose the multilevel k-way partitioning (Karypis\n& Kumar, 1998b) from the commonly used METIS\nframework (Karypis & Kumar, 1998a).\nThe multilevel k-way partitioning (Karypis & Kumar,\n\n1998b) is a three-phase approach, consisting of coarsening,\n_partitioning, and uncoarsening. In coarsening phase an_\ninput graph is reduced by collapsing nodes and edges\niteratively. In each step, the graph from the previous step\nis reduced further. The coarsening phase stops when the\ncoarsest graph has a small number of nodes, or the reduction\nbetween two consecutive coarser graphs is too small. The\n_partitioning phase splits the coarsest graph into k partitions._\nThe uncoarsening phase projects the partitioned graph back\nto the original input by unfolding nodes and edges. To do so,\nit follows the backward sequence of coarsened graphs until\nall nodes and edges are unfolded. During uncoarsening, a\nrefinement technique is applied to decrease the edge-cut.\nVarious algorithms have been proposed for each of the\nphases; Karypis and Kumar (1998b) thoroughly evaluate the\noptions.\nIn our scenario, the number k of desired partitions is\nnot known up front. This parameter is hard to guess. Since\nLeiden and Louvain do not require this input parameter, the\nnumber of partitions produced by these algorithms could\nserve as a guideline. This is the approach that we take in our\nempirical evaluation.\n\n### 4.2 Constructing the Index Core\n\nGiven a temporal graph G = (V, E, c) and a partitioning C\nof G, we construct the core of our reachability index. The\nindex core is independent of POIs and never changes for\n\n\n-----\n\na given partitioning. The reachability index is a temporal\ngraph R = (VR, ER, cR) with nodes VR ⊂ _V, edges_\n_ER ⊆_ _VR × VR, and cost function cR(e, t) on the edges_\n_e ∈_ _ER. For an edge e = (u, v) ∈_ _ER, cR is defined_\nas the shortest-path cost from u to v at time t in G, i.e.,\n_cR(e, t) = sp(u, v, t)._\n_Index nodes. For each cell Ci ∈_ _C, we insert all its border_\n_nodes Bi into the node set VR of the index. Thus, the nodes_\nof the index VR = [�]1≤i≤|C| _[B][i][. Figure][ 1][c shows the index]_\ncore of the temporal graph (Fig. 1b) with cells C1 = {v5, v7}\nand C2 = {v8, v9}.\n\n**Index edges The edges of the index core are ER = BB ∪**\n_BC. BB is the set of all edges between border nodes of_\nneighboring cells. For each edge (u, v) ∈ _E between two_\nborder nodes of different cells in C, u ∈ _Ci, v ∈_ _Cj_ _, i ̸= j_,\nwe insert a new edge between the respective nodes into the\nindex, ER = ER ∪{(u, v)}. BC is the set of all edges\nbetween pairs of border nodes within a cell. For each pair\n_u, v ∈_ _Bi, we insert two new edges (u, v) and (v, u) into_\nthe index, ER = ER ∪{(u, v), (v, u)}. For example, BB =\n{α3, α4, α7} and BC = {α1, α2, α5, α6} in Fig. 1c.\n\n### 4.3 Points of Interest\n\nPOIs can be inserted and deleted at any time, also after index\nconstruction. This is beneficial because POIs may change\nover time. A POI v ∈ _V may be any node in the original_\ntemporal graph. If v is a border node, no action is required\nbecause such a node is in the index core already. Otherwise,\nsimilarly to border nodes, inserting v into the index involves\nthree steps. (1) We add v to the index nodes (VR = VR∪{v}).\n(2) We add a new edge from each border node of v[′]s cell to\n_v (we call such edges BP edges). (3) The cost function based_\non shortest paths (same procedure as for all other edges)\nis computed. Deleting a POI from the index removes the\nPOI node and all its incoming edges. For example, consider\ninserting two POIs, v2, v10, into the index in Fig. 1d. We add\nedges BP = {α8, α9, α10, α11}.\n\n### 4.4 Computing the Index Cost Function\n\nThe cost function cR of an edge e = (u, v) ∈ _ER in_\nindex R is defined as the shortest-path cost from u to\n_v at time t in graph G, i.e., cR(e, t) = sp(u, v, t). For_\ncomputing the values of the cost function cR, we execute\nDijkstra’s single-source shortest-path algorithm once for\nevery border node b ∈ _Bi and every departure time at b._\nThe expansion stops when all other border nodes in the\ncell and all direct neighbors of b (i.e., nodes reachable\nfrom b via a BB edge) are visited. Since the cells are\nsmall compared to the overall graph, typically only a small\nnumber of nodes needs to be considered for each execution\n\n\nof Dijkstra’s algorithm. BC and BP edges may connect\nnodes that are not reachable in the original temporal graph.\nIf a node is not reached during one of the shortest-path\ncomputations, we assign infinite cost to the respective\nedges.\n\n_Example 3 Cost examples for the index core in Fig. 1c are:_\n_cR(α3, 14) = 3, cR(α1, 9) = 2, cR(α5, 9) = 2. In Fig. 1d,_\nthe costs for the edges of type BP are cR(α8, 9) = 3,\n_cR(α9, 8) = 7, cR(α10, 9) = 1, and cR(α11, 11) = 1._\n\n### 4.5 Index Size\n\nThe index consists of border nodes and POIs. Thus, the\nnumber of index nodes is at most the number of nodes in\nthe temporal graph. We introduce three types of edges into\nthe index. BB edges connect border nodes between different\ncells, and they are a subset of the temporal graph edges.\n_BC edges connect border nodes in a single cell, and their_\ncardinality is at most quadratic in the number of border\nnodes. Each POI adds as many BP edges as border nodes in\na cell. The numbers of BC and BP edges depend only on the\nsubset of temporal graph nodes that are in a single cell. The\nnumbers do not depend on the graph size. In sparse graphs,\nwhere many nodes have only a few edges, the reachability\nindex may grow larger than the temporal graph: we can\nremove only a small number of original edges but need to\ninsert new BC and BP edges.\nEach edge has as many edge cost values as there\nare departure times from a node. The edge costs are\ncomputed for each single cell in isolation, making parallel\ncomputation possible. In particular, the edge cost of\na specific border node at a specific departure time is\nindependent of all other edge costs.\n\n### 4.6 Index Compaction\n\nThe index size, as well as the size of the temporal graph,\nis dominated by the size of the schedule, i.e., the number\nof edge connections. After computing the edge costs in the\nindex, we observe that many different departure times have\nthe same arrival time at the destination. It is enough to keep\nonly one connection per arrival time, namely the one with\nthe maximum departure time. We leverage that and compact\nthe index by reducing the number of connections as follows.\nConsider an edge e(u, v) ∈ _ER and set S of departure–_\narrival connection pairs (d, a) on that edge. We compact S\nto S[′] ⊆ _S, such that S[′]_ = {(d, a) ∈ _S : ∄(di_ _,ai_ _)∈Sai = a ∧_\n_di > d}. Experiments show that this compaction technique_\nis highly effective and reduces the index size by up to 74%\n(cf. Section 7). For example, the set of all connections on\nedge α8 in Fig. 1d, {(8, 12), (9, 12), (11, 15)}, is compacted\ninto {(9, 12), (11, 15)}.\n\n\n-----\n\n## 5 Answering Reachability Queries\n\nThe core idea of our reachability algorithm is to expand cell\nby cell rather than edge by edge. The BB edges between\nborder nodes of different cells allow us to expand to the\nneighboring cells; the BC edges between border nodes of\nthe same cell reflect the time to cross a cell; the direct\n_BP edges from border nodes to POIs allow for a quick_\nevaluation of which POIs can be reached. In addition, we\ndiscuss a heuristic to avoid unnecessary edge expansions\nand processing of query nodes that are non-border nodes.\n\n**The reachability algorithm Algorithm 1 takes as an input**\nthe reachability index R = _(VR, ER, cR), query node_\n_q, start time ts, and the cost budget Δt. The expansion_\nproceeds like in Dijkstra’s algorithm and returns the set N of\nreachable POIs in R. Nodes and their costs from q are stored\nin a min-heap M initialized to M[q] = 0, and M[v] = ∞\nfor all other nodes v (line 1). The closest node v to q is\npopped from the min-heap (line 4), and the costs for nodes\nadjacent to v are updated if smaller (lines 9–11). To retrieve\nthe correct edge cost, we do a binary search in the list of\nedge costs sorted by departure time (line 9). Each node\nis traversed only once. The algorithm terminates when no\nmore nodes with cost lower than the budget are in the heap\n(line 5). Consider the reachability index in Fig. 1d. Here,\n_RQ(R, v5, 8, 6) = {v2, v10} because sp(v5, v2, t) = 4_\n(through α8) and sp(v5, v10, t) = 5 (through α4 and α10).\n_RQ(R, v5, 6, 6) = {v2} because sp(v5, v2, t) = 6 (through_\n_α8) but sp(v5, v10, t) = 7 (through α4 and α10)._\n\n**Avoiding unnecessary expansions Regarding the edges**\nwithin a cell, we observe the following. Consider Algorithm 1 processing a border node b of a cell Ci. Then, the\n\n\ncosts of the other nodes, vj ∈ _Ci, are updated w.r.t. the cost_\nof reaching them from b. When we pop a node vj in a later\nround, and if vj was last updated by b, there is no point in\nfollowing the edges from vj to the other nodes in the cell.\nThe cost of accessing the other nodes in the cell through\n_vj cannot be smaller than the cost of accessing these nodes_\ndirectly from b since all edge costs are shortest paths. If,\nhowever, vj was updated through an edge from a neighboring cell, the edges to the other nodes in the cell need to\nbe followed. We exploit this observation to avoid following\nedges inside a cell that cannot lead to an update and thus\ndo not affect the solution. We flag the nodes whenever their\ncost was updated by processing a node from within a cell,\nand we remove the flag, otherwise (line 12). The outgoing\nedges that must be expanded are selected based on the flag\n(line 7).\nNote that the number of edges within a cell is quadratic in\nthe number of border nodes of that cell. Thanks to the use of\nflags we avoid unnecessary expansions. In particular, if the\ncheapest way to reach all nodes in a cell is through k border\nnodes, we only expand k(w − 1) edges per cell, where w\nis the number of all border nodes and POIs in a cell. The\nvalue of k is expected to be small and will often be 1 (i.e.,\nthe shortest path from a query node q to all nodes in the cell\ncrosses the border node that is closest to q).\n\n**Non-border query nodes The reachability index does not**\ncontain all nodes of the original graph. If the query node\n_q in cell Ci is not a border node, the algorithm starts the_\nexpansion from q in the temporal graph. All POIs reached\nin cell Ci are part of the result. Once a border node b[′] ∈ _Bi_\nis reached, the expansion continues in the index at time\n_ts + sp(q, b[′], ts)._\n\n**Correctness We show that the shortest-path costs in the**\nindex and the original temporal graph are identical.\nLet u, w ∈ _VR_ be two index nodes and p =\n⟨(v0, v1), (v1, v2), . . ., (vn−1, vn)⟩ be the corresponding\nshortest path in the temporal graph, i.e., u = v0, w =\n_vn. If there is a direct edge between u and w in the_\nindex, the shortest-path cost is the cost of that edge: this\ncost is precomputed using Dijkstra’s algorithm for each\ndeparture time in the original temporal graph; since our\ncost function is consistent (cf. Section 2), the edge cost is\ncorrect (Kaufmann & Smith, 1993). Otherwise, u and w\nare not in the same cell (all nodes in a cell are connected\nwith an edge). So, there must be a path along index nodes\n_u1, u2, . . . uk ⊆_ _v1, . . . vn−1 that are all on path p since cells_\ncan be exited only through border nodes. We show that the\ncost of the index path is indeed the shortest path. Assume\na node ui exists such that sp(v0, vn, t) < sp(u, ui, t) +\n_sp(ui, w, t) + sp(u, ui, t). On a path of length two, the_\n\n\n-----\n\ncosts of edges (u, u1) and (u1, w) are precomputed shortestpath costs, and they are therefore correct. The assumption,\nhowever, implies that one of the edge costs could be\ndecreased, i.e., the assumption is incorrect. This argument\ncan be extended edge by edge to paths of arbitrary length.\n\n## 6 Related Work\n\nShortest-path and reachability queries on road networks,\ni.e., graphs with constant edge cost, have been studied\nextensively. Unfortunately, these works cannot be applied\nreadily to public transport networks (Bast, 2009). An\nevaluation by Bast et al. (Bast et al., 2016) shows a large\nperformance gap between the two types of networks. This\nis due to the time-dependent edge costs of public transport\nnetworks, which makes the precomputation efforts of many\nalgorithms infeasible.\nCurrent solutions for public transport networks either\nrely on Dijkstra’s algorithm (Dijkstra, 1959) or require\nheavy precomputations. Dijkstra’s algorithm follows an\nexpansion technique that visits edges in all possible direction until the target is reached. Dijkstra-based\napproaches include isochrone algorithms for multimodal\nnetworks (Bauer et al., 2008; Gamper et al., 2011). They\nexpand from a query point using Dijkstra’s algorithm and\ncompute a so-called isochrone, which is the reachable portion of the network at a given point in time. Since all edges\nin the isochrone must be expanded, this approach does not\nscale to large networks.\nMany works fall into the category of labeling approaches.\nThe earliest work, 2-hop labeling (Cohen et al., 2003),\nis designed for weighted graphs and is based on 2-hop\ncovers of shortest paths. Recent works strive to decrease the\nindex size and construction time (Cheng et al., 2013; Jin &\nWang, 2013), which are bottlenecks of 2-hop labeling and\nprevent application to large graphs. Time Table Labeling\n(TTL) (Wang et al., 2015) and Top Chain (Wu et al.,\n2016) adapt 2-hop labeling to public transport networks;\nthey support shortest-path and point-to-point reachability\nqueries. In TTL, the main idea is to precompute label sets for\neach node v containing reachable nodes from and to v. Top\nChain creates a directed acyclic graph (DAG), where each\nnode represents a departure time, and decomposes the DAG\nto create the label sets. Creating label sets in both techniques\nrequires high precomputation costs and large index sizes.\nTo decrease the index size, Top Chain only stores K label\nsets, called chains. The index size of Top Chain for small K\nvalues is smaller than that of TTL, but there is no guarantee\nthat the query results can be found using the index.\nNon-labeling techniques include Scalable Transfer Patterns (Bast et al., 2016), Connection Scan Algorithm\n(CSA) (Strasser, 2016), and Contraction Hierarchy for\n\n\nTimetables (CHT) (Geisberger, 2010). Transfer Patterns\nrequire an expensive profile search from each node to find\nthe optimal paths to all other nodes. CSA organizes a\nschedule as two sequences of edges. The first sequence contains sorted edges based on arrival times, and the second\nsequence sorts edges based on departure times. At query\ntime, CSA scans the sequences in linear time to answer\nearliest arrival path queries. CHT organizes vertices in hierarchies and applies a contraction technique to reduce the\ngraph size for query processing. SPs are precomputed by\nadding new edges to the graph, which are leveraged at query\ntime. These approaches involve expensive precomputations\nor large index sizes, which limits their scalability.\nTo compute reachability queries as defined in this paper,\nall techniques based on point-to-point queries require the\ncomputation of shortest paths from a given query node to\nevery POI, which does not scale to large number of POIs.\n\n## 7 Experiments\n\nWe experimentally evaluate our solution, RQ, and compare\nit to two competitors, a no-index solution, NI, and a fullyindexed solution, SP . We report on the index size and\nefficiency of the algorithms w.r.t. the number of expanded\nedges, which is the work that an algorithm has to do to find\nreachable nodes.\nOur algorithm, RQ, partitions the input graph in order to\nbuild the index. We study the effect of different partitioning\ntechniques discussed in Section 4.1 on the index structure\nand the performance of our RQ algorithm. We identify one\npartitioning technique to be used in conjunction with RQ .\n\n### 7.1 Implementation details\n\nThe algorithms are implemented in Python 3 and executed\non a virtual machine with 32 cores and 117GB RAM,\nrunning Debian 10(buster). For the partitioning of the input\ngraphs we use the following Python libraries: for Louvain\npython-louvain v0.13[2], for Leiden leidenalg\nv0.8.2[3], for multilevel k-way partitioning metis v2020.1[4]\n\nwith the underlying C METIS library v5.1.0[5].\n\n### 7.2 Competitors\n\n**No-Index (NI) The no-index solution, NI, operates on the**\noriginal temporal graph and does not build an index. The\nreachability query is computed with a modified version\n\n[2https://github.com/taynaud/python-louvain](https://github.com/taynaud/python-louvain)\n[3https://github.com/vtraag/leidenalg](https://github.com/vtraag/leidenalg)\n[4https://github.com/inducer/pymetis](https://github.com/inducer/pymetis)\n[5http://glaros.dtc.umn.edu/gkhome/metis/metis/overview](http://glaros.dtc.umn.edu/gkhome/metis/metis/overview)\n\n\n-----\n\nof Dijkstra’s algorithm that supports our cost function\n(cf. Section 5).\n\n**Shortest-Path (SP) The fully-indexed solution, SP, precom-**\nputes and stores all shortest paths from every node in the\ntemporal graph to each POI at every departure time. SP\nrepresents the collection of works that index the shortest\npaths between pairs of nodes (cf. Section 6). In terms of\nlookups per shortest-path, SP is optimal since only a single\nlookup is required per shortest-path query. Other solutions\nfor reachability queries based on indices for shortest-path\nqueries cannot outperform SP in terms of lookups per query.\nInstead, these solutions trade in lookup performance to\nachieve a smaller memory footprint (which is high for SP).\nTherefore, the number of edge expansions performed by SP\nfor reachability queries cannot improve by substituting SP\nby another shortest-path index.\n\n### 7.3 Datasets\n\nWe use two real-world public transport networks represented as temporal graphs, Zurich and Berlin (2020),\nand one synthetic graph, Synthetic. Zurich and Berlin are\nobtained in GTFS format that is further processed. For these\ngraphs, we chose all transport modes and all connections\noperating on Mondays. Synthetic is a 6 6 grid of equally×\nsized spider-web subgraphs. Each spider-web subgraph has\none edge to every neighboring subgraph (to its left, right,\ntop, and bottom). This graph simulates loosely connected\ncities that are densely connected inside. In such a case we\nwould expect a good partitioning to assign nodes of each\nspider-web subgraph into a separate partition. Table 1 shows\nthe statistics, where #Conn is the number of all connections\n(departure-arrival pairs) that can be used to cross an edge.\nFigure 3 visualizes the structure of our public transport\nnetworks.\n\n### 7.4 Effect of Partitioning\n\nOur solution, RQ, will work with any partitioning of\nthe input graph and compute correct results. However, we\nobserve that the index structure and performance of query\nanswering varies depending on the specific partitioning used\nto build the index (cf. Section 4.1).\n\n**Table 1 Dataset statistics**\n\nDataset #Nodes #Edges #Conn\n\nZurich 2,508 5,630 555,713\nBerlin 12,984 34,791 1,348,070\nSynthetic 145,188 433,272 31,042,468\n\n\nWe investigate the effect of different partitioning\ntechniques on our solution RQ . In our analysis, we include\ntwo community detection algorithms, Louvain (Blondel\net al., 2008) and Leiden (Traag et al., 2019), and the\nmultilevel k-way partitioning (Karypis & Kumar, 1998b)\nfrom the METIS framework (Karypis & Kumar, 1998a)\n(denoted as METIS). In Louvain and Leiden, the so-called\nmodularity of the partitioning is optimized to find good\ncommunities. To compute the modularity, a resolution and\na weight between pairs of nodes needs to be specified. We\nuse the default value 1 for the resolution and the number of\nconnections as the edge weight: the more connections exist\nbetween two nodes, the better they are connected.\nWhile Louvain and Leiden auto-detect the number of\npartitions, METIS requires the number of partitions as an\ninput parameter. Defining a good number of partitions is not\nstraightforward since this parameter inherently depends on\nthe network structure. We evaluate METIS using the mean\nof the partition numbers detected by Louvain and Leiden\nwhen we compare to these algorithms in terms of index size\nand query performance.\n\n**7.4.1 Structure of the Partitioning**\n\nTable 2 shows the statistics of partitions resulting from\napplying different techniques to our input graphs: number\nof partitions, partition sizes (average/min/max), number of\nborder nodes (total sum, average/min/max per partition).\nWe visualize the partitions for Zurich, Berlin and Synthetic\ngraphs in Figs. 4, 5, and 6, respectively.\n\n**Number of Partitions Louvain and Leiden auto-detect the**\nnumber of partitions. The number of detected partitions\nis similar for both algorithms: Louvain detects 4% fewer\npartitions than Leiden for Zurich and 15% more partitoins\nfor Synthetic; both algorithms produce the same number\nof partitions for Berlin. METIS requires the number of\npartitions as an input parameter. We choose the mean\nvalue of the partition numbers detected by Louvain and\nLeiden for METIS. For Synthetic, in addition, we provide\nMETIS with the number of spider webs (6 6 36)\n× =\nthat we used to construct the graph. The numbers in\nTable 2 show that METIS correctly identifies all spider\nwebs when the number of partitions is well chosen, resulting\nin a low number of border nodes. With the number of\npartitions that we automatically detect using Louvain and\nLeiden (44 partitions), however, the performance of METIS\nsignificantly drops. The visualization of the partitions in\nFig. 6 confirms this result.\n\n**Size of Partititions One of the optimization goals of METIS**\nis to produce partitions well balanced in size, whereas\nLouvain and Leiden detect communities regardless of their\n\n\n-----\n\n**Fig. 3 Structure of the different public transport networks**\n\nsize. This is confirmed by our results. The partitions of\nMETIS are well balanced, while the community detection\nalgorithms produce some very small and some very large\n\n**Table 2 Statistics for different partitioning techniques**\n\n\npartitions for the real world datasets. Figure 7 shows the\ndistribution of nodes per partition for the three algorithms\non Zurich, Berlin and Synthetic.\n\n\nDataset Partitioning Border nodes\n\nAlgo. #Part avg min max sum avg min max\n\nZurich Louvain 44 57 2 163 314 7 0 20\nLeiden 46 54.5 2 158 298 6.5 0 17\nMETIS 45 55.7 54 57 439 9.8 1 20\nBerlin Louvain 51 254.6 2 924 1250 24.5 0 52\nLeiden 51 254.6 2 747 1138 22.3 0 43\nMETIS 51 254.6 247 262 1439 28.2 9 53\nSynthetic Louvain 48 3024.8 1042 4037 1979 41.2 2 90\nLeiden 41 3541.2 1463 4036 904 22 2 84\nMETIS 44 3299.7 3204 3398 4395 99.9 51 227\n36 4033 4031 4035 120 3.3 2 4\n\n\n-----\n\n**Fig. 4 Partitioning of Zurich**\n\n**Number of Border Nodes As discussed in Section 4.1, we**\nstrive for partitions that are well connected inside and\nloosely connected outside. A low number of border nodes\nindicates loose connections between partitions since edges\nbetween partitions can exist only between border nodes. For\nZurich and Berlin, Leiden exhibits the lowest values for\n\n**Fig. 5 Partitioning of Berlin**\n\n\nborder nodes. We observe that for these datasets the good\nbalance of partition sizes of METIS comes at the cost of\nmore border nodes.\nFor the Synthetic graph, if METIS is given the optimal\nnumber of 36 partitions, all spider webs are detected and\noptimal partitions are produced, resulting in two border\n\n\n-----\n\n**Fig. 6 Partitioning of Synthetic**\n(each partition is colored\ndifferent)\n\n**Fig. 7 Distribution of nodes per**\npartition\n\n\n-----\n\n**Table 3 Index core size for different partitionings**\n\nDataset Algorithm #Nodes #Edges #Conn #Total\n\nZurich RQ LO 314 3,333 405,898 409,545\nRQ LE 298 2,953 377,818 381,069\nRQ ME45 439 5,131 436,281 441,851\n\nBerlin RQ LO 1,250 38,286 2,229,584 2,269,120\nRQ LE 1,138 30,124 1,936,377 1,967,639\nRQ ME51 1,439 45,664 1, 976, 750 2,023,853\n\nSynthetic RQ LO 1,979 150,840 13,263,713 13,416,532\nRQ LE 904 63,622 5,833,430 5,897,956\nRQ ME36 120 416 22,025 22,561\nRQ ME44 4,395 598,896 35,192,991 35,796,282\n\n\nnodes for the spider webs in the four corners, three border\nnodes for the spider webs on the boundaries of the graph,\nand four border nodes for all other spider webs. With the\nauto-detected value of 44 partitions, METIS produces the\nlargest number of border nodes for Synthetic. The reason is\nthat METIS strives to balance the partition sizes also at the\ncost of more border nodes and border edges.\nZurich and Berlin include small disconnected components. Louvain and Leiden detect the small disconnected\ncomponents and do not further partition them. This explains\nthe zero values for the minimum number of border nodes in\nTable 2. METIS includes the disconnected components into\nlarger partitions to balance their sizes.\n\n**7.4.2 Index Size and Structure**\n\nThe border nodes resulting from a partitioning define the\nstructure of our RQ index. Table 3 presents the index\ncore size for different partitionings. The suffixes LO,\n\n\nLE, and MEk in the Algorithm column denote Louvain,\nLeiden, and METIS with k partitions, respectively. The\nvalues that increase the index size are the number of\nnodes (#Nodes) and edges (#Edges), and the number of\nconnections (#Conn), which is the dominating factor. The\ntotal sum of these three values (#Total) is used to compare\nindex sizes among the different partitionings.\nTable 3 suggests that the most promising partitioning is\nLeiden, which results in the smallest overall index core size\n(#Total). An exception is Synthetic if we provide METIS\nwith the optimal number of 36 partitions: the resulting\nindex core is much smaller than the index core for the\nother partitionings. With the auto-detected number of 44\npartitions, however, METIS produces the largest index core.\nTo evaluate our RQ index size after additions of POIs,\nwe randomly pick 5% of the input graph nodes to be POIs\nand we built our index for different partitionings across\nfive different POI samples. Table 4 shows average (avg)\nand standard deviation (σ, rounded values) of the counts\n\n\n**Table 4 Index size for different partitionings given multiple samples of POIs**\n\nDataset Algorithm #Nodes #Edges #Conn\n\nAlgorithm avg _σ_ avg _σ_ avg _σ_\n\nZurich RQ LO 421 4 4,173 47 456,913 7,206\nRQ LE 406 2 3,733 46 425,621 11,207\nRQ ME45 542 2 6,102 35 494,138 8,437\n\nBerlin RQ LO 1,834 8 54,988 283 2,385,623 7,103\nRQ LE 1,732 5 44,643 161 2,717,979 13,747\nRQ ME51 2,022 10 61,893 199 2,539,917 14,743\n\nSynthetic RQ LO 9,135 9 350,070 2,811 28,873,351 259,401\nRQ LE 8,122 7 163,449 1,982 13,646,302 173,456\nRQ ME36 7,375 2 24,594 61 1,420,407 7,379\nRQ ME44 11,423 18 1,281,986 5,555 78,219,714 205,325\n\n\n-----\n\nthat affect the index size (number of nodes, edges, and\nconnections). In Zurich and Berlin, the average number\nof nodes and edges using Leiden is the smallest. On the\nSynthetic dataset, METIS with 36 partitions outperforms all\nthe other partitioning algorithms for all values. The number\nof nodes varies across the samples due to a varying number\nof POIs that are border nodes. The standard deviation is\nbelow 2% for any of the values, indicating that the particular\nchoice of POIs does not have a large effect on the index\nsize.\n\n**7.4.3 Query Performance.**\n\nTo measure the effect of different partitioning techniques on\nthe querying performance, we count the number of edges\nthat RQ must expand for answering a reachability query.\nWe compare the indices constructed over the partitioning of\nLouvain, Leiden, and METIS.\nIn this experiment, we use the RQ index constructed for\none of the POI samples discussed in Section 7.4.2. All query\nnodes are border nodes. Since the different partitionings\nproduce different border nodes, we pick all border nodes\nthat exist in all partitionings as query nodes. For each query\nnode, we executed a total of 10 different reachability queries\nvarying the starting time (8:00, 12:00, 16:00, 18:00, 22:00)\nand time budget (60 and 120 minutes).\nThe results for our three input graphs are shown in Fig. 8.\nOn the y-axis we measure the relative difference of RQ\n\n**Fig. 8 Relative number of**\nexpanded edges w.r.t. NI\n(100%)\n\n\ncompared to no-index baseline NI (horizontal red line,\n100%). The data points are ordered along the x-axis by\nthe number of expanded edges, separately for each data\nseries. We evaluate Louvain (RQ LO), Leiden (RQ LE),\nand METIS (RQ MEk). The number k of partitions for\nMETIS is different for each dataset to approximately match\nthe number of partitions that Louvain and Leiden produce\nfor the respective setting (cf. Table 2).\nIn Zurich and Synthetic, all the three partitioning\ntechniques perfom similarly for most of the data points.\nLeiden (RQ LE) and Louvain (RQ LO) perform slightly\nworse than METIS (RQ MEk) for some of the data\npoints on the Berlin dataset. Independently of the chosen\npartitioning, RQ clearly outperforms the baseline NI on all\ndatesets: Except for a small number of outliers, the index\nconstructed using Leiden reduces the number of expanded\nedges by at least 55% for Zurich, 70% for Berlin, and 90%\nfor Synthetic.\n\n**7.4.4 Which Partitioning to Choose?**\n\nWe summarize our experimental findings and evaluate the\ndifferent partitioning techniques.\nLeiden outperforms Louvain with respect to the index\nsize. Given a similar number of partitions as Leiden and\nLouvain, (1) METIS produces more balanced partition\nsizes, but the partitions have more border nodes on average,\nand also (2) the index size (in particular the number of\n\n\n-----\n\n**Table 5 Index (RQ using Leiden partitioning)**\n\nDataset Algorithm #Nodes #Edges #Conn\n\nZurich RQ 406 3,733 425,621\n_SP_ 2,508 313,500 69,464,152\n_NI_ 2,508 5,630 555,713\n\nBerlin RQ 1,732 44,643 2,717,979\n_SP_ 12,984 8,426,616 874,897,430\n_NI_ 12,984 34,791 1,348,070\n\nSynthetic RQ 8,122 163,449 13,646,302\n_SP_ 145,188 1,053,919,692 225,337,275,212\n_NI_ 145,188 433,272 31,042,468\n\n\nconnections that dominates the index size) is smaller for\nLeiden than for METIS.\nIn terms of query performance, METIS is competitive\nwith the other approaches and in some cases slightly\noutperforms them. The catch is that the performance of\nMETIS depends on the parameter k, which is hard to choose\nwithout running experiments similar to the ones in our tests.\nThe parameters k so determined may not be valid for other\nnetworks or query loads.\nOverall we suggest to use the Leiden partitioning in\nconjunction with our RQ index.\n\n### 7.5 RQ vs. Competitors\n\nIn this section we compare RQ with its competitors\n_SP_ and NI . We use RQ with Leiden partitioning (as\nwe suggest in Section 7.4.4) for all experiments in this\nsection.\n\n**7.5.1 Index Size**\n\nWe compare the index size of RQ (with Leiden partitioning)\nto the index sizes of its competitors. Although NI does not\nrequire precomputation, the input graph has to be kept in\nmemory. In Table 5, we compare the index sizes (RQ, SP )\nto the input graph size (NI ).\n_RQ and SP precompute certain shortest paths and build_\nan index structure that is sufficient to answer reachability\nqueries. If the index of SP is stored as a graph, the\nindex nodes are identical to the input graph nodes (POIs\nare a subset of the input graph nodes), the number of\nindex edges is computed as #Nodes #POIs from the\n×\nnumber of input graph nodes and POIs (an edge is inserted\nbetween every node and every POI), and the number of\nindex connections results from computing a shortest path at\nevery departure time to every POI. For RQ the index size\ndepends on the position of the border nodes. We randomly\npick 5% of the input graph nodes as POIs and show the\n\n\naverage values for #Nodes, #Edges, and #Conn over five\nsamples.\nThe index size of RQ is always smaller than that of\n_SP_ (up to four orders of magnitude in the Synthetic\ngraph). RQ is also significantly smaller than the original\n_Zurich and Synthetic graphs (NI ). Although RQ_ has\nsignificantly fewer nodes and edges than the original graph\nfor Berlin, the number of connections is higher. This is\ncaused by the sparsity of Berlin (cf. Section 4.5). Finally,\n#Connections is the number of edge connections stored.\nFor RQ, we list the absolute number of connections after\nthe compaction (cf. Section 4.6). The reduction rate of\ncompaction is high: 74% for Zurich and Berlin, and 73% for\n_Synthetic._\nTable 6 shows the runtime to build our RQ index. The\nshortest path computations are executed in parallel on 20\ncores. For Zurich, the index builds in less than 2 min for\nLouvain, Leiden, and METIS. All runtimes for Berlin are\nbelow 30 min. For Synthetic, the index construction time\nfor METIS is only 7 min with 36 partitions, but 12 hrs\nwith 44 partitions. The high construction time for METIS\nwith 44 partitions is due to the poor partitioning and the\n\n**Table 6 Index construction time**\n\nDataset Algorithm Time (min)\n\nZurich RQ LO 0.7\nRQ LE 0.7\nRQ ME45 1.1\n\nBerlin RQ LO 26.3\nRQ LE 20.2\nRQ ME51 29.1\n\nSynthetic RQ LO 48.4\nRQ LE 25.6\nRQ ME36 7.2\nRQ ME44 720.4\n\n\n-----\n\n**Fig. 9 Number of expanded**\nedges (y-axis in log scale)\n\n**Fig. 10 Query time in ms**\n(y-axis in log scale)\n\n\n-----\n\nresulting high number of connections that require many\nshortest path computations (before compaction, there are\n292,883,908 connections, each resulting from one shortest\npath computation).\n\n**7.5.2 Performance of Query Answering**\n\nTo evaluate the efficiency, we compare the number of edges\nthat each algorithm has to process in order to find all\nreachable POIs (Fig. 9).\nIn this experiment, we use our RQ index constructed\nusing one of the samples discussed in Section 7.4.2. One\ndata point in the figure (scatter plot) is a single reachability\nquery. Data points are sorted along the x-axis by the number\nof expanded edges. We execute one reachability query\nstarting at every border node in our index. We do so at\nfive different start times (8:00, 12:00, 16:00, 18:00, 22:00)\nand for two time budgets (60 and 120 minutes). Thus, the\nnumber of data points is 10 #Border nodes. The budgets\n×\nare large enough to force RQ to traverse multiple edges.\nSince the edge costs of large cells in the RQ index are often\nabove 15 minutes (and above 30 minutes in about half of the\ncases), budgets near these values provide little insight. Since\nSP precomputes the path to each POI, it always evaluates\none edge per POI. This is a lower bound on the cost of any\npoint-to-point index. Although the index of SP is orders of\nmagnitude larger, RQ expands significantly fewer edges for\nmany of the data points. We observe the largest differences\nfor the budget of 120 min. On Synthetic, the number of\nedges expanded by RQ is up to three orders of magnitude\nlower than that of SP, and it is up to one order of magnitude\nlower than that of NI. RQ always expands fewer edges than\nNI. Values equal to zero indicate that an algorithm cannot\nexpand due to high connection costs.\nIn Fig. 10 we compare the query times of RQ and NI . We\nmeasure at the granularity of milliseconds, which results in\nruntime zero for very short query executions. As expected\nfrom the lower number of expanded edges, RQ outperforms\n_NI on almost all data points across the three datasets._\nOverall, our experiments show that, despite its small\nsize, RQ substantially reduces the number of expanded\nedges, and therefore speeds up reachability queries in public\ntransport networks.\n\n## 8 Conclusion\n\nThe paper offers improved support for reachability queries\nin temporal graphs that retrieve all reachable points of\ninterest (POIs) from a given query node at a specific start\ntime within a given time budget. We observe that current\nsolutions do not scale to large networks (solutions based\non Dijkstra’s algorithm without a pre-computed index) or\n\n\nto networks with many POIs (solutions based on an index\nfor single-path queries that must be executed for each\nPOI separately). We propose a solution based on a novel\naccess structure, the reachability index. This index partitions\nthe original temporal graph into cells, thus enabling us to\nexpand the graph cell by cell rather than edge by edge.\nWe evaluate different graph partitioning techniques and\nstudy the effect on index size and query performance. Our\nempirical evaluations suggest that our technique is both\neffective and efficient.\n\n**Acknowledgements This work was supported by Austrian Science**\nFund (FWF): W1237. We wish to thank Christine Gfrerer for her\nvaluable suggestions, as well as Alfred Egger and Manuel Kocher for\ntheir help with the experiments.\n\n**Funding Open access funding provided by Paris Lodron University**\nof Salzburg. Open access funding provided by Austrian Science Fund\n(FWF).\n\n**Open Access This article is licensed under a Creative Commons**\nAttribution 4.0 International License, which permits use, sharing,\nadaptation, distribution and reproduction in any medium or format, as\nlong as you give appropriate credit to the original author(s) and the\nsource, provide a link to the Creative Commons licence, and indicate\nif changes were made. The images or other third party material in this\narticle are included in the article’s Creative Commons licence, unless\nindicated otherwise in a credit line to the material. If material is not\nincluded in the article’s Creative Commons licence and your intended\nuse is not permitted by statutory regulation or exceeds the permitted\nuse, you will need to obtain permission directly from the copyright\n[holder. To view a copy of this licence, visit http://creativecommons.](http://creativecommons.org/licenses/by/4.0/)\n[org/licenses/by/4.0/.](http://creativecommons.org/licenses/by/4.0/)\n\n## References\n\nAmer-Yahia, S., Roy, S. B., Chawlat, A., Das, G., & Yu, C. (2009).\nGroup recommendation: Semantics and efficiency. Proceedings of\n_the VLDB Endowment, 2(1), 754–765._\nBast, H. (2009). Car or public transport - two worlds. In Efficient\n_algorithms: Essays dedicated to kurt mehlhorn on the occasion of_\n_his 60th birthday (pp. 355–367)._\nBast, H., Delling, D., Goldberg, A. V., M¨uller-Hannemann, M., Pajor,\nT., Sanders, P., Wagner, D., & Werneck, R.F. (2016). Route\nplanning in transportation networks. In Algorithm engineering:\n_Selected results and surveys (pp. 19–80)._\nBast, H., Hertel, M., & Storandt, S. (2016). Scalable transfer patterns.\nIn Proceedings of the meeting on algorithm engineering and\n_experiments (ALENEX) (pp. 15–29)._\nBauer, V., Gamper, J., Loperfido, R., Profanter, S., Putzer, S., &\nTimko, I. (2008). Computing isochrones in multi-modal, schedulebased transport networks. In Proceedings of the ACM SIGSPATIAL\n_international conference on advances in geographic information_\n_systems._\nBlondel, V. D., Guillaume, J.-L., Lambiotte, R., & Lefebvre, E. (2008).\nFast unfolding of communities in large networks. Journal of\n_Statistical Mechanics: Theory and Experiment, 2008(10)._\nCheng, J., Huang, S., Wu, H., & Fu, A.W. (2013). TF-Label: A\ntopological-folding labeling scheme for reachability querying in\na large graph. In Proceedings of the ACM SIGMOD international\n_conference on management of data (pp. 193–204)._\n\n\n-----\n\nCohen, E., Halperin, E., Kaplan, H., & Zwick, U. (2003). Reachability\nand distance queries via 2-hop labels. SIAM Journal on\n_Computing, 32(5), 1338–1355._\nDijkstra, E. W. (1959). A note on two problems in connexion with\ngraphs. Numerische Mathematik, 1, 269–271.\nGamper, J., B¨ohlen, M., Cometti, W., & Innerebner, M. (2011). Defining isochrones in multimodal spatial networks. In Proceedings of\n_the ACM international conference on information and knowledge_\n_management (CIKM) (pp. 2381–2384)._\nGeisberger, R. (2010). Contraction of timetable networks with realistic\ntransfers. In Proceedings of the international symposium on\n_experimental algorithms (pp. 71–82)._\nJameson, A., & Smyth, B. (2007). Recommendation to groups. In\n_The adaptive web: Methods and strategies of web personalization_\n(pp. 596–627).\nJin, R., & Wang, G. (2013). Simple, fast, and scalable reachability\noracle. Proceedings of the VLDB Endowment, 6(14), 1978–1989.\nKarypis, G., & Kumar, V. (1998). A fast and high quality multilevel\nscheme for partitioning irregular graphs. SIAM Journal on\n_Scientific Computing, 20(1), 359–392._\nKarypis, G., & Kumar, V. (1998). Multilevel k-way partitioning\nscheme for irregular graphs. Journal of Parallel and Distributed\n_Computing, 48(1), 96–129._\nKaufmann, D. E., & Smith, R. L. (1993). Fastest paths in timedependent networks for intelligent vehicle-highway systems\napplication. Journal of Intelligent Transportation Systems, 1(1),\n1–11.\nNewman, M. E. J., & Girvan, M. (2004). Finding and evaluating\ncommunity structure in networks. Physical Review E, 69, 026113.\nSeufert, S., Anand, A., Bedathur, S. J., & Weikum, G. (2013).\nFERRARI: Flexible and efficient reachability range assignment\nfor graph indexing. In Proceedings of the IEEE international\n_conference on data engineering (ICDE) (pp. 1009–1020)._\nStrasser, B. (2016). Intriguingly simple and efficient time-dependent\n[routing in road networks. arXiv:1606.06636.](http://arxiv.org/abs/1606.06636)\nTesfaye, B., & Augsten, N. (2016). Reachability queries in public\ntransport networks. In Proceedings of the 28th GI-Workshop\n_Grundlagen von Datenbanken, N¨orten Hardenberg, Germany,_\n_May 24-27, 2016, (Vol. 1594 pp. 109–114)._\nTesfaye, B., Augsten, N., Pawlik, M., B¨ohlen, M. H., & Jensen,\nC.S. (2020). An efficient index for reachability queries in public\ntransport networks. In Advances in databases and information\n_systems - 24th european conference, ADBIS 2020, lyon, france,_\n_august 25-27, 2020, proceedings, (Vol. 12245 pp. 34–48)._\nTraag, V. A., Waltman, L., & van Eck, N.J. (2019). From louvain\nto leiden: guaranteeing well-connected communities. Nature\n_scientific reports 9._\n\n\nWang, S., Lin, W., Yang, Y., Xiao, X., & Zhou, S. (2015). Efficient\nroute planning on public transportation networks A labelling\napproach. In Proceedings of the ACM SIGMOD international\n_conference on management of data (pp. 967–982)._\nWu, H., Huang, Y., Cheng, J., Li, J., & Ke, Y. (2016). Reachability\nand time-based path queries in temporal graphs. In Proceedings\n_of the IEEE international conference on data engineering (ICDE)_\n(pp. 145–156).\n[Zurich, & Berlin (2020). GTFS. https://data.stadt-zuerich.ch/dataset/](https://data.stadt-zuerich.ch/dataset/vbz_fahrplandaten_gtfs)\n[vbz fahrplandaten gtfs,](https://data.stadt-zuerich.ch/dataset/vbz_fahrplandaten_gtfs) [https://daten.berlin.de/datensaetze/](https://daten.berlin.de/datensaetze/vbb-fahrplandaten-gtfs)\n[vbb-fahrplandaten-gtfs, Accessed January 31, 2020.](https://daten.berlin.de/datensaetze/vbb-fahrplandaten-gtfs)\n\n**Publisher’s Note Springer Nature remains neutral with regard to**\njurisdictional claims in published maps and institutional affiliations.\n\n**Bezaye Tesfaye is a PhD candidate within the Database research**\ngroup at the University of Salzburg. She received her MSc degree\nin Geoinformatics from University of Twente in 2013. Her research\ninterests include efficient path queries in graphs and extension of\nspatio-temporal databases. She is part of the European Software\nSustainability Infrastructure (EuSSI) consortium, and is a member of\ndeRSE (German Research Software Engineers association). She is also\na software carpentry instructor.\n\n**Nikolaus Augsten is a full professor in the Department of Computer**\nScience at the University of Salzburg, where he heads the Database\nGroup. He received his PhD degree in Computer Science from Aalborg\nUniversity, Denmark, in 2008, and holds a MSc degree (Dipl.-Ing.)\nfrom Graz University of Technology, Austria. Prior to joining the\nUniversity of Salzburg in 2013, he was an assistant professor at\nthe Free University of Bozen-Bolzano, Italy. He was on leave at\nTU M¨uchen, Germany, in 2010/2011 and visited Washington State\nUniversity in 2005/2006. In his research, Augsten deals with technical\nissues of efficiently storing, updating, and querying large amounts\nof data. He is particularly interested in similarity queries, which\ndo not require an exact match but allow some degree of fuzziness.\nHis research is motivated by concrete applications and results in\nnew algorithms that are implemented and tested on the motivating\napplication. The results of his research were published in the most\nprestigious outlets of the database field. For his work on top-k\nqueries over tree data he received the Best Paper Award at the\nIEEE International Conference on Data Engineering in 2010. Augsten\nregularly serves on the program committee of the most important\ninternational database conferences and was an associate editor of the\nVLDB Journal.\n\n\n-----\n\n**Mateusz Pawlik is a senior scientist at the University of Salzburg and a**\nmember of the Database Research Group and the Centre for Cognitive\nNeuroscience. He received his PhD degree in Computer Science in\n2014 from the University of Bozen/Bolzano (Italy), and his MSc\ndegree from Adam Mickiewicz University in Pozna´n (Poland). His\nresearch interests span similarity of tree-structured data, reachability\nin public transport networks, and recently efficient management of\nneuroscientific data. His research results appeared in the top outlets\nof the databases community. Pawlik is the main developer of the Tree\n[Similarity Library (http://tree-edit-distance.dbresearch.uni-salzburg.](http://tree-edit-distance.dbresearch.uni-salzburg.at/)\n[at/).](http://tree-edit-distance.dbresearch.uni-salzburg.at/)\n\n**Michael H. B¨ohlen is a professor of computer science at the University**\nof Z¨urich where he heads the database technology group. His research\nfocuses on temporal data management and analytics, including query\nprocessing and indexing, statistical data management, and machine\nlearning. He received his Ph.D. degree from ETH Z¨urich and was\na faculty member at Aalborg University and the Free University of\nBozen-Bolzano. He served as Program Chair for VLDB 2013, EDBT\n2018 and SSDBM 2018, was a member of the VLDB Endowment’s\nBoard of Trustees, and served as associate editor for ACM TODS and\nthe VLDB Journal.\n\n**Christian S. Jensen is Professor of Computer Science at Aalborg**\nUniversity, Denmark. His research focuses on temporal and spatiotemporal data management and analytics, including machine learning,\ndata mining, and query processing. He is an ACM and IEEE Fellow,\nand he is a member of Academia Europaea, the Royal Danish\nAcademy of Sciences and Letters, and the Danish Academy of\nTechnical Sciences. He has received several awards for his research,\nmost recently the 2019 IEEE TCDE Impact Award. He is President of\nthe steering committee of the Swiss National Research Program on Big\nData. In Germany, he serves on the scientific advisory board the Max\nPlanck Institute for Informatics; and in Norway, he chairs the Scientific\nAdvisory Board of the Norwegian Research Center for AI Innovation.\n\n\n-----\n\n"
{ "disclaimer": "Notice: Paper or abstract available at https://pmc.ncbi.nlm.nih.gov/articles/PMC8924103, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": "CCBY", "status"...
2,021
[ "JournalArticle" ]
true
2021-08-14T00:00:00
[ { "paperId": "569a78c7022336ab8dd84d749d4ab1a2e3453cd0", "title": "An Efficient Index for Reachability Queries in Public Transport Networks" }, { "paperId": "79cdbabb22ef80074f5659430fe6fc97932798f5", "title": "From Louvain to Leiden: guaranteeing well-connected communities" }, { "paperI...
18,175
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Engineering", "source": "s2-fos-model" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08aa78a8926b7d85d2a136527b2a9ffa34f71df4
[ "Computer Science" ]
0.884297
A Novel Bearing Fault Diagnosis Method Using Spark-Based Parallel ACO-K-Means Clustering Algorithm
08aa78a8926b7d85d2a136527b2a9ffa34f71df4
IEEE Access
[ { "authorId": "2053671015", "name": "Lanjun Wan" }, { "authorId": "2116290457", "name": "Gen Zhang" }, { "authorId": "46381640", "name": "Hongyang Li" }, { "authorId": "1391213354", "name": "Changyun Li" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": [ "http://ieeexplore.ieee.org/servlet/opac?punumber=6287639" ], "id": "2633f5b2-c15c-49fe-80f5-07523e770c26", "issn": "2169-3536", "name": "IEEE Access", "type": "journal", "url": "http://www.ieee.org/publications_standards/publ...
K-Means clustering algorithm is a typical unsupervised learning method, and it has been widely used in the field of fault diagnosis. However, the traditional serial K-Means clustering algorithm is difficult to efficiently and accurately perform clustering analysis on the massive running-state monitoring data of rolling...
Received January 31, 2021, accepted February 9, 2021, date of publication February 12, 2021, date of current version February 23, 2021. _Digital Object Identifier 10.1109/ACCESS.2021.3059221_ # A Novel Bearing Fault Diagnosis Method Using Spark-Based Parallel ACO-K-Means Clustering Algorithm LANJUN WAN 1,2, GEN ZHAN...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.1109/ACCESS.2021.3059221?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1109/ACCESS.2021.3059221, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the ...
2,021
[ "JournalArticle" ]
true
null
[ { "paperId": "54317098bb142b9fb3d54047e138adfe0866938c", "title": "Ant Colony Optimization" }, { "paperId": "412204889bd1f256bc86ab1b73a2fe3d2d7d2150", "title": "Rolling-Element Bearing Fault Diagnosis Using Improved LeNet-5 Network" }, { "paperId": "17cd46b7ff7d132cba7f204853d77bd9e4f95...
19,499
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" }, { "category": "Environmental Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08af3ca12510cbf7b685f7b7d0bd9d2fc96d5de0
[ "Computer Science" ]
0.896287
Towards continuous policy-driven demand response in data centers
08af3ca12510cbf7b685f7b7d0bd9d2fc96d5de0
GreenNets '11
[ { "authorId": "145633019", "name": "David E. Irwin" }, { "authorId": "3233107", "name": "Navin Sharma" }, { "authorId": "2172702597", "name": "Prashant J. Shenoy" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
null
# Towards Continuous Policy-driven Demand Response in Data Centers ## David Irwin, Navin Sharma, and Prashant Shenoy ### University of Massachusetts, Amherst ## {irwin,nksharma,shenoy}@cs.umass.edu ## ABSTRACT Demand response (DR) is a technique for balancing electricity supply and demand by regulating power consum...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'abstract', 'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1145/2018536.2018541?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1145/2018536.2018541, which is subject to the license by the author or ...
2,011
[]
true
2011-08-19T00:00:00
[]
9,116
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Environmental Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" }, { "category": "Busin...
https://www.semanticscholar.org/paper/08af7ea508f9c51d0b8e25e1e27a37d6a1ab7012
[ "Computer Science" ]
0.904881
Blockchain-Powered Value Creation in the 5G and Smart Grid Use Cases
08af7ea508f9c51d0b8e25e1e27a37d6a1ab7012
IEEE Access
[ { "authorId": "32522542", "name": "Kristiina Valtanen" }, { "authorId": "35774675", "name": "J. Backman" }, { "authorId": "2741612", "name": "Seppo Yrjölä" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": [ "http://ieeexplore.ieee.org/servlet/opac?punumber=6287639" ], "id": "2633f5b2-c15c-49fe-80f5-07523e770c26", "issn": "2169-3536", "name": "IEEE Access", "type": "journal", "url": "http://www.ieee.org/publications_standards/publ...
Before the implementation of a solution, it is cost-efficient and practical to be able to evaluate and analyze the expected value of use cases. Especially, this is emphasized in blockchain (BC) use cases, which typically have a wide business ecosystem and possibly disruptive business models. This paper presents two BC ...
Received January 11, 2019, accepted January 28, 2019, date of publication February 21, 2019, date of current version March 8, 2019. _Digital Object Identifier 10.1109/ACCESS.2019.2900514_ # Blockchain-Powered Value Creation in the 5G and Smart Grid Use Cases KRISTIINA VALTANEN 1, JERE BACKMAN1, AND SEPPO YRJÖLÄ 2 1...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.1109/ACCESS.2019.2900514?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1109/ACCESS.2019.2900514, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the ...
2,019
[ "JournalArticle" ]
true
2019-02-21T00:00:00
[ { "paperId": "7a916f5e028e00a482486ffc2e2d2a82516ead8c", "title": "Smart contracts" }, { "paperId": "9be6636e7822fdfd84a4d91b1605b8936f765d48", "title": "Creating value through blockchain powered resource configurations: Analysis of 5G network slice brokering case" }, { "paperId": "0d865...
19,800
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Environmental Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08afff48ce7b581f0a6b942c71028b93a2a30f3b
[ "Computer Science" ]
0.843148
A Machine Learning-Based Anomaly Detection Method and Blockchain-Based Secure Protection Technology in Collaborative Food Supply Chain
08afff48ce7b581f0a6b942c71028b93a2a30f3b
Int. J. e Collab.
[ { "authorId": "2115867889", "name": "Yuh-Min Chen" }, { "authorId": "2709121", "name": "Tsung-Yi Chen" }, { "authorId": "2410312", "name": "Jyun-Sian Li" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
The complexity of the collaborative food supply chain has resulted in the frequent occurrence of food safety incidents, which harm people's health and life. Therefore, the maintenance of food safety has become a key value. This study expects to solve the food safety problem and bring more benefits to people using intel...
Volume 19 Issue 1 # A Machine Learning-Based Anomaly Detection Method and Blockchain- Based Secure Protection Technology in Collaborative Food Supply Chain Yuh-Min Chen, National Cheng Kung University, Taiwan Tsung-Yi Chen, Nanhua University, Taiwan* Jyun-Sian Li, National Cheng Kung University, Taiwan **ABSTRACT*...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.4018/ijec.315789?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.4018/ijec.315789, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copy...
2,023
[ "JournalArticle" ]
true
2023-01-06T00:00:00
[ { "paperId": "84a7897cf8542b097d7ceff6e9daa6d97b4ad952", "title": "A Survey on Anomaly Detection for Technical Systems using LSTM Networks" }, { "paperId": "e67a7932041679afb5aa5893a09c40e2d126c6c5", "title": "Forecasting and Anomaly Detection approaches using LSTM and LSTM Autoencoder technique...
17,545
en
[ { "category": "Mathematics", "source": "external" }, { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Mathematics", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08b2f7e7748d92ab9399e76191b2e9d8424a00bd
[ "Mathematics", "Computer Science" ]
0.806816
Roots of Square: Cryptanalysis of Double-Layer Square and Square+
08b2f7e7748d92ab9399e76191b2e9d8424a00bd
Post-Quantum Cryptography
[ { "authorId": "1799312", "name": "Enrico Thomae" }, { "authorId": "145447416", "name": "Christopher Wolf" } ]
{ "alternate_issns": null, "alternate_names": [ "PQCrypto", "Post-quantum Cryptogr" ], "alternate_urls": null, "id": "5dfe770f-9a03-43e4-aade-935a79ae6428", "issn": null, "name": "Post-Quantum Cryptography", "type": "conference", "url": null }
null
# Roots of Square: Cryptanalysis of Double-Layer Square and Square+ Full Version Enrico Thomae, Christopher Wolf Horst Görtz Institute for IT-security Faculty of Mathematics Ruhr-University of Bochum, 44780 Bochum, Germany http://www.cits.rub.de/ {enrico.thomae, christopher.wolf}@rub.de, chris@christopher-wolf.de S...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'abstract', 'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1007/978-3-642-25405-5_6?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1007/978-3-642-25405-5_6, which is subject to the license by the au...
2,011
[ "JournalArticle" ]
false
2011-11-29T00:00:00
[]
17,738
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08b325753608472bca568d1fb04ed140fb4e9d9f
[ "Computer Science" ]
0.864458
CryptoSolve: Towards a Tool for the Symbolic Analysis of Cryptographic Algorithms
08b325753608472bca568d1fb04ed140fb4e9d9f
International Symposium on Games, Automata, Logics and Formal Verification
[ { "authorId": "2185556288", "name": "Dalton Chichester" }, { "authorId": "2072591344", "name": "W. Du" }, { "authorId": "2185477751", "name": "Raymond Kauffman" }, { "authorId": "153803419", "name": "Hai Lin" }, { "authorId": "2064382323", "name": "Christopher...
{ "alternate_issns": null, "alternate_names": [ "GandALF", "Int Symp Game Autom Log Form Verification" ], "alternate_urls": null, "id": "a1f603b7-c07f-40e0-82a7-38d089d8e34c", "issn": null, "name": "International Symposium on Games, Automata, Logics and Formal Verification", "type": "conference"...
Recently, interest has been emerging in the application of symbolic techniques to the specification and analysis of cryptosystems. These techniques, when accompanied by suitable proofs of soundness/completeness, can be used both to identify insecure cryptosystems and prove sound ones secure. But although a number of su...
# CryptoSolve: Towards a Tool for the Symbolic Analysis of Cryptographic Algorithms ### Dalton Chichester University of Mary Washington, Fredericksburg, VA, USA ``` dchiches@mail.umw.edu ### Wei Du ``` University at Albany–SUNY, Albany, NY, USA[[][0000][−][0002][−][9149][−][6229][]] ``` ...
{ "disclaimer": "Notice: Paper or abstract available at https://arxiv.org/abs/2209.10321, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": "CCBYNCND", "status": "GOLD", ...
2,022
[ "JournalArticle" ]
true
2022-09-20T00:00:00
[ { "paperId": "1fb1a16e2fe3f26363bbdd7b962e96495217acff", "title": "A Complete Characterization of Security for Linicrypt Block Cipher Modes" }, { "paperId": "ffa9c29fab51cc701bb7932841d50fd036311293", "title": "Characterizing Collision and Second-Preimage Resistance in Linicrypt" }, { "p...
13,196
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08b409a3c3d72c1ce1fe2f6db0928c0bdec58693
[ "Computer Science" ]
0.832657
SoftTreeMax: Policy Gradient with Tree Search
08b409a3c3d72c1ce1fe2f6db0928c0bdec58693
arXiv.org
[ { "authorId": "2801905", "name": "Gal Dalal" }, { "authorId": "21062872", "name": "Assaf Hallak" }, { "authorId": "1712535", "name": "Shie Mannor" }, { "authorId": "1732280", "name": "Gal Chechik" } ]
{ "alternate_issns": null, "alternate_names": [ "ArXiv" ], "alternate_urls": null, "id": "1901e811-ee72-4b20-8f7e-de08cd395a10", "issn": "2331-8422", "name": "arXiv.org", "type": null, "url": "https://arxiv.org" }
Policy-gradient methods are widely used for learning control policies. They can be easily distributed to multiple workers and reach state-of-the-art results in many domains. Unfortunately, they exhibit large variance and subsequently suffer from high-sample complexity since they aggregate gradients over entire trajecto...
## SOFTTREEMAX: POLICY GRADIENT WITH TREE SEARCH **Gal Dalal[∗], Assaf Hallak[∗], Shie Mannor, Gal Chechik** NVIDIA Research Israel gdalal,ahallak,smannor,gchechik @nvidia.com _{_ _}_ #### ABSTRACT Policy-gradient methods are widely used for learning control policies. They can be easily distributed to multiple wor...
{ "disclaimer": "Notice: Paper or abstract available at https://arxiv.org/abs/2209.13966, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": null, "status": "GREEN", "url"...
2,022
[ "JournalArticle" ]
true
2022-09-28T00:00:00
[ { "paperId": "06f19b42e61e1bbfc09c4f07f22de6e447bf92f7", "title": "An Improved Analysis of (Variance-Reduced) Policy Gradient and Natural Policy Gradient Methods" }, { "paperId": "4c96156ad9561006c1528ec8ead5d9d3103669a9", "title": "Planning and Learning with Adaptive Lookahead" }, { "pa...
6,334
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08b6d762747d881fd7c68783666985cb54e4d0db
[ "Computer Science" ]
0.849539
POSEIDON: Privacy-Preserving Federated Neural Network Learning
08b6d762747d881fd7c68783666985cb54e4d0db
Network and Distributed System Security Symposium
[ { "authorId": "40409722", "name": "Sinem Sav" }, { "authorId": "2890302", "name": "Apostolos Pyrgelis" }, { "authorId": "1398987134", "name": "J. Troncoso-Pastoriza" }, { "authorId": "3443143", "name": "David Froelicher" }, { "authorId": "1704265312", "name": ...
{ "alternate_issns": null, "alternate_names": [ "Netw Distrib Syst Secur Symp", "NDSS" ], "alternate_urls": null, "id": "e6904c24-9546-4135-8344-e3999e375558", "issn": null, "name": "Network and Distributed System Security Symposium", "type": "conference", "url": "http://www.isoc.org/" }
In this paper, we address the problem of privacy-preserving training and evaluation of neural networks in an $N$-party, federated learning setting. We propose a novel system, POSEIDON, the first of its kind in the regime of privacy-preserving neural network training, employing multiparty lattice-based cryptography and ...
# POSEIDON: Privacy-Preserving Federated Neural Network Learning ## Sinem Sav, Apostolos Pyrgelis, Juan Ramón Troncoso-Pastoriza, David Froelicher, Jean-Philippe Bossuat, Joao Sa Sousa, and Jean-Pierre Hubaux Laboratory for Data Security, EPFL e-mail: name.surname@epfl.ch **_Abstract—In_** **this** **paper,** **we...
{ "disclaimer": "Notice: Paper or abstract available at https://arxiv.org/abs/2009.00349, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": null, "status": "BRONZE", "url...
2,020
[ "JournalArticle", "Conference" ]
true
2020-09-01T00:00:00
[ { "paperId": "d05ca322b6cba43bffd913838128b3d2ff7f390c", "title": "Top Applications of Deep Learning Across Industries" }, { "paperId": "064455ab95783c2dfd161bfa3b41475d84e5c608", "title": "Delphi: A Cryptographic Inference Service for Neural Networks" }, { "paperId": "3c847fb53229a51dd7...
38,022
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Education", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08b96993d16e088247b7b31595b7d2a670aa9a47
[ "Computer Science" ]
0.914609
Teaching tools for parallel processing
08b96993d16e088247b7b31595b7d2a670aa9a47
[ { "authorId": "2658834", "name": "E. Milovanovic" }, { "authorId": "31251133", "name": "N. Stojanovic" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
Because many universities lack the funds to purchase expensive parallel computers, cost effective alternatives are needed to teach students about parallel processing. Free software is available to support the three major paradigms of parallel computing. Parallaxis is a sophisticated SIMD simulator which runs on a varie...
FACTA UNIVERSITATIS (NI S)[ˇ] SER.: ELEC. ENERG. vol. 18, No. 2, August 2005, 219-224 # Teaching tools for parallel processing **Emina I. Milovanovi´c and Natalija M. Stojanovi´c** **Abstract: Because many universities lack the funds to purchase expensive parallel** computers, cost effective alternatives are needed ...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.2298/FUEE0502219M?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.2298/FUEE0502219M, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and co...
2,005
[]
true
null
[ { "paperId": "5b9cc3a1825e6e913ced90a0f723afc811d99ffc", "title": "PVM: Parallel virtual machine: a users' guide and tutorial for networked parallel computing" }, { "paperId": "97bdc2a7cab5f43699b101dec6cc6764cd747fe0", "title": "MPI: The Complete Reference" } ]
3,147
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08ba7a21624b5ca401f9bbb51f4af1ff1ec0e76c
[ "Computer Science" ]
0.908095
Distributed consensus in the presence of sectional faults
08ba7a21624b5ca401f9bbb51f4af1ff1ec0e76c
ACM SIGACT-SIGOPS Symposium on Principles of Distributed Computing
[ { "authorId": "2396100", "name": "S. Amitanand" }, { "authorId": "2716107", "name": "I. Sanketh" }, { "authorId": "3052515", "name": "K. Srinathan" }, { "authorId": "1749858", "name": "V. Vaikuntanathan" }, { "authorId": "6060244", "name": "C. Rangan" } ]
{ "alternate_issns": null, "alternate_names": [ "PODC", "Princ Distrib Comput", "Principles of Distributed Computing", "ACM SIGACT-SIGOPS Symp Princ Distrib Comput" ], "alternate_urls": null, "id": "cce4d150-8211-4378-a9ef-a234ec19414c", "issn": null, "name": "ACM SIGACT-SIGOPS Symposium o...
null
# Distributed Consensus in the Presence of Sectional Faults ## S. Amitanand" I. Sanketh- K. Srinathant* V. Vinod* C. Pandu Rangan~* ABSTRACT sensus in the above scenario was indeed possible if (and only if) the players P1, Pa and Pa belonged to a single LAN in Consider a synchronous network of n players, each with...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'references', 'abstract'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1145/872035.872065?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1145/872035.872065, which is subject to the license by the author or copy...
2,003
[ "JournalArticle" ]
true
2003-07-13T00:00:00
[]
13,506
en
[ { "category": "Environmental Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" }, { "category": "Economics", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08bc415192f9a3652a837721795ec25df8225264
[]
0.886827
Comprehensive analysis of integrating smart grids with renewable energy sources: Technological advancements, economic impacts, and policy frameworks
08bc415192f9a3652a837721795ec25df8225264
Engineering Science &amp; Technology Journal
[ { "authorId": "2312837187", "name": "Nwankwo Charles Uzondu" }, { "authorId": "2312836976", "name": "Dominic Dummene Lele" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
This study presents a comprehensive analysis of integrating smart grids with renewable energy sources, focusing on technological advancements, economic impacts, and policy frameworks. The primary objective is to explore how smart grid technologies can efficiently incorporate renewable energy sources, thereby enhancing ...
OPEN ACCESS Engineering Science & Technology Journal P-ISSN: 2708-8944, E-ISSN: 2708-8952 Volume 5, Issue 7, P.No. 2334-2363, July 2024 DOI: 10.51594/estj.v5i7.1347 Fair East Publishers Journal Homepage: www.fepbl.com/index.php/estj # Comprehensive analysis of integrating smart grids with renewable energy sources: ...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.51594/estj.v5i7.1347?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.51594/estj.v5i7.1347, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license ...
2,024
[ "JournalArticle" ]
true
2024-07-24T00:00:00
[]
21,287
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08bd59d5c3d778548b886f919a7782fb1e2c9ebd
[ "Computer Science" ]
0.890557
OAuth 2.0 meets Blockchain for Authorization in Constrained IoT Environments
08bd59d5c3d778548b886f919a7782fb1e2c9ebd
World Forum on Internet of Things
[ { "authorId": "1692550", "name": "V. Siris" }, { "authorId": "49637285", "name": "Dimitrios Dimopoulos" }, { "authorId": "2277552", "name": "N. Fotiou" }, { "authorId": "34777450", "name": "Spyros Voulgaris" }, { "authorId": "1720651", "name": "George C. Polyz...
{ "alternate_issns": null, "alternate_names": [ "WF-IoT", "World Forum Internet Thing" ], "alternate_urls": null, "id": "8ba56476-c1c5-4591-8422-2f222f234589", "issn": null, "name": "World Forum on Internet of Things", "type": "conference", "url": null }
We present models for utilizing blockchain and smart contract technology with the widely used OAuth 2.0 open authorization framework to provide delegated authorization for constrained IoT devices. The models involve different trade-offs in terms of privacy, delay, and cost, while exploiting key advantages of blockchain...
# OAuth 2.0 meets Blockchain for Authorization in Constrained IoT Environments ### Vasilios A. Siris, Dimitrios Dimopoulos, Nikos Fotiou, Spyros Voulgaris, George C. Polyzos Mobile Multimedia Laboratory, Department of Informatics School of Information Sciences & Technology Athens University of Economics and Business, ...
{ "disclaimer": "Notice: Paper or abstract available at https://arxiv.org/abs/1905.01665, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": null, "status": "GREEN", "url"...
2,019
[ "JournalArticle" ]
true
2019-04-01T00:00:00
[ { "paperId": "d43d2ce0daaa29da082c0c8be84e61a716d0dbb0", "title": "Authentication and Authorization for Constrained Environments (ACE) using the OAuth 2.0 Framework (ACE-OAuth)" }, { "paperId": "f878147e16c4ecf5c92b3ccb0a06632f845a715e", "title": "Proof-of-Possession Key Semantics for CBOR Web T...
5,931
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Mathematics", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Mathematics", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08bdbb6ac8ec157959004c0c9c46187b5759a5cb
[ "Computer Science", "Mathematics" ]
0.862725
Executions in (Semi-)Integer Petri Nets are Compact Closed Categories
08bdbb6ac8ec157959004c0c9c46187b5759a5cb
QPL
[ { "authorId": "40175148", "name": "F. Genovese" }, { "authorId": "46173668", "name": "Jelle Herold" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
In this work, we analyse Petri nets where places are allowed to have a negative number of tokens. For each net we build its correspondent category of executions, which is compact closed, and prove that this procedure is functorial. We moreover exhibit that a procedure to recover the original net from its category of ex...
## Executions in (Semi-)Integer Petri Nets are Compact Closed Categories #### Fabrizio Genovese Statebox Team ``` fabrizio@statebox.io University of Oxford fabrizio.genovese@cs.ox.ac.uk ``` #### Jelle Herold Statebox Team ``` jelle@statebox.io ``` In this work, we analyse Petri nets where places are allowed to...
{ "disclaimer": "Notice: Paper or abstract available at https://arxiv.org/abs/1805.05988, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": "CCBYNCND", "status": "GOLD", ...
2,018
[ "JournalArticle" ]
true
2018-05-15T00:00:00
[ { "paperId": "dc6c8e1dcd65eb8be18a111f76560c5abb0a6533", "title": "Picturing Quantum Processes: A First Course in Quantum Theory and Diagrammatic Reasoning" }, { "paperId": "aec843c0f38aff6c7901391a75ec10114a3d60f8", "title": "A Survey of Attacks on Ethereum Smart Contracts (SoK)" }, { "...
18,951
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08bfcb5a5f5486bf663b472af8f7bd94bb368b36
[ "Computer Science" ]
0.881795
Fabricated Flips: Poisoning Federated Learning without Data
08bfcb5a5f5486bf663b472af8f7bd94bb368b36
Dependable Systems and Networks
[ { "authorId": "1491248137", "name": "Jiyue Huang" }, { "authorId": "1490772257", "name": "Zilong Zhao" }, { "authorId": "14672072", "name": "L. Chen" }, { "authorId": "1759908", "name": "Stefanie Roos" } ]
{ "alternate_issns": null, "alternate_names": [ "DSN", "Dependable Syst Netw" ], "alternate_urls": null, "id": "7f03ba38-4bb4-41a3-a6d7-914c28f84272", "issn": null, "name": "Dependable Systems and Networks", "type": "conference", "url": "http://www.dsn.org/" }
Attacks on Federated Learning (FL) can severely reduce the quality of the generated models and limit the usefulness of this emerging learning paradigm that enables on-premise decentralized learning. However, existing untargeted attacks are not practical for many scenarios as they assume that i) the attacker knows every...
# Fabricated Flips: Poisoning Federated Learning without Data ### Jiyue Huang, Zilong Zhao, Lydia Y. Chen, Stefanie Roos TU Delft, The Netherlands. {J.Huang-4, Z.Zhao-8, Y.Chen-10, S.Roos}@tudelft.nl **_Abstract—Attacks on Federated Learning (FL) can severely_** **reduce the quality of the generated models and limit...
{ "disclaimer": "Notice: Paper or abstract available at https://arxiv.org/abs/2202.05877, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": "other-oa", "status": "GREEN", ...
2,022
[ "JournalArticle", "Conference" ]
true
2022-02-07T00:00:00
[ { "paperId": "df415323353b9344154b966949b70e3bd7c4cad9", "title": "Towards Efficient Data Free Blackbox Adversarial Attack" }, { "paperId": "55d5d31f76cb3bca7abf596e10dc91e1157b284f", "title": "FL-WBC: Enhancing Robustness against Model Poisoning Attacks in Federated Learning from a Client Persp...
21,607
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08c0406027a8ef257cb7c8ad0a58fe927ab086a7
[ "Computer Science" ]
0.87018
Moving Smart Contracts - A Privacy Preserving Method for Off-Chain Data Trust
08c0406027a8ef257cb7c8ad0a58fe927ab086a7
arXiv.org
[ { "authorId": "2006105", "name": "Simon Tschirner" }, { "authorId": "2165469477", "name": "Shashank Shekher Tripathi" }, { "authorId": "15407569", "name": "Mathias Roeper" }, { "authorId": "2071188234", "name": "Markus M. Becker" }, { "authorId": "2090849498", ...
{ "alternate_issns": null, "alternate_names": [ "ArXiv" ], "alternate_urls": null, "id": "1901e811-ee72-4b20-8f7e-de08cd395a10", "issn": "2331-8422", "name": "arXiv.org", "type": null, "url": "https://arxiv.org" }
Blockchains provide environments where parties can interact transparently and securely peer-to-peer without needing a trusted third party. Parties can trust the integrity and correctness of transactions and the verifiable execution of binary code on the blockchain (smart contracts) inside the system. Including informat...
## Moving Smart Contracts – A Privacy Preserving Method for Off-Chain Data Trust #### Simon Tschirner, Shashank Shekher Tripathi, Mathias Röper, Markus M. Becker and Volker Skwarek **_Abstract—Blockchains provide environments where parties_** **can interact transparently and securely peer-to-peer without** **needing...
{ "disclaimer": "Notice: Paper or abstract available at https://arxiv.org/abs/2205.08440, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": null, "status": "GREEN", "url"...
2,022
[ "JournalArticle" ]
true
2022-05-17T00:00:00
[ { "paperId": "463504ed2cc439bd44d297b6a667da74b51017e6", "title": "Efficient Data Interaction of Blockchain Smart Contract with Oracle Mechanism" }, { "paperId": "21ace599d237ff3d6d20608e4bf78240c96705f3", "title": "Reliability analysis for blockchain oracles" }, { "paperId": "3c1c104b79...
20,007
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08c09a27eeff5e90f117e0d5cc3e8fe38527636e
[ "Computer Science" ]
0.899379
PANDA: Extreme Scale Parallel K-Nearest Neighbor on Distributed Architectures
08c09a27eeff5e90f117e0d5cc3e8fe38527636e
IEEE International Parallel and Distributed Processing Symposium
[ { "authorId": "8176660", "name": "Md. Mostofa Ali Patwary" }, { "authorId": "143758120", "name": "N. Satish" }, { "authorId": "1789372", "name": "N. Sundaram" }, { "authorId": "48211557", "name": "Jialin Liu" }, { "authorId": "47696458", "name": "Peter Sadowsk...
{ "alternate_issns": null, "alternate_names": [ "IEEE Int Parallel Distrib Process Symp", "International Parallel and Distributed Processing Symposium", "IPDPS", "Int Parallel Distrib Process Symp" ], "alternate_urls": null, "id": "7bb54772-a70c-44df-9b9d-9f3b5354c0e2", "issn": null, "name...
Computing k-Nearest Neighbors (KNN) is one of the core kernels used in many machine learning, data mining and scientific computing applications. Although kd-tree based O(log n) algorithms have been proposed for computing KNN, due to its inherent sequentiality, linear algorithms are being used in practice. This limits t...
## PANDA: Extreme Scale Parallel K-Nearest Neighbor on Distributed Architectures ### Md. Mostofa Ali Patwary[1][,][†], Nadathur Rajagopalan Satish[1], Narayanan Sundaram[1], Jialin Liu[2], Peter Sadowski[3], Evan Racah[2], Suren Byna[2], Craig Tull[2], Wahid Bhimji[2], Prabhat[2], Pradeep Dubey[1] 1Intel Corporation...
{ "disclaimer": "Notice: Paper or abstract available at https://arxiv.org/abs/1607.08220, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": null, "status": "GREEN", "url"...
2,016
[ "JournalArticle" ]
true
2016-05-23T00:00:00
[ { "paperId": "703c302209146943f3c7ca473d16d3dcf505523d", "title": "BD-CATS: big data clustering at trillion particle scale" }, { "paperId": "f78aa07cffea8508e1e318fd78afd68be0dc6cea", "title": "Performance optimization for the k-nearest neighbors kernel on x86 architectures" }, { "paperI...
14,394
en
[ { "category": "Economics", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Economics", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" }, { "category": "Environmental Science", ...
https://www.semanticscholar.org/paper/08c2bf6952d636eacd316fb775aa500d452081ff
[ "Economics" ]
0.807988
Convergent Double Auction Mechanism for a Prosumers’ Decentralized Smart Grid
08c2bf6952d636eacd316fb775aa500d452081ff
[ { "authorId": "1684099", "name": "T. Taniguchi" }, { "authorId": "46333765", "name": "Tomohiro Takata" }, { "authorId": "144618135", "name": "Yoshiro Fukui" }, { "authorId": "2327479", "name": "Koki Kawasaki" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
In this paper, we propose a novel automated double auction mechanism called convergent linear function submission-based double-auction (CLFS-DA) for a prosumers’ decentralized smart grid. The target decentralized smart grid is a regional electricity network that consists of many prosumers that have a battery and a rene...
_Article_ # Convergent Double Auction Mechanism for a Prosumers’ Decentralized Smart Grid **Tadahiro Taniguchi** **[1,]*, Tomohiro Takata** **[2], Yoshiro Fukui** **[1]** **and Koki Kawasaki** **[3]** Received: 2 August 2015 ; Accepted: 19 October 2015 ; Published: 30 October 2015 Academic Editor: G.J.M. (Gerard) Smi...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.3390/EN81112315?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.3390/EN81112315, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyri...
2,015
[]
true
2015-10-30T00:00:00
[ { "paperId": "363969dcb2d32323f5fe0a786b303fc24f359b1e", "title": "Demand Response With Capacity Constrained Supply Function Bidding" }, { "paperId": "475cb6f2e037f42e62d957be763fdc660135a1f3", "title": "Operation optimization of a distributed energy system considering energy costs and exergy ef...
21,197
en
[ { "category": "Business", "source": "external" }, { "category": "Environmental Science", "source": "s2-fos-model" }, { "category": "Sociology", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08c41b2febf8f047f0d0a9294b35f9b63eec0a79
[ "Business" ]
0.901762
Natural Resource Access Rights and Wrongs: Nontimber Forest Products Gathering in Urban Environments
08c41b2febf8f047f0d0a9294b35f9b63eec0a79
[ { "authorId": "35681318", "name": "S. Charnley" }, { "authorId": "30920296", "name": "R. McLain" }, { "authorId": "32927558", "name": "M. Poe" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
null
###### Portland State University Portland State University ### PDXScholar PDXScholar ###### Institute for Sustainable Solutions Publications Institute for Sustainable Solutions and Presentations 2018 # Natural Resource Access Rights and Wrongs: Natural Resource Access Rights and Wrongs: Nontimber Forest Products Ga...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'abstract', 'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1080/08941920.2017.1413696?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1080/08941920.2017.1413696, which is subject to the license by th...
2,018
[]
true
2018-01-11T00:00:00
[]
16,209
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08c58bb5ff46fae9c18653c5a09efa5f5a95af76
[ "Computer Science" ]
0.884523
Light-SAE: A Lightweight Authentication Protocol for Large-Scale IoT Environments Made With Constrained Devices
08c58bb5ff46fae9c18653c5a09efa5f5a95af76
IEEE Transactions on Network and Service Management
[ { "authorId": "2054663183", "name": "P. Rosa" }, { "authorId": "2202678670", "name": "André Souto" }, { "authorId": "145288827", "name": "J. Cecílio" } ]
{ "alternate_issns": null, "alternate_names": [ "IEEE Trans Netw Serv Manag" ], "alternate_urls": [ "https://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=4275028", "http://ieeexplore.ieee.org/servlet/opac?punumber=4275028" ], "id": "a00fde74-d8df-4613-b825-0fff9f531d3f", "issn": "1932-4537...
Due to the increasing demand for Internet of Things (IoT) applications with sensitive data, the use of encryption on constrained devices is crucial for protecting and ensuring privacy and security. The devices used in such applications have limited computational power, memory, and energy resources, making them vulnerab...
# Light-SAE: A lightweight authentication protocol for large-scale IoT environments made with constrained devices ## Pedro Rosa, Andr´e Souto and Jos´e Cec´ılio **_Abstract—Due to the increasing demand for Internet of Things_** **(IoT) applications with sensitive data, the use of encryption** **on constrained device...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.1109/TNSM.2023.3275011?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1109/TNSM.2023.3275011, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the lice...
2,023
[ "JournalArticle" ]
true
2023-09-01T00:00:00
[ { "paperId": "bc086c4a0ee28a95b06dcd84ad5f00c1ccb49ae1", "title": "Key Agreement and Authentication Protocols in the Internet of Things: A Survey" }, { "paperId": "847358ad5b0d995ee113de4e2084d50202aecd42", "title": "An Anonymous Pre-Authentication and Post-Authentication Scheme Assisted by Clou...
18,189
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08c61ee90dabd39fed6d91ddd05543c5ecf6e317
[ "Computer Science" ]
0.88315
Constructive Side-Channel Analysis and Secure Design
08c61ee90dabd39fed6d91ddd05543c5ecf6e317
Lecture Notes in Computer Science
[ { "authorId": "1726631", "name": "E. Prouff" } ]
{ "alternate_issns": [ "1861-2059", "1861-2075", "1866-4733" ], "alternate_names": [ "LNCS", "Transactions on Computational Systems Biology", "Trans Comput Syst Biology", "Lect Note Comput Sci" ], "alternate_urls": [ "http://www.springer.com/sgw/cda/frontpage/0,11855,1-164-2-73...
null
# Electromagnetic glitch on the AES round counter ## Amine Dehbaoui, Amir-Pasha Mirbaha, Nicolas Moro, Jean-Max Dutertre, Assia Tria To cite this version: #### Amine Dehbaoui, Amir-Pasha Mirbaha, Nicolas Moro, Jean-Max Dutertre, Assia Tria. Electromag- netic glitch on the AES round counter. Fourth International W...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'abstract', 'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1007/978-3-642-40026-1?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1007/978-3-642-40026-1, which is subject to the license by the author...
2,013
[]
true
null
[]
9,088
en
[ { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Business", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08c64c80ff25d08f054ede7ff80f5aa5af11c7b1
[]
0.828407
Building Competitive Advantage Through Information Technology Integration in Marketing and Branding Management Strategies
08c64c80ff25d08f054ede7ff80f5aa5af11c7b1
Golden Ratio of Mapping Idea and Literature Format
[ { "authorId": "2291709175", "name": "Siti Mariam" } ]
{ "alternate_issns": null, "alternate_names": [ "Gold Ratio Mapp Idea Lit Format" ], "alternate_urls": null, "id": "ff8e8faa-6607-46c6-a53b-99d59e77ae6e", "issn": "2776-6381", "name": "Golden Ratio of Mapping Idea and Literature Format", "type": null, "url": null }
This study delves into the crucial role of information technology (IT) integration in marketing and branding management strategies, highlighting its significance as a pivotal element for businesses aiming to secure a competitive edge in the rapidly evolving digital landscape. In an era marked by digital transformation,...
ISSN [Online]: 2776 6381 [Website: https://goldenratio.id/index.php/grmilf](https://goldenratio.id/index.php/grmilf) ## MAPPING IDEA & LITERATURE FORMAT # Building Competitive Advantage Through Information Technology Integration in Marketing and Branding Management Strategies Received: January 03, 2024 Revised: F...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.52970/grmilf.v4i2.356?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.52970/grmilf.v4i2.356, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the licens...
2,024
[ "JournalArticle" ]
true
2024-03-14T00:00:00
[ { "paperId": "817c3c7cad60d821fb578d6eeddf7d32ae58e24e", "title": "Metaverse beyond the hype: Multidisciplinary perspectives on emerging challenges, opportunities, and agenda for research, practice and policy" }, { "paperId": "949c4936e2f11f1e843148ed78e75ed87c2ebb9e", "title": "Digital transfor...
16,375
en
[ { "category": "Business", "source": "external" }, { "category": "Environmental Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08c6eb701aba771fdf973c16f16880ccf5111abe
[ "Business" ]
0.894536
Review of blockchain-based distributed energy: Implications for institutional development
08c6eb701aba771fdf973c16f16880ccf5111abe
[ { "authorId": "97810947", "name": "A. Ahl" }, { "authorId": "30735748", "name": "Masaru Yarime" }, { "authorId": "145419210", "name": "Kenji Tanaka" }, { "authorId": "2050535973", "name": "D. Sagawa" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
null
## Review of blockchain-based distributed energy: Implications for institutional development Amanda Ahl[1,*], Masaru Yarime[2,3,4], Kenji Tanaka[5], Daishi Sagawa[5 ] 1 = Department of Innovation Science, School of Environment and Society, Tokyo Institute of Technology, 3-3-6 Shibaura, Minato, Tokyo 105-0023, Japan....
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1016/J.RSER.2019.03.002?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1016/J.RSER.2019.03.002, which is subject to the license by the author or copyri...
2,019
[ "Review" ]
true
2019-06-01T00:00:00
[]
21,141
en
[ { "category": "Medicine", "source": "external" }, { "category": "Medicine", "source": "s2-fos-model" }, { "category": "Biology", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08c775804cd16bec3abb9810908d1a85ea08d2bb
[ "Medicine" ]
0.872939
Discovering Novel Biomarkers Associated with the Pathogenesis of Psoriasis: Evidence from Bioinformatic Analysis
08c775804cd16bec3abb9810908d1a85ea08d2bb
International Journal of General Medicine
[ { "authorId": "2152918882", "name": "Yang Yang" }, { "authorId": "50020232", "name": "Shaoqiong Xie" }, { "authorId": "13036626", "name": "Wencheng Jiang" }, { "authorId": "35216104", "name": "Suwei Tang" }, { "authorId": "144011348", "name": "Yuling Shi" } ...
{ "alternate_issns": null, "alternate_names": [ "Int J Gen Med" ], "alternate_urls": [ "http://www.dovepress.com/international-journal-of-general-medicine-journal" ], "id": "e9578a7c-746c-44f1-93ad-50f99b695aaf", "issn": "1178-7074", "name": "International Journal of General Medicine", "type":...
Objective This study aimed to investigate key biomarkers and their molecular pathogenesis in psoriasis. Methods Differentially expressed genes (DEGs) of datasets (GSE13355, GSE30999, and GSE106992) obtained from Gene Expression Omnibus (GEO) were identified using Venn diagram. Function and pathway enrichment analyses w...
### International Journal of General Medicine Dovepress open access to scientific and medical research Open Access Full Text Article O R I G I N A L R E S E A R C H # Discovering Novel Biomarkers Associated with the Pathogenesis of Psoriasis: Evidence from Bioinformatic Analysis #### Yang Yang[1][,][2], Shaoqio...
{ "disclaimer": "Notice: Paper or abstract available at https://pmc.ncbi.nlm.nih.gov/articles/PMC8923704, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": "CCBYNC", "statu...
2,022
[ "JournalArticle" ]
true
2022-03-01T00:00:00
[ { "paperId": "e29984889015af2a3d0c517ac3b8a969544c728b", "title": "Aberrations in Lipid Expression and Metabolism in Psoriasis" }, { "paperId": "1fbb39809329ed803826c0c56e87aa3d32962a77", "title": "Screening and Identification of Potential Key Biomarkers in Psoriasis : Evidence From Bioinformati...
10,886
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Law", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08c7ec20b47923c09ff52aa44ca324d17c47c7bb
[ "Computer Science" ]
0.874265
Smart Contracts for Research Data Rights Management over the Ethereum Blockchain Network
08c7ec20b47923c09ff52aa44ca324d17c47c7bb
[ { "authorId": "71363977", "name": "Adrian-Tudor Panescu" }, { "authorId": "47698494", "name": "V. Manta" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
ABSTRACT This article presents a new method for managing digital reuse rights of research data, which leverages technologies such as the blockchain and smart contracts. This allows, on one hand, the creation of a permanent record on the agreements between the authors of the data and the reusers, with the possibility of...
# RESEARCH OR PRACTICAL ARTICLE Smart Contracts for Research Data Rights Management over the Ethereum Blockchain Network Adrian-Tudor P˘anescu[a,b] and Vasile Manta[a] aFaculty of Automatic Control and Computer Engineering, “Gheorghe Asachi” Technical University of Ia¸si, Dimitrie Mangeron 67, 700050 Ia¸si, Romania...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.1080/0194262X.2018.1474838?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1080/0194262X.2018.1474838, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify ...
2,018
[]
true
2018-05-22T00:00:00
[ { "paperId": "e1c75666d034051651ba8fd1c1d272e6a8535a82", "title": "General Policies" }, { "paperId": "a7c2d6b4710ea409b14a716616a9caf466adb2f6", "title": "An empirical analysis of journal policy effectiveness for computational reproducibility" }, { "paperId": "5b95901e08407e4b871c6f654b8...
6,768
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08ca16a335cfc42319cca225425325943eac6515
[ "Computer Science" ]
0.906936
Access and use control using externally controlled reference monitors
08ca16a335cfc42319cca225425325943eac6515
OPSR
[ { "authorId": "69535455", "name": "S. Wolthusen" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
null
# Access and Use Control using Externally Controlled Reference Monitors ### Stephen D. Wolthusen Security Technology Department, Fraunhofer-IGD, Darmstadt, Germany ``` wolt@igd.fhg.de 13th November 2001 ## 1 Introduction ``` The reference monitor as a structuring mechanism for operating system design...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'abstract', 'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1145/844166.844170?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1145/844166.844170, which is subject to the license by the author or copy...
2,002
[ "JournalArticle" ]
false
null
[]
8,519
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Medicine", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08ca89df9ef6172af1cfeb68adec0d48dd5ba5d6
[ "Computer Science", "Medicine" ]
0.8037
Blockchain-enabled data governance for privacy-preserved sharing of confidential data
08ca89df9ef6172af1cfeb68adec0d48dd5ba5d6
PeerJ Computer Science
[ { "authorId": "2154738067", "name": "Jingchi Zhang" }, { "authorId": "145688317", "name": "Anwitaman Datta" } ]
{ "alternate_issns": null, "alternate_names": [ "Peerj Comput Sci" ], "alternate_urls": [ "https://peerj.com/computer-science/", "http://peerj.com/cs" ], "id": "138e58fc-8643-41c2-a92c-068ea4f4c607", "issn": "2376-5992", "name": "PeerJ Computer Science", "type": null, "url": "https://pee...
In traditional cloud storage systems, users benefit from the convenience of data accessibility but face significant risks related to security. Ciphertext-policy attribute-based encryption (CP-ABE) schemes are employed to achieve fine-grained access control in cloud services to ensure confidentiality while maintaining d...
# Blockchain-enabled Data Governance for Privacy-Preserved Sharing of Confidential Data ### Jingchi Zhang, NTU Singapore, Anwitaman Datta, NTU Singapore **_Abstract—In a traditional cloud storage system, users benefit_** **from the convenience it provides but also take the risk of** **certain security and privacy is...
{ "disclaimer": "Notice: Paper or abstract available at https://arxiv.org/abs/2309.04125, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": "CCBY", "status": null, "url":...
2,023
[ "JournalArticle" ]
false
2023-09-08T00:00:00
[ { "paperId": "9bf432cd86637826817d0bb6777b76553a7402da", "title": "Multikeyword-Ranked Search Scheme Supporting Extreme Environments for Internet of Vehicles" }, { "paperId": "f1fdfbb2527e74dc9429a5ea015169390de2f82b", "title": "Privacy-Preserving Dynamic Multi-Keyword Ranked Search Scheme in Mu...
38,215
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08ca9a126a7c9af75055e337d59cec21f82d3f65
[ "Computer Science" ]
0.893397
BlockTrack-L: A Lightweight Blockchain-based Provenance Message Tracking in IoT
08ca9a126a7c9af75055e337d59cec21f82d3f65
[ { "authorId": "2597548", "name": "M. Siddiqui" }, { "authorId": "3319300", "name": "Toqeer Ali Syed" }, { "authorId": "6102483", "name": "A. Nadeem" }, { "authorId": "50045206", "name": "Waqas Nawaz" }, { "authorId": "2294974913", "name": "S. Albouq" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
Data tracking is of great significance and a central part in digital forensics. In today's complex network design, Internet of Things (IoT) devices communicate with each other and require strong security mechanisms. In maintaining an audit trail of IoT devices or provenance of IoT device data, it is important to know t...
# BlockTrack-L: A Lightweight Blockchain-based Provenance Message Tracking in IoT ## Muhammad Shoaib Siddiqui[1], Toqeer Ali Syed[2], Adnan Nadeem[3], Waqas Nawaz[4], Sami S. Albouq[5] Faculty of Computer and Information Systems Islamic University of Madinah Madinah, Kingdom of Saudi Arabia **_Abstract—Data trac...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.14569/ijacsa.2020.0110462?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.14569/ijacsa.2020.0110462, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify th...
2,020
[]
true
null
[ { "paperId": "b7f13d6c6f8dfcc1d070230731672ca8d37e6c11", "title": "A Transparent and Trusted Property Registration System on Permissioned Blockchain" }, { "paperId": "33aa306454450e69c98251a5045c3713146b95fc", "title": "A Comparative Analysis of Blockchain Architecture and its Applications: Prob...
9,092
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" }, { "category": "Environmental Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08cedc91fb36769e3dc4d72df900b6838fa2ef86
[ "Computer Science" ]
0.887015
A Novel Blockchain Based Secured and QoS Aware IoT Vehicular Network in Edge Cloud Computing
08cedc91fb36769e3dc4d72df900b6838fa2ef86
IEEE Access
[ { "authorId": "49220815", "name": "Adeel Ahmed" }, { "authorId": "2760443", "name": "Saima Abdullah" }, { "authorId": "2087150860", "name": "Saman Iftikhar" }, { "authorId": "1636803493", "name": "Israr Ahmad" }, { "authorId": "2176959025", "name": "Siddiqa Aj...
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": [ "http://ieeexplore.ieee.org/servlet/opac?punumber=6287639" ], "id": "2633f5b2-c15c-49fe-80f5-07523e770c26", "issn": "2169-3536", "name": "IEEE Access", "type": "journal", "url": "http://www.ieee.org/publications_standards/publ...
A software-defined vehicular network is made up of an IoT (Internet of Things) based vehicular ad-hoc network and a software-defined network. For better communication in IoT based vehicle networks, researchers are now working on the VANET (Vehicular Ad-hoc Network) to increase the overall system performance. To maximiz...
# A Novel Blockchain Based Secured and QoS Aware IoT Vehicular Network in Edge Cloud Computing **ADEEL AHMED[1], SAIMA ABDULLAH[1], SAMAN IFTIKHAR[2], ISRAR AHMAD[1], SIDDIQA** **AJMAL[1] AND QAMAR HUSSAIN[1 ]** 1Department of Computer Science, Faculty of Computing, The Islamia University of Bahawalpur, Punjab, 63100...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.1109/access.2022.3192111?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1109/access.2022.3192111, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the ...
2,022
[ "JournalArticle" ]
true
null
[]
18,086
en
[ { "category": "Sociology", "source": "s2-fos-model" }, { "category": "Business", "source": "s2-fos-model" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08cf2582b74d24833fe877e0887c12373851e301
[]
0.857104
Going beyond Cryptocurrencies: The Social Representation of Blockchain
08cf2582b74d24833fe877e0887c12373851e301
Sustainability
[ { "authorId": "1755363", "name": "L. Joia" }, { "authorId": "2146941790", "name": "Juliana Aparecida Pinto Vieira" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": [ "http://mdpi.com/journal/sustainability", "http://nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:ch:bel-172127" ], "id": "8775599f-4f9a-45f0-900e-7f4de68e6843", "issn": "2071-1050", "name": "Sustainability", "type": "journal",...
This study investigates the social representation of Blockchain from the perspective of professionals in Brazil, herein considered as a proxy for emerging markets, and then compares the results found with the existing academic literature on the concept of Blockchain. To do that, the social representation theory was app...
## ***sustainability*** *Article* # **Going beyond Cryptocurrencies: The Social Representation** **of Blockchain** **Luiz Antonio Joia *** **and Juliana Aparecida Pinto Vieira** Brazilian School of Public and Business Administration, Getulio Vargas Foundation, Rio de Janeiro 22231-010, Brazil; professora.julianav@gm...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.3390/su132414054?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.3390/su132414054, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copy...
2,021
[]
true
2021-12-20T00:00:00
[ { "paperId": "9787abbfc6ee3aa67cd9f801364229058ffe798c", "title": "Applications of Blockchain Technology in Sustainable Manufacturing and Supply Chain Management: A Systematic Review" }, { "paperId": "28315f9910d41c0a6182d9d3f3acd7e7a34800a6", "title": "Blockchain applications in management: A b...
17,780
en
[ { "category": "Medicine", "source": "external" }, { "category": "Computer Science", "source": "external" }, { "category": "Medicine", "source": "s2-fos-model" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08cf7bcef880717d36b02b10529c52f5a4330c7d
[ "Medicine", "Computer Science" ]
0.895896
Emerging and Established Trends to Support Secure Health Information Exchange
08cf7bcef880717d36b02b10529c52f5a4330c7d
Frontiers in Digital Health
[ { "authorId": "31491395", "name": "Emmanouil G Spanakis" }, { "authorId": "2466994", "name": "S. Sfakianakis" }, { "authorId": "1970469", "name": "Silvia Bonomi" }, { "authorId": "2373906", "name": "Claudio Ciccotelli" }, { "authorId": "35090500", "name": "S. ...
{ "alternate_issns": null, "alternate_names": [ "Front Digit Health" ], "alternate_urls": null, "id": "d325aacd-7bff-49a6-a4c1-f9c82f48af34", "issn": "2673-253X", "name": "Frontiers in Digital Health", "type": "journal", "url": "https://www.frontiersin.org/journals/digital-health#" }
This work aims to provide information, guidelines, established practices and standards, and an extensive evaluation on new and promising technologies for the implementation of a secure information sharing platform for health-related data. We focus strictly on the technical aspects and specifically on the sharing of hea...
Edited by: Constantinos S. Pattichis, University of Cyprus, Cyprus Reviewed by: Tsung-Ting Kuo, University of California, San Diego, United States Michalis Zervakis, Technical University of Crete, Greece *Correspondence: Emmanouil G. Spanakis [spanakis@ics.forth.gr](mailto:spanakis@ics.forth.gr) Specialty section: T...
{ "disclaimer": "Notice: Paper or abstract available at https://pmc.ncbi.nlm.nih.gov/articles/PMC8521812, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": "CCBY", "status"...
2,021
[ "JournalArticle" ]
true
2021-04-09T00:00:00
[ { "paperId": "e389423b8f8695533e4a52dfdd76ae88f265248e", "title": "Blockchain" }, { "paperId": "bcdb405cdfff5a6bf3dc53e239b549b2206ff420", "title": "Decentralized vs. Distributed Organization: Blockchain, Machine Learning and the Future of the Digital Platform" }, { "paperId": "a7fb6fd00...
16,134
en
[ { "category": "Engineering", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08d1aa52555c419fdd05a81cba9dcc78cca7c754
[ "Engineering" ]
0.900229
From Collaborative to Privacy-Preserving Sequential Pattern Mining
08d1aa52555c419fdd05a81cba9dcc78cca7c754
[ { "authorId": "48172620", "name": "Vishal Kapoor" }, { "authorId": "1744598", "name": "P. Poncelet" }, { "authorId": "1742547", "name": "F. Trousset" }, { "authorId": "1683304", "name": "M. Teisseire" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
null
# From Collaborative to Privacy Preserving Sequential Pattern Mining V. Kapoor[1], P. Poncelet[2], F. Trousset[3], and M. Teisseire[4] 1 Microsoft, One Microsoft Way, Redmond, WA - 98052 vishal.kapoor@microsoft.com 2 LIRMM UMR CNR5 5506, 161 Rue Ada, 34392, Montpellier Cedex 5, France poncelet@lirmm.fr 3 EMA-LG...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'abstract', 'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1007/978-1-84996-238-4_7?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1007/978-1-84996-238-4_7, which is subject to the license by the au...
2,010
[]
false
null
[]
15,847
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Business", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08d696f38a081c9f41ad90787aed2e2b3a19b2f2
[ "Computer Science" ]
0.800925
SEBF: A Single-Chain based Extension Model of Blockchain for Fintech
08d696f38a081c9f41ad90787aed2e2b3a19b2f2
International Joint Conference on Artificial Intelligence
[ { "authorId": "2114168440", "name": "Yimu Ji" }, { "authorId": "2061383730", "name": "Weiheng Gu" }, { "authorId": "2156361777", "name": "Fei Chen" }, { "authorId": "47383265", "name": "Xiaoying Xiao" }, { "authorId": "2156016457", "name": "Jing Sun" }, { ...
{ "alternate_issns": null, "alternate_names": [ "Int Jt Conf Artif Intell", "IJCAI" ], "alternate_urls": null, "id": "67f7f831-711a-43c8-8785-1e09005359b5", "issn": null, "name": "International Joint Conference on Artificial Intelligence", "type": "conference", "url": "http://www.ijcai.org/" }
The traditional blockchain has the shortcoming that a single-chain can only deal with one or a few specific data types. The research question of how to make blockchain be able to deal with various data types has not been well studied. In this paper, we propose a single-chain based extension model of blockchain for fint...
## SEBF: A Single-Chain based Extension Model of Blockchain for Fintech #### Yimu Ji[1,2,3,4,5*], Weiheng Gu[1,3], Fei Chen[1,3], Xiaoying Xiao[1,3], Jing Sun[1,3], Shangdong Liu[1,2,3,4,5*] Jing He[6,7*], Yunyao Li[6], Kaixiang Zhang[8], Fen Mei[8] and Fei Wu[3,4,5,9* ] 1School of Computer Science, Nanjing Universi...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.24963/ijcai.2020/620?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.24963/ijcai.2020/620, which is subject to the license by the author or copyright ow...
2,020
[ "JournalArticle", "Conference" ]
true
2020-07-01T00:00:00
[]
11,916
en
[ { "category": "Biology", "source": "external" }, { "category": "Medicine", "source": "external" }, { "category": "Environmental Science", "source": "s2-fos-model" }, { "category": "Biology", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08d6b392001ca78efd59f5339826bf75f6a8121b
[ "Biology", "Medicine" ]
0.884088
Molecular Identification of Atlantic Bluefin Tuna (Thunnus thynnus, Scombridae) Larvae and Development of a DNA Character-Based Identification Key for Mediterranean Scombrids
08d6b392001ca78efd59f5339826bf75f6a8121b
PLoS ONE
[ { "authorId": "4696371", "name": "G. Puncher" }, { "authorId": "5777567", "name": "H. Arrizabalaga" }, { "authorId": "144349603", "name": "F. Alemany" }, { "authorId": "50576819", "name": "A. Cariani" }, { "authorId": "5086074", "name": "I. Oray" }, { ...
{ "alternate_issns": null, "alternate_names": [ "Plo ONE", "PLOS ONE", "PLO ONE" ], "alternate_urls": [ "http://www.plosone.org/" ], "id": "0aed7a40-85f3-4c66-9e1b-c1556c57001b", "issn": "1932-6203", "name": "PLoS ONE", "type": "journal", "url": "https://journals.plos.org/plosone/" }
The Atlantic bluefin tuna, Thunnus thynnus, is a commercially important species that has been severely over-exploited in the recent past. Although the eastern Atlantic and Mediterranean stock is now showing signs of recovery, its current status remains very uncertain and as a consequence their recovery is dependent upo...
OPEN ACCESS Citation: Puncher GN, Arrizabalaga H, Alemany F, Cariani A, Oray IK, Karakulak FS, et al. (2015) Molecular Identification of Atlantic Bluefin Tuna (Thunnus thynnus, Scombridae) Larvae and Development of a DNA Character-Based Identification Key for Mediterranean Scombrids. PLoS ONE 10(7): e0130407. doi:10.1...
{ "disclaimer": "Notice: Paper or abstract available at https://pmc.ncbi.nlm.nih.gov/articles/PMC4493144, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": "CCBY", "status"...
2,015
[ "JournalArticle" ]
true
2015-07-06T00:00:00
[ { "paperId": "86b3924474a3510542522e0975a7e4979e31cec4", "title": "The spectre of uncertainty in management of exploited fish stocks: The illustrative case of Atlantic bluefin tuna" }, { "paperId": "31c20bbe9af6e47b00fa11210317adc58a41f21c", "title": "Crossing the line: migratory and homing beha...
17,618
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08da40e1a1bfbf18d2ed7a02656cfd9823fb77e5
[ "Computer Science" ]
0.894715
Blockchain as a Trust Builder in the Smart City Domain: A Systematic Literature Review
08da40e1a1bfbf18d2ed7a02656cfd9823fb77e5
IEEE Access
[ { "authorId": "2109161591", "name": "Sheraz Ahmed" }, { "authorId": "2111862561", "name": "Muhammad Arif Shah" }, { "authorId": "2770609", "name": "Karzan Wakil" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": [ "http://ieeexplore.ieee.org/servlet/opac?punumber=6287639" ], "id": "2633f5b2-c15c-49fe-80f5-07523e770c26", "issn": "2169-3536", "name": "IEEE Access", "type": "journal", "url": "http://www.ieee.org/publications_standards/publ...
The revolution of the Internet of Things (IoT) is transforming many concepts, making them “Smart”. It has revolutionized many areas of real life. Smart City is one of the key concepts of this revolution. Although cities are being digitally transformed, it still has obstacles along the way. In this paper, we have analyz...
Received April 2, 2020, accepted April 29, 2020, date of publication May 11, 2020, date of current version June 1, 2020. _Digital Object Identifier 10.1109/ACCESS.2020.2993724_ # Blockchain as a Trust Builder in the Smart City Domain: A Systematic Literature Review SHERAZ AHMED 1, MUHAMMAD ARIF SHAH 2, AND KARZAN WA...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.1109/ACCESS.2020.2993724?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1109/ACCESS.2020.2993724, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the ...
2,020
[ "JournalArticle", "Review" ]
true
2020-05-11T00:00:00
[ { "paperId": "d2b5eec036d9b5094a1e242e0d9a7c3e26c00d4b", "title": "Blockchain for smart communities: Applications, challenges and opportunities" }, { "paperId": "0ab76a0b19e7ab4686b1ff509ee2ff950afbbad1", "title": "Blockchain in Smart Cities: Exploring Possibilities in Terms of Opportunities and...
9,606
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08db1222d9e952cead3968c3c9593ebb662bf4de
[ "Computer Science" ]
0.867527
Parallel and Distributed Discrete Event Simulation: Algorithms and Applications
08db1222d9e952cead3968c3c9593ebb662bf4de
Online World Conference on Soft Computing in Industrial Applications
[ { "authorId": "1721009", "name": "R. Fujimoto" } ]
{ "alternate_issns": null, "alternate_names": [ "Winter Simul Conf", "World Conf Soft Comput Ind Appl", "Winter Simulation Conference", "World Conference on Soft Computing in Industrial Applications", "WSC", "Online World Conf Soft Comput Ind Appl" ], "alternate_urls": [ "http://www....
null
## G. W. Evans, M. Mollaghasemi, E. C. Russell, W.E. Biles (eds.) PARALLEL ANI) DISTRIBUTED DISCRETE EVENT SIMULATION: ALGORITHMS AND APPLICATIONS Richard M. Fujimoto College of Computing Georgia Institute of Technology Atlanta, Georgia 30332-0280, U.S.A. ABSTRACT this sample path by utilizing many processors. T...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'references', 'abstract'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1145/256563.256596?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1145/256563.256596, which is subject to the license by the author or copy...
1,993
[ "JournalArticle", "Conference", "Review" ]
true
1993-12-01T00:00:00
[]
11,809
en
[ { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08df3dd93c3e9d82fcdc58fe5d70d7a67342efff
[]
0.88686
An End-Process Blockchain-Based Secure Aggregation Mechanism Using Federated Machine Learning
08df3dd93c3e9d82fcdc58fe5d70d7a67342efff
Electronics
[ { "authorId": "2265511934", "name": "Washington Enyinna Mbonu" }, { "authorId": "2091059383", "name": "C. Maple" }, { "authorId": "2313102", "name": "Gregory Epiphaniou" } ]
{ "alternate_issns": [ "2079-9292", "0883-4989" ], "alternate_names": null, "alternate_urls": [ "http://www.e-helvetica.nb.admin.ch/directAccess?callnumber=bel-247562", "http://nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:ch:bel-247562", "https://www.mdpi.com/journal/electronics" ], "id"...
Federated Learning (FL) is a distributed Deep Learning (DL) technique that creates a global model through the local training of multiple edge devices. It uses a central server for model communication and the aggregation of post-trained models. The central server orchestrates the training process by sending each partici...
# electronics _Article_ ## An End-Process Blockchain-Based Secure Aggregation Mechanism Using Federated Machine Learning **Washington Enyinna Mbonu, Carsten Maple *** **and Gregory Epiphaniou *** WMG, University of Warwick, Coventry CV4 7AL, UK; washington.mbonu@warwick.ac.uk *** Correspondence: cm@warwick.ac.uk (C...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.3390/electronics12214543?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.3390/electronics12214543, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the ...
2,023
[ "JournalArticle" ]
true
2023-11-05T00:00:00
[ { "paperId": "87507ff2e62678939b05b1b27ff38b21cb69d3ea", "title": "A Blockchain-Enabled Explainable Federated Learning for Securing Internet-of-Things-Based Social Media 3.0 Networks" }, { "paperId": "abaae675989dbf951a520a81f733134451388c55", "title": "A verifiable and privacy-preserving blockc...
24,001
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08dff8906985311d9ea3f8b17332b6192ad8187f
[ "Computer Science" ]
0.886231
How to Break IOTA Heart by Replaying?
08dff8906985311d9ea3f8b17332b6192ad8187f
2018 IEEE Globecom Workshops (GC Wkshps)
[ { "authorId": "73773117", "name": "Gerard De Roode" }, { "authorId": "50074209", "name": "Ikram Ullah" }, { "authorId": "145263677", "name": "P. Havinga" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
IOTA is a novel cryptocurrency that uses distributed ledger technology based on directed acyclic graph data structure. Security of cryptocurrencies ought to be scrutinized in order to acquire esteemed security, attain trust, and accomplish indelible adoption. Although IOTA proffer resilient security controls, IOTA secu...
# How to break IOTA heart by replaying? ## Gerard de Roode _University College Twente_ Enschede, The Netherlands g.deroode@student.utwente.nl ## Ikram Ullah _Pervasive Systems Group, Dep. of_ _Comp. Science University of Twente_ Enschede, The Netherlands i.ullah@utwente.nl ## Paul J. M. Havinga _Pervasive Systems...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1109/GLOCOMW.2018.8644437?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1109/GLOCOMW.2018.8644437, which is subject to the license by the author or co...
2,018
[ "JournalArticle" ]
true
2018-12-01T00:00:00
[]
9,569
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08e09151bd3a2e3a1c4ca0b8450dded420b01452
[ "Computer Science" ]
0.905186
Opportunities and Limits of Remote Timing Attacks
08e09151bd3a2e3a1c4ca0b8450dded420b01452
TSEC
[ { "authorId": "37399712", "name": "Scott A. Crosby" }, { "authorId": "34910521", "name": "D. Wallach" }, { "authorId": "2960748", "name": "R. Riedi" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
null
# Opportunities and Limits of Remote Timing Attacks SCOTT A. CROSBY, DAN S. WALLACH and RUDOLF H. RIEDI Rice University Many algorithms can take a variable amount of time to complete depending on the data being processed. These timing differences can sometimes disclose confidential information. Indeed, researchers ha...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'abstract', 'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1145/1455526.1455530?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1145/1455526.1455530, which is subject to the license by the author or ...
2,009
[ "JournalArticle" ]
true
null
[]
20,313
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08e39c8e4a0ddf5a33211fa1eb8c06519f51e387
[ "Computer Science" ]
0.890321
Ant Inspired Scalable Peer Selection in Ontology-Based Service Composition
08e39c8e4a0ddf5a33211fa1eb8c06519f51e387
Encyclopedia of Information Science and Technology
[ { "authorId": "145403747", "name": "Shuai Yuan" }, { "authorId": "46904981", "name": "Jun Shen" }, { "authorId": "2189562", "name": "A. Krishna" } ]
{ "alternate_issns": null, "alternate_names": [ "II", "Encycl Inf Sci Technol" ], "alternate_urls": null, "id": "6bc626e0-f90f-4d7a-bf89-c6e565807f11", "issn": null, "name": "Encyclopedia of Information Science and Technology", "type": "conference", "url": null }
null
###### University of Wollongong University of Wollongong ### Research Online Research Online ###### Faculty of Engineering and Information Faculty of Informatics - Papers (Archive) Sciences 2009 ##### Ant inspired scalable peer selection in ontology-based service composition Ant inspired scalable peer selection in...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'abstract', 'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1109/SERVICES-2.2009.15?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1109/SERVICES-2.2009.15, which is subject to the license by the auth...
2,009
[ "JournalArticle", "Conference" ]
true
2009-09-21T00:00:00
[]
10,286
en
[ { "category": "Business", "source": "external" }, { "category": "Environmental Science", "source": "s2-fos-model" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08e4e87a7ed8ec88a4025579f881562aecea41b3
[ "Business" ]
0.881247
Leveraging Blockchain for Sustainability and Open Innovation: A Cyber-Resilient Approach toward EU Green Deal and UN Sustainable Development Goals
08e4e87a7ed8ec88a4025579f881562aecea41b3
Computer Security Threats
[ { "authorId": "1401263185", "name": "Paula Fraga-Lamas" }, { "authorId": "1398907758", "name": "T. Fernández-Caramés" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
In 2015, the United Nations (UN) member states identified 17 Sustainable Development Goals (SDGs) to be fulfilled by 2030. SDGs are an urgent global call for action to provide a blueprint for shared prosperity in a sustainable world. At a European level, in December 2019, the European Green Deal was presented, a roadma...
## We are IntechOpen, the world’s leading publisher of Open Access books Built by scientists, for scientists # 6,700 Open access books available # 180,000 195M International authors and editors Our authors are among the Downloads # 12.2% # 154 TOP 1% Countries delivered to most cited scientists Contribut...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.5772/intechopen.92371?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.5772/intechopen.92371, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the licens...
2,020
[ "Review" ]
true
2020-05-07T00:00:00
[ { "paperId": "239bf45c13b3f6d38c74026b535f785febf9cd08", "title": "Towards Post-Quantum Blockchain: A Review on Blockchain Cryptography Resistant to Quantum Computing Attacks" }, { "paperId": "8437fda2c8fa342a5fd874c73ee9b0686fa4260c", "title": "The Middleman Is Dead, Long Live the Middleman: Th...
12,234
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08e80161c6f8284e89b2883bb71414c84bea5d30
[ "Computer Science" ]
0.858754
Distributed data association and filtering for multiple target tracking
08e80161c6f8284e89b2883bb71414c84bea5d30
2008 IEEE Conference on Computer Vision and Pattern Recognition
[ { "authorId": "2117900326", "name": "Ting Yu" }, { "authorId": "50118130", "name": "Ying Wu" }, { "authorId": "1694977", "name": "N. Krahnstoever" }, { "authorId": "2163184", "name": "P. Tu" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
null
# Distributed Data Association and Filtering for Multiple Target Tracking ## Ting Yu[†] Ying Wu[‡] Nils O. Krahnstoever[†] Peter H. Tu[†] yut@research.ge.com yingwu@ece.northwestern.edu krahnsto,tu @research.ge.com { } _† Visualization and Computer Vision Lab, GE Global Research, Niskayuna, NY 12309_ _‡ Dept. of Ele...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'abstract', 'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1109/CVPR.2008.4587560?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1109/CVPR.2008.4587560, which is subject to the license by the author...
2,008
[ "JournalArticle", "Conference" ]
false
2008-06-23T00:00:00
[]
12,325
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08e8195f1bdfcab19cb1ee769cab62e94690388d
[ "Computer Science" ]
0.869621
Architecture and design of a programmable 3D-integrated cellular processor array for image processing
08e8195f1bdfcab19cb1ee769cab62e94690388d
IEEE/IFIP ... International Conference on VLSI and System-on-Chip
[ { "authorId": "2275482", "name": "A. Lopich" }, { "authorId": "1900897", "name": "P. Dudek" } ]
{ "alternate_issns": [ "2324-8432" ], "alternate_names": [ "IEEE/IFIP Int Conf VLSI Syst" ], "alternate_urls": null, "id": "bcce39db-887c-45b8-ab89-25a92104ebff", "issn": "2324-8440", "name": "IEEE/IFIP ... International Conference on VLSI and System-on-Chip", "type": null, "url": "http://i...
null
#### Architecture and Design of a Programmable 3D-Integrated Cellular Processor Array for Image Processing Alexey Lopich Piotr Dudek School of Electrical and Electronic Engineering The University of Manchester United Kingdom {a.lopich, p.dudek}@manchester.ac.uk Abstract- In this work we present a design of a massi...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'abstract', 'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1109/VLSISoC.2011.6081606?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1109/VLSISoC.2011.6081606, which is subject to the license by the ...
2,011
[ "JournalArticle", "Conference" ]
true
2011-11-18T00:00:00
[]
4,487
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Environmental Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08e848c79678aa83c9137f7c4a577872ffe029c5
[ "Computer Science" ]
0.865577
Transdisciplinary Challenges of Scientific Cloud Computing
08e848c79678aa83c9137f7c4a577872ffe029c5
Journal of Integrated Design & Process Science
[ { "authorId": "2369215", "name": "D. Versick" }, { "authorId": "1799774", "name": "Peter Tröger" } ]
{ "alternate_issns": null, "alternate_names": [ "J Integr Des Process Sci" ], "alternate_urls": [ "https://www.iospress.nl/html/10920617.php" ], "id": "691fe259-b34a-46ac-9070-cc9536bd1bd3", "issn": "1092-0617", "name": "Journal of Integrated Design & Process Science", "type": "journal", "u...
null
Journal of Integrated Design and Process Science 18 (1), 2014, 1-4 DOI 10.3233/jid-2014-0005 [http://www.sdpsnet.org](http://www.sdpsnet.org) # EXTENDED EDITORIAL Transdisciplinary Challenges of Scientific Cloud Computing Daniel Versick[a][∗] and Peter Tr¨oger[b] _a University of Rostock, Germany_ _b Hasso Plattne...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'abstract', 'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.3233/jid-2014-0005?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.3233/jid-2014-0005, which is subject to the license by the author or copy...
2,014
[ "JournalArticle" ]
true
2014-02-01T00:00:00
[]
3,747
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08f02323306e972ba94d82acd7fcefc77ae04214
[ "Computer Science" ]
0.918799
One-Step Pointer Forwarding Strategy for Location Tracking in Distributed HLR Environment
08f02323306e972ba94d82acd7fcefc77ae04214
IEEE J. Sel. Areas Commun.
[ { "authorId": "2332657", "name": "Kuen-Liang Sue" }, { "authorId": "1910186", "name": "C. Tseng" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
null
## One-Step Pointer Forwarding Strategy for Location Tracking in Distributed HLR Environment ### Kuen-Liang Sue and Chien-Chao Tseng **_Abstract—_** **One of the main challenges in personal communi-** **cation service (PCS) is to locate many mobiles that may move** **frequently from place to place. Such a system ope...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'abstract', 'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1109/49.634785?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1109/49.634785, which is subject to the license by the author or copyright ow...
1,997
[ "JournalArticle" ]
true
1997-10-01T00:00:00
[]
9,484
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08f06738f7e9a05460f1c7cf39e9c9159de9a6b3
[ "Computer Science" ]
0.889326
Distributed Range-Based Meta-Data Management for an In-Memory Storage
08f06738f7e9a05460f1c7cf39e9c9159de9a6b3
Euro-Par Workshops
[ { "authorId": "2057608032", "name": "F. Klein" }, { "authorId": "1684248", "name": "Kevin Beineke" }, { "authorId": "1721293", "name": "M. Schöttner" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
null
# Distributed Range-Based Meta-Data Management for an In-Memory Storage Florian Klein[(][B][)], Kevin Beineke, and Michael Sch¨ottner Institut f¨ur Informatik, Heinrich-Heine-Universit¨at D¨usseldorf, Universit¨atsstr. 1, 40225 D¨usseldorf, Germany Florian.Klein@uni-duesseldorf.de **Abstract. Large-scale** interacti...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'abstract', 'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1007/978-3-319-27308-2_1?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1007/978-3-319-27308-2_1, which is subject to the license by the au...
2,015
[ "JournalArticle" ]
true
2015-08-24T00:00:00
[]
7,703
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08f14f34717196b97944877d928f214807e5461d
[ "Computer Science" ]
0.867598
Comparative analysis of routing techniques in chord overlay network
08f14f34717196b97944877d928f214807e5461d
[ { "authorId": "9288832", "name": "Omoruyi Osemwegie" }, { "authorId": "2087786633", "name": "S. John" }, { "authorId": "2259457124", "name": "Adewale Adeyinka" }, { "authorId": "1398295927", "name": "Etinosa Noma-Osaghae" }, { "authorId": "9725086", "name": "K...
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
Overlay networks are not a new field or area of study. This domain of computing will someday drive P2P systems in various application areas such as block-chain, energy trading, video multicasting, and distributed file storage. This study highlights the two widely known methods of routing information employed in one of ...
**International Journal of Electrical and Computer Engineering (IJECE)** Vol. 11, No. 5, October 2021, pp. 4361~4372 ISSN: 2088-8708, DOI: 10.11591/ijece.v11i5.pp4361-4372  4361 # Comparative analysis of routing techniques in chord overlay network **Omoruyi Osemwegie[1], Samuel John[2], Adewale Adeyinka[3], Etinos...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.11591/IJECE.V11I5.PP4361-4372?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.11591/IJECE.V11I5.PP4361-4372, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to v...
2,021
[]
true
2021-10-01T00:00:00
[ { "paperId": "ad40dcf19c8d544c87a61a68e75084e5e4be9c19", "title": "Structured Overlay Networks for a New Generation of Internet Services" }, { "paperId": "3ca55dbdae73ab57efb7aaed32c5635dde6d9737", "title": "A Persistent Structured Hierarchical Overlay Network to Counter Intentional Churn Attack...
7,703
en
[ { "category": "Engineering", "source": "external" }, { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08f1be3af0c26bb224ec1043a0f51277091267fd
[ "Engineering", "Computer Science" ]
0.893002
ViotSOC: Controlling Access to Dynamically Virtualized IoT Services using Service Object Capability
08f1be3af0c26bb224ec1043a0f51277091267fd
CPSS@AsiaCCS
[ { "authorId": "3402281", "name": "Hajoon Ko" }, { "authorId": "38152929", "name": "Jiong Jin" }, { "authorId": "1902994", "name": "S. Keoh" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
null
### Ko, H., Jin, J., and Keoh, S. L. (2017) ViotSOC: Controlling Access to Dynamically Virtualized IoT Services using Service Object Capability. In: 3rd ACM Cyber-Physical System Security Workshop (CPSS), Abu Dhabi, UAE, 02 Apr 2017, pp. 69-80. ISBN 9781450349567. There may be differences between this version and the...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'abstract', 'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1145/3055186.3055194?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1145/3055186.3055194, which is subject to the license by the author or ...
2,017
[ "Book", "JournalArticle" ]
true
2017-04-02T00:00:00
[]
17,280
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08f26bb88017f7141dd1bc60f9779c3b47a98c19
[ "Computer Science" ]
0.907389
Smart Parking System With Privacy Preservation and Reputation Management Using Blockchain
08f26bb88017f7141dd1bc60f9779c3b47a98c19
IEEE Access
[ { "authorId": "1920731376", "name": "Mahmoud M. Badr" }, { "authorId": "104496433", "name": "Wesam Al Amiri" }, { "authorId": "32453643", "name": "M. Fouda" }, { "authorId": "144847615", "name": "Mohamed Mahmoud" }, { "authorId": "2622510", "name": "A. Aljohan...
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": [ "http://ieeexplore.ieee.org/servlet/opac?punumber=6287639" ], "id": "2633f5b2-c15c-49fe-80f5-07523e770c26", "issn": "2169-3536", "name": "IEEE Access", "type": "journal", "url": "http://www.ieee.org/publications_standards/publ...
Most of the existing smart parking systems threaten the drivers’ privacy by revealing information about their visited locations. Moreover, they are centralized making them vulnerable to a single point of failure and attack, which threatens the availability of the parking service. They also suffer from a lack of transpa...
Received August 2, 2020, accepted August 11, 2020, date of publication August 17, 2020, date of current version August 27, 2020. _Digital Object Identifier 10.1109/ACCESS.2020.3016945_ # Smart Parking System With Privacy Preservation and Reputation Management Using Blockchain MAHMOUD M. BADR 1, WESAM AL AMIRI2, MOST...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.1109/ACCESS.2020.3016945?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1109/ACCESS.2020.3016945, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the ...
2,020
[ "JournalArticle" ]
true
null
[ { "paperId": "a4ebada2722bc27faeb87d3e2f2d39a7772b455c", "title": "ASAP: An Anonymous Smart-Parking and Payment Scheme in Vehicular Networks" }, { "paperId": "43c700fdcaec1540be189cc826a84166a0978bff", "title": "A Privacy Preserving Distributed Ledger Framework for Global Human Resource Record M...
27,706
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08f359368649675b15cf38c4b60803d7b76d89b3
[ "Computer Science" ]
0.88787
A Fuzzy Logic Based Defense Mechanism against Distributed Denial of Services Attack in Cloud Environment
08f359368649675b15cf38c4b60803d7b76d89b3
Int. J. Commun. Networks Inf. Secur.
[ { "authorId": "145735325", "name": "N. Iyengar" }, { "authorId": "2117831411", "name": "Arindam Banerjee" }, { "authorId": "1768952", "name": "G. Ganapathy" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
Cloud defines a new age of computing solution that provides services to customers with its unique features of agility and multi-tenancy. As the critical resources are hosted at cloud provider’s end, security is a big challenge in cloud computing. If the cloud environment is compromised and attackers get the access of c...
# A Fuzzy Logic based Defense Mechanism against Distributed Denial of Service Attack in Cloud Computing Environment ### N.Ch.S.N. Iyengar[1], Arindam Banerjee[2] and Gopinath Ganapathy[3 ] 1, 2School of Computing Science and Engineering, VIT University, Vellore-632014, Tamil Nadu, India. 3Technology Park Bharathidasa...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.17762/ijcnis.v6i3.864?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.17762/ijcnis.v6i3.864, which is subject to the license by the author or copyright ...
2,014
[ "JournalArticle" ]
true
2014-12-01T00:00:00
[]
17,172
en
[ { "category": "Medicine", "source": "external" }, { "category": "Medicine", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08fa49b7a70974bc17a1f4a833a6a50429ed7deb
[ "Medicine" ]
0.821777
Application of Nonfungible Tokens to Health Care. Comment on “Blockchain Technology Projects to Provide Telemedical Services: Systematic Review”
08fa49b7a70974bc17a1f4a833a6a50429ed7deb
Journal of Medical Internet Research
[ { "authorId": "134162028", "name": "J. Gambril" }, { "authorId": "48635160", "name": "C. Boyd" }, { "authorId": "25653935", "name": "J. Egbaria" } ]
{ "alternate_issns": null, "alternate_names": [ "J Med Internet Res" ], "alternate_urls": [ "http://www.jmir.org/", "https://www.jmir.org/" ], "id": "2baad992-2268-4c38-9120-e453622f2eeb", "issn": "1438-8871", "name": "Journal of Medical Internet Research", "type": "journal", "url": "htt...
John Gambril, MD; Carter Boyd, MD, MBA; Jamal Egbaria, MD 1Department of Internal Medicine, Ohio State University Wexner Medical Center, Columbus, OH, United States 2Department of Pediatrics, Nationwide Children's Hospital, Columbus, OH, United States 3Hansjörg Wyss Department of Plastic Surgery, New York University La...
JOURNAL OF MEDICAL INTERNET RESEARCH Gambril et al #### Letter to the Editor # Application of Nonfungible Tokens to Health Care. Comment on “Blockchain Technology Projects to Provide Telemedical Services: Systematic Review” #### John Gambril[1,2], MD; Carter Boyd[3], MD, MBA; Jamal Egbaria[4], MD 1Department of Int...
{ "disclaimer": "Notice: Paper or abstract available at https://pmc.ncbi.nlm.nih.gov/articles/PMC9153915, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": "CCBY", "status"...
2,021
[ "JournalArticle", "Review" ]
true
2021-10-14T00:00:00
[ { "paperId": "2f68bafa4cabf926fbd288fc6b58b124d1b0caba", "title": "Non-fungible tokens: Stem cell transplantation in the blockchain." }, { "paperId": "ca194ae7014ce08d819af7b2b2275b3e4cf0e132", "title": "Blockchain Technology Projects to Provide Telemedical Services: Systematic Review" }, { ...
2,318
en
[ { "category": "Engineering", "source": "s2-fos-model" }, { "category": "Environmental Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08fba9b6a7a41736d3d60ff9d45f9d7cf07f54d3
[]
0.870124
Decentralized Emergency Control of AC Power Grid Modes with Distributed Generation
08fba9b6a7a41736d3d60ff9d45f9d7cf07f54d3
Energies
[ { "authorId": "31306899", "name": "A. Fishov" }, { "authorId": "71913831", "name": "A. Osintsev" }, { "authorId": "1752949853", "name": "A. Ghulomzoda" }, { "authorId": "2075143788", "name": "A. Marchenko" }, { "authorId": "144203982", "name": "S. Kokin" }, ...
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": [ "http://nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:ch:bel-155563", "https://www.mdpi.com/journal/energies", "http://www.mdpi.com/journal/energies" ], "id": "1cd505d9-195d-4f99-b91c-169e872644d4", "issn": "1996-1073", "na...
Large-scale development of small-scale generation, and facilities based on this, with their integration into existing distribution networks, qualitatively change the modes and tasks of network management and transform previously passive electric networks into active ones. Features of parameters and modes of small-scale...
# energies _Article_ ## Decentralized Emergency Control of AC Power Grid Modes with Distributed Generation **Alexander Fishov** **[1], Anatoly Osintsev** **[2], Anvari Ghulomzoda** **[1]** **, Andrey Marchenko** **[1], Sergey Kokin** **[3],** **Murodbek Safaraliev** **[3]** **, Stepan Dmitriev** **[3]** **and Inga Zi...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.3390/en16155607?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.3390/en16155607, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyri...
2,023
[ "JournalArticle" ]
true
2023-07-25T00:00:00
[ { "paperId": "b3d6dcf14bf41d66396a0a9881aba53c9585cba4", "title": "Applications of Agent-Based Methods in Multi-Energy Systems—A Systematic Literature Review" }, { "paperId": "96da2530e508b68a5860c84e88ddfee1acf81c94", "title": "Multi-Agent-Based Controller for Microgrids: An Overview and Case S...
22,265
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08fbd094431e32df200132b4b096cd720356760e
[ "Computer Science" ]
0.878886
Blockchain Goes Green? Part II: Characterizing the Performance and Cost of Blockchains on the Cloud and at the Edge
08fbd094431e32df200132b4b096cd720356760e
arXiv.org
[ { "authorId": "32919563", "name": "Dumitrel Loghin" }, { "authorId": "3088916", "name": "Tien Tuan Anh Dinh" }, { "authorId": "2075774766", "name": "Aung Maw" }, { "authorId": "2154643336", "name": "Gang Chen" }, { "authorId": "1805512", "name": "Y. M. Teo" ...
{ "alternate_issns": null, "alternate_names": [ "ArXiv" ], "alternate_urls": null, "id": "1901e811-ee72-4b20-8f7e-de08cd395a10", "issn": "2331-8422", "name": "arXiv.org", "type": null, "url": "https://arxiv.org" }
While state-of-the-art permissioned blockchains can achieve thousands of transactions per second on commodity hardware with x86/64 architecture, their performance when running on different architectures is not clear. The goal of this work is to characterize the performance and cost of permissioned blockchains on differ...
## Blockchain Goes Green? Part II: Characterizing the Performance and Cost of Blockchains on the Cloud and at the Edge ### Dumitrel Loghin ##### School of Computing National University of Singapore dumitrel@comp.nus.edu.sg ### Tien Tuan Anh Dinh ##### Information Systems Technology and Design Singapore University o...
{ "disclaimer": "Notice: Paper or abstract available at https://arxiv.org/abs/2205.06941, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": null, "status": "GREEN", "url"...
2,022
[ "JournalArticle" ]
true
2022-05-14T00:00:00
[ { "paperId": "63db9875b8cd0994f6bfdfc68172e579682adc96", "title": "Blockchains vs. Distributed Databases: Dichotomy and Fusion" }, { "paperId": "0fc3066cae7c500a5d029eaf9e71034906784a22", "title": "A Transactional Perspective on Execute-order-validate Blockchains" }, { "paperId": "f02c1b...
16,991
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/08fbddea9b9f46a1d3abfe2700b5a3184465f076
[ "Computer Science" ]
0.908518
Decentralized Network-Level Synchronization in Mobile Ad Hoc Networks
08fbddea9b9f46a1d3abfe2700b5a3184465f076
TOSN
[ { "authorId": "34777450", "name": "Spyros Voulgaris" }, { "authorId": "47381091", "name": "M. Dobson" }, { "authorId": "144401478", "name": "M. Steen" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
null
## Decentralized Network-Level Synchronization in Mobile Ad Hoc Networks SPYROS VOULGARIS, VU University, The Netherlands and University of Patras, Greece MATTHEW DOBSON, VU University, The Netherlands MAARTEN VAN STEEN, University of Twente, The Netherlands Energy is the scarcest resource in ad hoc wireless networks...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'abstract', 'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1145/2880223?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1145/2880223, which is subject to the license by the author or copyright owner ...
2,016
[ "JournalArticle" ]
true
2016-03-21T00:00:00
[]
33,902
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/0909c78f744c63f0c508585434c5de41a516fdb5
[ "Computer Science" ]
0.85741
A scheme of resource allocation and stability for peer–to–peer file–sharing networks
0909c78f744c63f0c508585434c5de41a516fdb5
International Journal of Applied Mathematics and Computer Sciences
[ { "authorId": "2118325125", "name": "Shiyong Li" }, { "authorId": "2789890", "name": "Wei Sun" }, { "authorId": "47833382", "name": "C. E" }, { "authorId": "2215131329", "name": "Linda Shi" } ]
{ "alternate_issns": [ "1641-876X", "2333-2425" ], "alternate_names": [ "Int j appl math comput sci", "International journal of applied mathematics and computing science", "Int J Appl Math Comput Sci", "International Journal of Applied Mathematics and Computer Science" ], "alternate_ur...
Abstract Peer-to-peer (P2P) networks offer a cost-effective and easily deployable framework for sharing content. However, P2P file-sharing applications face a fundamental problem of unfairness. Pricing is regarded as an effective way to provide incentives to peers to cooperate. In this paper we propose a pricing scheme...
Int. J. Appl. Math. Comput. Sci., 2016, Vol. 26, No. 3, 707–719 DOI: 10.1515/amcs-2016-0049 # A SCHEME OF RESOURCE ALLOCATION AND STABILITY FOR PEER–TO–PEER FILE–SHARING NETWORKS SHIYONG LI _[a], WEI SUN_ _[a,][∗], CHENG-GUO E_ _[a,b], LINA SHI_ _[a,b]_ _aSchool of Economics and Management_ Yanshan University, Qinhu...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.1515/amcs-2016-0049?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1515/amcs-2016-0049, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license an...
2,016
[ "JournalArticle" ]
true
2016-09-01T00:00:00
[ { "paperId": "5a3eb0776268c5cf45d42ffa463978555c67f6b3", "title": "A mechanism for resource pricing and fairness in peer-to-peer networks" }, { "paperId": "3e35d4f6527622b219a59454bf5a4d6ab7c6efbe", "title": "Feasibility and issues for establishing network-based carpooling scheme" }, { "...
16,516
en
[ { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Agricultural and Food Sciences", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/090b446edccaef588ab66f59cababe5dce311cc8
[]
0.871085
Information Sharing Management System Based on Blockchain Using Deep Reinforcement Learning
090b446edccaef588ab66f59cababe5dce311cc8
International Journal of Scientific Research in Computer Science Engineering and Information Technology
[ { "authorId": "2164435929", "name": "Ms. Shruti Belsare" }, { "authorId": "2164435999", "name": "Dr. A. B. Raut" } ]
{ "alternate_issns": null, "alternate_names": [ "Int J Sci Res Comput Sci Eng Inf Technol" ], "alternate_urls": null, "id": "61a26733-f8ab-4c45-8bd1-5d75465606e3", "issn": "2456-3307", "name": "International Journal of Scientific Research in Computer Science Engineering and Information Technology", ...
In recent years, the food supply system has become increasingly globalized. Traditional traceability systems have issues with centralized administration, opaque information, untrustworthy data, and the ease with which information islands can be created. To address the aforementioned issues, this study proposes a blockc...
[International Journal of Scientific Research in Computer Science, Engineering and Information Technology](http://ijsrcseit.com/) ISSN : 2456-3307 (www.ijsrcseit.com) [doi : https://doi.org/10.32628/CSEIT228216](https://doi.org/10.32628/CSEIT228216) # Information Sharing Management System Based on Blockchain Using ...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.32628/cseit228216?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.32628/cseit228216, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and co...
2,022
[]
true
2022-03-05T00:00:00
[ { "paperId": "0fe255a487cdee86fdba6811e61d1d4d777723f0", "title": "Boundary conditions for traceability in food supply chains using blockchain technology" }, { "paperId": "b45a3e6a7afd4ac786ffafb01b6d197e6b59ad10", "title": "Blockchain-Based Traceability and Visibility for Agricultural Products:...
5,021
en
[ { "category": "Business", "source": "s2-fos-model" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/090bdf82da075fe5e5f68f39f4de8aae477ddc8f
[]
0.879702
Internet of Things and Blockchain Revolutionary Integration in the Business and Financial Sector
090bdf82da075fe5e5f68f39f4de8aae477ddc8f
Asian Business Review
[ { "authorId": "2248437691", "name": "Karu Lal" }, { "authorId": "2244403271", "name": "Upendar Rao Thaduri" }, { "authorId": "2244404759", "name": "Sreekanth Dekkati" } ]
{ "alternate_issns": null, "alternate_names": [ "Asian bus rev", "Asian business review", "Asian Bus Rev" ], "alternate_urls": null, "id": "6ab5de74-296a-4d07-a47a-d9dd748f807e", "issn": "2304-2613", "name": "Asian Business Review", "type": "journal", "url": "http://journals.abc.us.org/ind...
Many applications of the Internet of Things have been developed, and these applications are causing people's lifestyles to shift. The Internet of Things (IoT) finance refers to the various applications of the Internet of Things that have the potential to extend financial services throughout the entirety of the IoT comm...
# Internet of Things and Blockchain Revolutionary Integration in the Business and Financial Sector ### Karu Lal[1*], Upendar Rao Thaduri[2], Sreekanth Dekkati[3] 1Integration Engineer, Ohio National Financial Services, USA 2ACE Developer, iMINDS Technology Systems, Inc., Pittsburgh, PA 15243, USA 3Assistant Vice Pres...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.18034/abr.v12i3.664?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.18034/abr.v12i3.664, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license an...
2,022
[ "JournalArticle" ]
true
2022-12-31T00:00:00
[ { "paperId": "109a9bcb9e48d963f98f5c35fe503b350b44877a", "title": "CMS - Intelligent Machine Translation with Adaptation and AI" }, { "paperId": "0e8c9f3ddf94a43770680bb7b126e690ab2411bc", "title": "Algorithm Policy for the Authentication of Indirect Fingerprints Used in Cloud Computing" }, ...
9,067
en
[ { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/090f63b7588582eb73e2b8a974ee6b3220da6ca1
[]
0.864319
Blockchain-Based Decentralized Identification in IoT: An Overview of Existing Frameworks and Their Limitations
090f63b7588582eb73e2b8a974ee6b3220da6ca1
Electronics
[ { "authorId": "2147251852", "name": "Seyed Mohammad Hosseini" }, { "authorId": "2117796591", "name": "J. Ferreira" }, { "authorId": "1821013", "name": "P. Bartolomeu" } ]
{ "alternate_issns": [ "2079-9292", "0883-4989" ], "alternate_names": null, "alternate_urls": [ "http://www.e-helvetica.nb.admin.ch/directAccess?callnumber=bel-247562", "http://nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:ch:bel-247562", "https://www.mdpi.com/journal/electronics" ], "id"...
The popularity of the Internet of Things (IoT) and Industrial IoT (IIoT) has caused a rapid increase in connected entities and exposed its lack of adequate Identity Management (IdM). Traditional IdM systems are highly dependent on central authorities; any failure can potentially compromise the entire system. To elimina...
# electronics _Review_ ## Blockchain-Based Decentralized Identification in IoT: An Overview of Existing Frameworks and Their Limitations **Seyed Mohammad Hosseini** **[1,]*** **, Joaquim Ferreira** **[2]** **and Paulo C. Bartolomeu** **[3]** 1 Instituto de Telecomunicações, Universidade de Aveiro, 3810-193 Aveiro, P...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.3390/electronics12061283?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.3390/electronics12061283, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the ...
2,023
[ "Review" ]
true
2023-03-07T00:00:00
[ { "paperId": "0629919c6961fade22bc835a9e49e3411b7e465a", "title": "Trustful Blockchain-Based Framework for Privacy Enabling Voting in a University" }, { "paperId": "0227d8aca57de41a14d396350e12f28d4aabe480", "title": "Towards Improving Privacy and Security of Identity Management Systems Using Bl...
17,844
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Environmental Science", "source": "s2-fos-model" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/091461cb18c413c77037a6a5e08415e91a01f4fc
[ "Computer Science" ]
0.868366
Cooperative Multi-Objective Reinforcement Learning for Traffic Signal Control and Carbon Emission Reduction
091461cb18c413c77037a6a5e08415e91a01f4fc
arXiv.org
[ { "authorId": "2220769218", "name": "Cheng Ruei Tang" }, { "authorId": "144717607", "name": "J. Hsieh" }, { "authorId": "1739129480", "name": "Shin-You Teng" } ]
{ "alternate_issns": null, "alternate_names": [ "ArXiv" ], "alternate_urls": null, "id": "1901e811-ee72-4b20-8f7e-de08cd395a10", "issn": "2331-8422", "name": "arXiv.org", "type": null, "url": "https://arxiv.org" }
Existing traffic signal control systems rely on oversimplified rule-based methods, and even RL-based methods are often suboptimal and unstable. To address this, we propose a cooperative multi-objective architecture called Multi-Objective Multi-Agent Deep Deterministic Policy Gradient (MOMA-DDPG), which estimates multip...
## Cooperative Multi-Objective Reinforcement Learning for Traffic Signal Control and Carbon Emission Reduction **Cheng Ruei Tang[1],Jun Wei Hsieh[2],Shin You Teng[3],[∗]** 123National Yang Ming Chiao Tung University, 13Institute of Computational Intelligence student,2Professor of Computational Intelligence 1ray86224@...
{ "disclaimer": "Notice: Paper or abstract available at https://arxiv.org/abs/2306.09662, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": null, "status": "GREEN", "url"...
2,023
[ "JournalArticle" ]
true
2023-06-16T00:00:00
[ { "paperId": "ca6b4be95b54cc702ca6fbdcb1ad921ba0f36258", "title": "Value Iteration in Continuous Actions, States and Time" }, { "paperId": "655289aa488769b8b3e91731390c4611d964b8bf", "title": "Recent Advances in Reinforcement Learning for Traffic Signal Control" }, { "paperId": "62876b01...
15,927
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/091493058b67d7576ee452e6a44681e2d28099d6
[ "Computer Science" ]
0.830605
Decentralized Event-Triggered Federated Learning with Heterogeneous Communication Thresholds
091493058b67d7576ee452e6a44681e2d28099d6
IEEE Conference on Decision and Control
[ { "authorId": "2161967429", "name": "Shahryar Zehtabi" }, { "authorId": "2911998", "name": "Seyyedali Hosseinalipour" }, { "authorId": "145009961", "name": "Christopher G. Brinton" } ]
{ "alternate_issns": null, "alternate_names": [ "Conference on Decision and Control", "IEEE Conf Decis Control", "Conf Decis Control", "CDC" ], "alternate_urls": null, "id": "ab066af1-bfee-42da-84bb-42f7e199d0d0", "issn": null, "name": "IEEE Conference on Decision and Control", "type": "...
A recent emphasis of distributed learning research has been on federated learning (FL), in which model training is conducted by the data-collecting devices. Existing research on FL has mostly focused on a star topology learning architecture with synchronized (time-triggered) model training rounds, where the local model...
## Decentralized Event-Triggered Federated Learning with Heterogeneous Communication Thresholds ### Shahryar Zehtabi, Seyyedali Hosseinalipour, Christopher G. Brinton **_Abstract— A recent emphasis of distributed learning research_** **has been on federated learning (FL), in which model training** **is conducted by ...
{ "disclaimer": "Notice: Paper or abstract available at https://arxiv.org/abs/2204.03726, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": null, "status": "GREEN", "url"...
2,022
[ "JournalArticle", "Conference" ]
true
2022-04-07T00:00:00
[ { "paperId": "263762edd4e8d5866e4bfb71015d1e8d03941f0d", "title": "Fast Federated Learning in the Presence of Arbitrary Device Unavailability" }, { "paperId": "16a7dcb0332e02c502174a6210e8cfcde9f8762a", "title": "Semi-Decentralized Federated Learning With Cooperative D2D Local Model Aggregations...
15,376
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/0916e66bad1a9dcabc53aeffff40716e8631e448
[ "Computer Science" ]
0.863434
FedCoCo: A Memory Efficient Federated Self-supervised Framework for On-Device Visual Representation Learning
0916e66bad1a9dcabc53aeffff40716e8631e448
arXiv.org
[ { "authorId": "8353931", "name": "Jiahe Shi" }, { "authorId": "2107887906", "name": "Yawen Wu" }, { "authorId": "2051047670", "name": "Dewen Zeng" }, { "authorId": "2118517757", "name": "Jingtong Hu" }, { "authorId": "1702907", "name": "Yiyu Shi" } ]
{ "alternate_issns": null, "alternate_names": [ "ArXiv" ], "alternate_urls": null, "id": "1901e811-ee72-4b20-8f7e-de08cd395a10", "issn": "2331-8422", "name": "arXiv.org", "type": null, "url": "https://arxiv.org" }
null
# Self-supervised On-device Federated Learning from Unlabeled Streams ### Jiahe Shi, Yawen Wu, Dewen Zeng, Jun Tao, senior member, IEEE, Jingtong Hu, senior member, IEEE, Yiyu Shi, senior member, IEEE, **_Abstract—The ubiquity of edge devices has led to a growing_** **amount of unlabeled data produced at the edge. D...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'references', 'abstract'}. Paper or abstract available at https://api.unpaywall.org/v2/10.48550/arXiv.2212.01006?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.48550/arXiv.2212.01006, which is subject to the license by the author...
2,022
[ "JournalArticle" ]
true
null
[]
16,468
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/0917240af442acd78f261085a32f12e3d5754404
[ "Computer Science" ]
0.886488
Front-running Attack in Distributed Sharded Ledgers and Fair Cross-shard Consensus
0917240af442acd78f261085a32f12e3d5754404
arXiv.org
[ { "authorId": "2257312248", "name": "Jianting Zhang" }, { "authorId": "2257370299", "name": "Wuhui Chen" }, { "authorId": "2220858756", "name": "Sifu Luo" }, { "authorId": "2105937283", "name": "Tiantian Gong" }, { "authorId": "89600513", "name": "Zicong Hong"...
{ "alternate_issns": null, "alternate_names": [ "ArXiv" ], "alternate_urls": null, "id": "1901e811-ee72-4b20-8f7e-de08cd395a10", "issn": "2331-8422", "name": "arXiv.org", "type": null, "url": "https://arxiv.org" }
null
# Front-running Attack in Sharded Blockchains and Fair Cross-shard Consensus #### Jianting Zhang[∗], Wuhui Chen[†‡], Sifu Luo[†], Tiantian Gong[∗], Zicong Hong[§], and Aniket Kate[∗¶] _∗Purdue University,†Sun Yat-sen University, ‡Pengcheng Laboratory_ _§The Hong Kong Polytechnic University, ¶Supra Research_ **_Abs...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'references', 'abstract'}. Paper or abstract available at https://api.unpaywall.org/v2/10.48550/arXiv.2306.06299?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.48550/arXiv.2306.06299, which is subject to the license by the author...
2,023
[ "JournalArticle" ]
true
null
[]
30,948
en
[ { "category": "Environmental Science", "source": "s2-fos-model" }, { "category": "Economics", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/09192182e21b4afc77f18bf30b335d72a5a865e0
[]
0.875651
Towards a Sustainable Future: Economic Cybernetics in Analyzing Romania’s Circular Economy
09192182e21b4afc77f18bf30b335d72a5a865e0
Sustainability
[ { "authorId": "30883846", "name": "I. Nica" }, { "authorId": "3219890", "name": "Nora Chiriță" }, { "authorId": "2877513", "name": "Camelia Delcea" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": [ "http://mdpi.com/journal/sustainability", "http://nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:ch:bel-172127" ], "id": "8775599f-4f9a-45f0-900e-7f4de68e6843", "issn": "2071-1050", "name": "Sustainability", "type": "journal",...
The Circular Economy represents an essential strategy for a more sustainable future, both for the environment and for the economy and society. The main purpose of this article is to conduct a holistic analysis that highlights Romania’s perspectives in the transition and integration process towards the Circular Economy....
## sustainability _Article_ # Towards a Sustainable Future: Economic Cybernetics in Analyzing Romania’s Circular Economy **Ionut, Nica *** **, Nora Chirit,ă and Camelia Delcea** Department of Economic Informatics and Cybernetics, Bucharest University of Economic Studies, 0105552 Bucharest, Romania; nora.chirita@csie...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.3390/su151914433?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.3390/su151914433, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copy...
2,023
[ "JournalArticle" ]
true
2023-10-02T00:00:00
[ { "paperId": "770235b7a1aba118b6c11100e90d8412f9f04512", "title": "A Comprehensive Analysis of Renewable Energy Based on Integrating Economic Cybernetics and the Autoregressive Distributed Lag Model—The Case of Romania" }, { "paperId": "42ee3b7ad75f5b23b14fc2e0b0fbe7ac6bbf1ea7", "title": "Role o...
32,914
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/091aab0cf9321fa7521c634911191d5ff2ab8f12
[ "Computer Science" ]
0.874539
Massive distributed and parallel log analysis for organizational security
091aab0cf9321fa7521c634911191d5ff2ab8f12
2013 IEEE Globecom Workshops (GC Wkshps)
[ { "authorId": "1770219", "name": "Xiaokui Shu" }, { "authorId": "2490940", "name": "John Smiy" }, { "authorId": "144805631", "name": "D. Yao" }, { "authorId": "3143746", "name": "Heshan Lin" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
null
# Massive Distributed and Parallel Log Analysis For Organizational Security ## Xiaokui Shu, John Smiy, Danfeng (Daphne) Yao, and Heshan Lin Department of Computer Science Virginia Tech Blacksburg, Virginia 24060 Emails: subx, jsmiy, danfeng, hlin2 @cs.vt.edu _{_ _}_ **_Abstract—Security log analysis is extremely use...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'abstract', 'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1109/GLOCOMW.2013.6824985?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1109/GLOCOMW.2013.6824985, which is subject to the license by the ...
2,013
[ "JournalArticle" ]
false
2013-12-01T00:00:00
[]
7,526
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/091b7275abdb297ff7aedfa46e710352fcd21a0d
[ "Computer Science" ]
0.895318
LPKI - A lightweight public key Infrastructure for the mobile environments
091b7275abdb297ff7aedfa46e710352fcd21a0d
2008 11th IEEE Singapore International Conference on Communication Systems
[ { "authorId": "1912949", "name": "Mohsen Toorani" }, { "authorId": "145772435", "name": "A. Beheshti" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
The non-repudiation as an essential requirement of many applications can be provided by the asymmetric key model. With the evolution of new applications such as mobile commerce, it is essential to provide secure and efficient solutions for the mobile environments. The traditional public key cryptography involves huge c...
# LPKI - A Lightweight Public Key Infrastructure for the Mobile Environments [†] ## Mohsen Toorani [‡] Ali A. Beheshti **_Abstract— The non-repudiation as an essential requirement of_** time. It is also an essential task especially when the **many applications can be provided by the asymmetric key model.** cryptograp...
{ "disclaimer": "Notice: Paper or abstract available at https://arxiv.org/abs/1002.3299, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": null, "status": "GREEN", "url":...
2,008
[ "JournalArticle", "Conference" ]
true
2008-11-01T00:00:00
[ { "paperId": "2fa892261e6e89431158e74def1ab611da2a2994", "title": "Elliptic Curve Cryptography Subject Public Key Information" }, { "paperId": "5b10bf5f96d91aae1b081880080937a6ec7b5226", "title": "SSMS - A secure SMS messaging protocol for the m-payment systems" }, { "paperId": "9f4bb089...
6,656
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/091b7fe25484cb42b75b4772dd104369ef98061e
[ "Computer Science" ]
0.855418
High Scalability of HDFS using Distributed Namespace
091b7fe25484cb42b75b4772dd104369ef98061e
[ { "authorId": "2286413130", "name": "Harcharan Jit" }, { "authorId": "2286479281", "name": "Singh V. P. Singh" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
null
_Volume 52– No.17, August 2012_ # High Scalability of HDFS using Distributed Namespace ## Harcharan Jit Singh V. P. Singh #### Department of Computer Science and Engineering, Thapar University, Patiala, Punjab, India ## ABSTRACT In data intensive computing, Hadoop is widely used by organizations. The client a...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'abstract', 'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.5120/8297-1860?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.5120/8297-1860, which is subject to the license by the author or copyright ow...
2,012
[]
true
2012-08-30T00:00:00
[]
11,156
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/091b9b089325bfff0c327937fb7df08bc81a66b8
[ "Computer Science" ]
0.879831
Secure Privacy Implications for Clients and End-users through Key Assortment Crypto Techniques Implicated Algorithm
091b9b089325bfff0c327937fb7df08bc81a66b8
[ { "authorId": "143943271", "name": "D. Ramesh" }, { "authorId": "143608162", "name": "B. Rama" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
The main role of key assortment crypto techniques will helpful to provide the security to the sensitive data and play the key role for business developments. Some of the problems are rising when the scheme will sustain the possession control to present the latest set of technical and business concerns. Some of the comp...
**International Journal of Electrical and Computer Engineering (IJECE)** Vol. 8, No. 6, December 2018, pp. 5443~5448 ISSN: 2088-8708, DOI: 10.11591/ijece.v8i6.pp5443-5448  5443 # Secure Privacy Implications for Clients and End-users through Key Assortment Crypto Techniques Implicated Algorithm **D. Ramesh, B. Ram...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.11591/IJECE.V8I6.PP5443-5448?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.11591/IJECE.V8I6.PP5443-5448, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to ver...
2,018
[]
true
2018-12-01T00:00:00
[]
4,995
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Engineering", "source": "s2-fos-model" }, { "category": "Environmental Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/091cf36a3e04688502d6fe5b7ce0ad978f15aeaf
[ "Computer Science" ]
0.830908
Decentralized Data-Driven Load Restoration in Coupled Transmission and Distribution System With Wind Power
091cf36a3e04688502d6fe5b7ce0ad978f15aeaf
IEEE Transactions on Power Systems
[ { "authorId": "2109972191", "name": "Jin Zhao" }, { "authorId": "145685218", "name": "Qiuwei Wu" }, { "authorId": "32469781", "name": "N. Hatziargyriou" }, { "authorId": "33480933", "name": "F. Li" }, { "authorId": "50572758", "name": "Fei Teng" } ]
{ "alternate_issns": null, "alternate_names": [ "IEEE Trans Power Syst" ], "alternate_urls": null, "id": "dbbda9ef-0504-4875-b893-5c964f6b8f0e", "issn": "0885-8950", "name": "IEEE Transactions on Power Systems", "type": "journal", "url": "http://ieeexplore.ieee.org/servlet/opac?punumber=59" }
null
###### Decentralized Data-Driven Load Restoration in Coupled Transmission and Distribution System with Wind Power **Zhao, Jin ; Wu, Qiuwei; Hatziargyriou, Nikos D.; Li, Fangxing; Teng, Fei** _Published in:_ IEEE Transactions on Power Systems _Link to article, DOI:_ [10.1109/TPWRS.2021.3063114](https://doi.org/10.110...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'references', 'abstract'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1109/TPWRS.2021.3063114?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1109/TPWRS.2021.3063114, which is subject to the license by the auth...
2,021
[]
true
2021-03-02T00:00:00
[]
19,582
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Engineering", "source": "s2-fos-model" }, { "category": "Environmental Science", "source": "s2-fos-model" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/091e96d54966f0acd1e519575634772e522c4c72
[ "Computer Science" ]
0.882813
A Robust Multi-Stage Power Consumption Prediction Method in a Semi-Decentralized Network of Electric Vehicles
091e96d54966f0acd1e519575634772e522c4c72
IEEE Access
[ { "authorId": "2044316652", "name": "Zhishang Wang" }, { "authorId": null, "name": "Abderazek Ben Abdallah" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": [ "http://ieeexplore.ieee.org/servlet/opac?punumber=6287639" ], "id": "2633f5b2-c15c-49fe-80f5-07523e770c26", "issn": "2169-3536", "name": "IEEE Access", "type": "journal", "url": "http://www.ieee.org/publications_standards/publ...
A Virtual Power Plant (VPP) balances the load on a power grid by allocating power generated by various interconnected units during periods of peak demand. In addition, demand-side energy devices such as Electric Vehicles (EVs) and mobile robots can also balance energy supply and demand when effectively deployed. Howeve...
Received March 7, 2022, accepted March 20, 2022, date of publication March 30, 2022, date of current version April 11, 2022. _Digital Object Identifier 10.1109/ACCESS.2022.3163455_ # A Robust Multi-Stage Power Consumption Prediction Method in a Semi-Decentralized Network of Electric Vehicles ZHISHANG WANG, (Graduate...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.1109/ACCESS.2022.3163455?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1109/ACCESS.2022.3163455, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the ...
2,022
[ "JournalArticle" ]
true
null
[ { "paperId": "a025ad05916ddf3281a2bca0cdffbaed99a2c9dd", "title": "Federated Learning Meets Blockchain in Edge Computing: Opportunities and Challenges" }, { "paperId": "b85f98e962907d86782cd7443490559680d1515a", "title": "FedMCCS: Multicriteria Client Selection Model for Optimal IoT Federated Le...
16,590
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Environmental Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/092025bdb82c8ea4d31a04c5870ea4d2ce7923ed
[ "Computer Science" ]
0.858349
DataFed: Towards Reproducible Research via Federated Data Management
092025bdb82c8ea4d31a04c5870ea4d2ce7923ed
2019 International Conference on Computational Science and Computational Intelligence (CSCI)
[ { "authorId": "2174780", "name": "Dale Stansberry" }, { "authorId": "46403007", "name": "S. Somnath" }, { "authorId": "1620486288", "name": "Jessica Breet" }, { "authorId": "101533038", "name": "greg shutt" }, { "authorId": "46233324", "name": "M. Shankar" }...
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
The increasingly collaborative, globalized nature of scientific research combined with the need to share data and the explosion in data volumes present an urgent need for a scientific data management system (SDMS). An SDMS presents a logical and holistic view of data that greatly simplifies and empowers data organizati...
This manuscript has been authored by UT-Battelle, LLC, under contract DE-AC05-00OR22725 with the US Department of Energy (DOE). The US government retains and the publisher, by accepting the article for publication, acknowledges that the US government retains a nonexclusive, paid-up, irrevocable, worldwide license to pu...
{ "disclaimer": "Notice: Paper or abstract available at https://arxiv.org/abs/2004.03710, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": null, "status": "GREEN", "url"...
2,019
[ "JournalArticle", "Conference" ]
true
2019-12-01T00:00:00
[ { "paperId": "daf431f0a396b72c7f41dafc8afff8357705546e", "title": "Clowder: Open Source Data Management for Long Tail Data" }, { "paperId": "16790337b3c9597c2781e6677b5f88c8bf3ce6df", "title": "Globus: A Case Study in Software as a Service for Scientists" }, { "paperId": "8399752a2e59409...
7,877
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/092198570c47214918096d539b1043ed8d2c4cf3
[ "Computer Science" ]
0.869879
Proofs of Proof-of-Stake with Sublinear Complexity
092198570c47214918096d539b1043ed8d2c4cf3
IACR Cryptology ePrint Archive
[ { "authorId": "2185414475", "name": "Shresth Agrawal" }, { "authorId": "34640741", "name": "Joachim Neu" }, { "authorId": "103294719", "name": "Ertem Nusret Tas" }, { "authorId": "9716253", "name": "Dionysis Zindros" } ]
{ "alternate_issns": null, "alternate_names": [ "IACR Cryptol eprint Arch" ], "alternate_urls": null, "id": "166fd2b5-a928-4a98-a449-3b90935cc101", "issn": null, "name": "IACR Cryptology ePrint Archive", "type": "journal", "url": "http://eprint.iacr.org/" }
Popular Ethereum wallets (like MetaMask) entrust centralized infrastructure providers (e.g., Infura) to run the consensus client logic on their behalf. As a result, these wallets are light-weight and high-performant, but come with security risks. A malicious provider can mislead the wallet by faking payments and balanc...
## Proofs of Proof-of-Stake with Sublinear Complexity ### Shresth Agrawal � � Technische Universität München, Germany ### Joachim Neu � � Stanford University, USA ### Ertem Nusret Tas � � Stanford University, USA ### Dionysis Zindros � � Stanford University, USA **Abstract** Popular Ethereum wallets (like MetaM...
{ "disclaimer": "Notice: Paper or abstract available at https://arxiv.org/abs/2209.08673, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": null, "status": "GREEN", "url"...
2,022
[ "JournalArticle" ]
true
2022-09-18T00:00:00
[ { "paperId": "e7230fbf1832e68d9d29aa84f50f385241b3202c", "title": "zkBridge: Trustless Cross-chain Bridges Made Practical" }, { "paperId": "a1374cdd1bb7abee21c7f60b3d04709c56243d32", "title": "Light Clients for Lazy Blockchains" }, { "paperId": "1b6652acd16b99e877c42002fea83e1fb3418af8",...
37,708
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/0921ce7f9976cd6ceef251fa8abdfa5b85989338
[ "Computer Science" ]
0.905755
Blockchain-based certification of research outputs and academic achievements: A case of scientific conference
0921ce7f9976cd6ceef251fa8abdfa5b85989338
Conference on Computer Science and Information Systems
[ { "authorId": "1746757", "name": "Robert Susik" }, { "authorId": "1877821", "name": "Robert Nowotniak" }, { "authorId": "2258209903", "name": "Emanuel Kulczycki" } ]
{ "alternate_issns": null, "alternate_names": [ "Fed Conf Comput Sci Inf Syst", "Conf Comput Sci Inf Syst", "FedCSIS", "Federated Conference on Computer Science and Information Systems" ], "alternate_urls": null, "id": "ef00f0de-a7e5-443a-9a2d-c78502a4b598", "issn": null, "name": "Conferen...
null
## Blockchain-based certification of research outputs and academic achievements: A case of scientific conference ### Robert Susik 0000-0003-0653-433X Lodz University of Technology, Institute of Applied Computer Science Al. Politechniki 11, 90–924 Łód´z, Poland Email: rsusik@kis.p.lodz.pl ### Robert Nowotniak 0000-0003...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.15439/2023f9620?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.15439/2023f9620, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyri...
2,023
[ "JournalArticle" ]
true
2023-10-11T00:00:00
[]
4,610
en
[ { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/092282d40eea6685d98143c8196ac7b4901f1f1d
[]
0.876607
Identification : DCC-UFBA 12-2006 Title : Knowledge Connectivity vs . Synchrony Requirements for Fault-Tolerant Agreement in Unknown Networks
092282d40eea6685d98143c8196ac7b4901f1f1d
[ { "authorId": "1707640", "name": "S. Tixeuil" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
null
#### Knowledge Connectivity vs. Synchrony Requirements for Fault-Tolerant Agreement in Unknown Networks ###### Fabiola Greve, Sébastien Tixeuil To cite this version: Fabiola Greve, Sébastien Tixeuil. Knowledge Connectivity vs. Synchrony Requirements for Fault- Tolerant Agreement in Unknown Networks. [Research Repo...
{ "disclaimer": null, "license": null, "status": null, "url": "" }
2,006
[]
false
null
[]
15,437
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Business", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/0923017aafd5e8a01bce1bdc4e0ced60d13b16f1
[ "Computer Science" ]
0.818117
Critical Success Factors Evaluation for Blockchain's Adoption and Implementing
0923017aafd5e8a01bce1bdc4e0ced60d13b16f1
Syst.
[ { "authorId": "31171833", "name": "M. Grida" }, { "authorId": "2145856648", "name": "S. A. Elrahman" }, { "authorId": "2126735", "name": "Khalid A. Eldrandaly" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
Blockchain has completely changed how business is performed today, thus making it one of the most disruptive technologies in recent times. However, it is a challenging task to adopt and implement blockchain technologies in different services and industries. Therefore, this study introduces a framework for investigating...
# systems _Article_ #### Critical Success Factors Evaluation for Blockchain’s Adoption and Implementing **Mohamed O. Grida** **[1]** **, Samah Abd Elrahman** **[2,]*** **and Khalid A. Eldrandaly** **[2]** 1 Industrial Engineering Department, Faculty of Engineering, Zagazig University, Zagazig 44519, Egypt 2 Informat...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.3390/systems11010002?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.3390/systems11010002, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license ...
2,022
[ "JournalArticle" ]
true
2022-12-21T00:00:00
[ { "paperId": "e9fd9bf20e8f085875123729891e1f4fdbfd536a", "title": "A Novel General Data Envelopment Analysis Based Approach for MCDM Issues of Hydrogen Energy under a Fuzzy Environment" }, { "paperId": "4009d98813be9a2549950ec2decc3c22978453fe", "title": "Evaluation of Critical Success Factors f...
21,016
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/09236a373e5b10b84ef5cbdc98a9c87eb58cd410
[ "Computer Science" ]
0.916396
How Blockchain and AI Enable Personal Data Privacy and Support Cybersecurity
09236a373e5b10b84ef5cbdc98a9c87eb58cd410
Blockchain Potential in AI [Working Title]
[ { "authorId": "1578288632", "name": "Stanton Heister" }, { "authorId": "2485284", "name": "Kristi Yuthas" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
Recent increases in security breaches and digital surveillance highlight the need for improved privacy and security, particularly over users’ personal data. Advances in cybersecurity and new legislation promise to improve data protection. Blockchain and distributed ledger technologies provide novel opportunities for pr...
## We are IntechOpen, the world’s leading publisher of Open Access books Built by scientists, for scientists # 6,700 Open access books available # 180,000 195M International authors and editors Our authors are among the Downloads # 12.2% # 154 TOP 1% Countries delivered to most cited scientists Contribut...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.5772/INTECHOPEN.96999?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.5772/INTECHOPEN.96999, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the licens...
2,021
[]
true
2021-03-25T00:00:00
[ { "paperId": "ac0854da422d603e725b49f0d6006d41214cbf7e", "title": "Convergence of blockchain and artificial intelligence in IoT network for the sustainable smart city" }, { "paperId": "5f03efc2ddec8115f33c028dd4bdae2a6d715681", "title": "Blockchain-based federated identity and auditing" }, {...
8,723
en
[ { "category": "Medicine", "source": "external" }, { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/09241b45a03b81ab76113ccece672b9097039459
[ "Medicine", "Computer Science" ]
0.852647
Rational Uniform Consensus with General Omission Failures
09241b45a03b81ab76113ccece672b9097039459
Computational Intelligence and Neuroscience
[ { "authorId": "2108065255", "name": "Yansong Zhang" }, { "authorId": "2114338318", "name": "Bo Shen" }, { "authorId": "2982407", "name": "Yingsi Zhao" } ]
{ "alternate_issns": null, "alternate_names": [ "Comput Intell Neurosci" ], "alternate_urls": null, "id": "f32b7322-b69c-4e63-801d-8f50784ef778", "issn": "1687-5265", "name": "Computational Intelligence and Neuroscience", "type": "journal", "url": "https://www.hindawi.com/journals/cin/" }
Generally, system failures, such as crash failures, Byzantine failures, and so on, are considered as common reasons for the inconsistencies of distributed consensus and have been extensively studied. In fact, strategic manipulations by rational agents are not ignored for reaching consensus in a distributed system. In t...
Hindawi Computational Intelligence and Neuroscience Volume 2022, Article ID 9544059, 18 pages [https://doi.org/10.1155/2022/9544059](https://doi.org/10.1155/2022/9544059) # Research Article Rational Uniform Consensus with General Omission Failures ### Yansong Zhang,[1][,][2] Bo Shen,[1][,][2] and Yingsi Zhao 3 _1Sch...
{ "disclaimer": "Notice: Paper or abstract available at https://arxiv.org/abs/2208.07740, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": "CCBY", "status": "GOLD", "url...
2,022
[ "JournalArticle" ]
true
2022-08-16T00:00:00
[ { "paperId": "c38f4118dc0d2a8c9f6d790e32b0ca8e9e051d78", "title": "Rational Agreement in the Presence of Crash Faults" }, { "paperId": "20ed1c8a542de71f57392cfd3b4040ed553257cd", "title": "Distributed eventual leader election in the crash-recovery and general omission failure models." }, { ...
30,136
en
[ { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/09247ffc98b3f1e1c16b95e347d4a64a586508eb
[]
0.851853
Dynamic Deduplication Algorithm for Cross-User Duplicate Data in Hybrid Cloud Storage
09247ffc98b3f1e1c16b95e347d4a64a586508eb
Security and Communication Networks
[ { "authorId": "2178877780", "name": "Feng Gang" }, { "authorId": "2046907090", "name": "Dahuan Wei" } ]
{ "alternate_issns": null, "alternate_names": [ "Secur Commun Netw" ], "alternate_urls": [ "http://onlinelibrary.wiley.com/journal/10.1002/(ISSN)1939-0122", "http://www.interscience.wiley.com/journal/security" ], "id": "02a4454a-84c8-471c-9b40-cc045d4f3223", "issn": "1939-0122", "name": "Sec...
The escalating growth of distributed big data in hybrid cloud storage architecture introduces a new set of challenges. Constantly, content enrichment puts pressure on capacity. Nonetheless, the explosion of user data places a significant strain on broadband and storage capacity. Consequently, many cloud storage provide...
Hindawi Security and Communication Networks Volume 2023, Article ID 9858620, 1 page [https://doi.org/10.1155/2023/9858620](https://doi.org/10.1155/2023/9858620) ## Retraction Retracted: Dynamic Deduplication Algorithm for Cross-User Duplicate Data in Hybrid Cloud Storage #### Security and Communication Networks Rece...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.1155/2022/8354903?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1155/2022/8354903, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and co...
2,022
[]
true
2022-07-22T00:00:00
[ { "paperId": "78f0a4c3965b66add2f01783917e45f8225bee8e", "title": "Data integrity verification based on hybrid cloud" }, { "paperId": "89a45f283144013ab824afd50b154a1e0ce4577f", "title": "Dynamic Data Operations with Deduplication in Privacy-Preserving Public Auditing for Secure Cloud Storage" ...
9,149
en
[ { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" }, { "category": "Business", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/09253caeb31d27e0cecba188b77c52c72c6fcd2d
[]
0.87787
SMART TENDER AND CONTRACT MANAGEMENT SYSTEM USING BLOCKCHAIN
09253caeb31d27e0cecba188b77c52c72c6fcd2d
International Research Journal of Modernization in Engineering Technology and Science
[ { "authorId": "2294369882", "name": "Gangarapu Dileep" }, { "authorId": "2294369900", "name": "Dr. E. Sreedevi" } ]
{ "alternate_issns": null, "alternate_names": [ "Int Res J Mod Eng Technol Sci" ], "alternate_urls": null, "id": "f963a178-be9f-4f29-95bb-0d56a45d63db", "issn": "2582-5208", "name": "International Research Journal of Modernization in Engineering Technology and Science", "type": "journal", "url": n...
Governments and businesses typically utilize tenders or contracts to purchase products or services. When improper techniques are used, improper tender management results in significant losses. This covers issues including favoritism of contractors, poor record-keeping, lack of openness, hacking, data tampering
### e-ISSN: 2582-5208 ## International Research Journal of Modernization in Engineering Technology and Science ### ( Peer-Reviewed, Open Access, Fully Refereed International Journal ) Volume:04/Issue:11/November-2022 Impact Factor- 6.752 www.irjmets.com # SMART TENDER AND CO...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.56726/irjmets31601?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.56726/irjmets31601, which is subject to the license by the author or copyright owner ...
2,022
[]
true
2022-11-22T00:00:00
[]
3,798
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/092a5ff3630a30d8f216714d046beff964feb145
[ "Computer Science" ]
0.898238
Optimization in a Self-stabilizing Service Discovery Framework for Large Scale Systems
092a5ff3630a30d8f216714d046beff964feb145
Safety-critical Systems Symposium
[ { "authorId": "1803718", "name": "E. Caron" }, { "authorId": "2083459630", "name": "Florent Chuffart" }, { "authorId": "1755963", "name": "Anissa Lamani" }, { "authorId": "152744222", "name": "F. Petit" } ]
{ "alternate_issns": null, "alternate_names": [ "SSS", "International Conference on Stabilization, Safety, and Security of Distributed Systems", "International Symposium on Stabilization, Safety, and Security of Distributed Systems", "Int Symp Stab Saf Secur Distrib Syst", "Int Symp Self-stabili...
Ability to find and get services is a key requirement in the development of large-scale distributed systems. We consider dynamic and unstable environments, namely Peer-to-Peer (P2P) systems. In previous work, we designed a service discovery solution called Distributed Lexicographic Placement Table (Dlpt), based on a hi...
## Optimization in a Self-Stabilizing Service Discovery Framework for Large Scale Systems Eddy Caron[1], Florent Chuffart[1], Anissa Lamani[2], and Franck Petit[3] 1 University of Lyon. LIP Laboratory. UMR CNRS - ENS Lyon - INRIA - UCB Lyon 5668, France 2 MIS Lab. Universit´e de Picardie Jules Verne, France 3 LIP6 C...
{ "disclaimer": "Notice: Paper or abstract available at https://arxiv.org/abs/1207.1337, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": null, "status": "GREEN", "url":...
2,012
[ "JournalArticle" ]
true
2012-07-05T00:00:00
[ { "paperId": "4b1d6af407939f3c2995fef2ef6de5be643e4ba2", "title": "Implementation and Evaluation of a P2P Service Discovery System: Application in a Dynamic Large Scale Computing Infrastructure" }, { "paperId": "0084d3e63e0f67f736cbd8ca38545bc0d6b496dc", "title": "JEL: unified resource tracking ...
18,514
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Environmental Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/092ad26019d0e922fd268092c4749d58a6f9ff2d
[ "Computer Science" ]
0.848303
An Autonomic Parallel Strategy for the Projection of Ecological Niche Models in Heterogeneous Computational Environments
092ad26019d0e922fd268092c4749d58a6f9ff2d
European Conference on Parallel Processing
[ { "authorId": "3441409", "name": "Fernanda G. O. Passos" }, { "authorId": "1706602", "name": "Vinod E. F. Rebello" } ]
{ "alternate_issns": null, "alternate_names": [ "Eur Conf Parallel Process", "Euro-Par" ], "alternate_urls": null, "id": "ae97cbdb-1d2e-4334-9969-61e9c8967c50", "issn": null, "name": "European Conference on Parallel Processing", "type": "conference", "url": "http://www.euro-par.org/" }
null
# An Autonomic Parallel Strategy for the Projection of Ecological Niche Models in Heterogeneous Computational Environments Fernanda G.O. Passos[(][B][)] and Vinod E.F. Rebello Instituto de Computa¸c˜ao – Universidade Federal Fluminense (UFF), Niter´oi, RJ, Brazil _{fernanda,vinod}@ic.uff.br_ **Abstract. Ecological N...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'abstract', 'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1007/978-3-319-43659-3_27?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1007/978-3-319-43659-3_27, which is subject to the license by the ...
2,016
[ "JournalArticle" ]
false
2016-08-24T00:00:00
[]
8,793
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Business", "source": "s2-fos-model" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/092b82b043985b053abc3d385794bab77ccf2af4
[ "Computer Science" ]
0.885005
Blockchain Technology in Business and Information Systems Research
092b82b043985b053abc3d385794bab77ccf2af4
Business & Information Systems Engineering
[ { "authorId": "144061836", "name": "R. Beck" }, { "authorId": "1721203", "name": "M. Avital" }, { "authorId": "2164144262", "name": "M. Rossi" }, { "authorId": "2795420", "name": "J. Thatcher" } ]
{ "alternate_issns": null, "alternate_names": [ "Bus Inf Syst Eng" ], "alternate_urls": [ "http://www.bise-journal.org/" ], "id": "c9ec8f1c-d8e0-4555-b6ca-a068b79b1e40", "issn": "1867-0202", "name": "Business & Information Systems Engineering", "type": "journal", "url": "https://link.spring...
null
Bus Inf Syst Eng 59(6):381–384 (2017) [https://doi.org/10.1007/s12599-017-0505-1](https://doi.org/10.1007/s12599-017-0505-1) EDITORIAL # Blockchain Technology in Business and Information Systems Research Roman Beck [•] Michel Avital [•] Matti Rossi [•] Jason Bennett Thatcher Published online: 15 November 2017 � Sp...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'abstract', 'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1007/s12599-017-0505-1?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1007/s12599-017-0505-1, which is subject to the license by the author...
2,017
[ "JournalArticle" ]
true
2017-11-15T00:00:00
[]
3,984
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Mathematics", "source": "external" }, { "category": "Engineering", "source": "external" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/092b93a814b2e5585fa33c2a9141883e4611129c
[ "Computer Science", "Mathematics", "Engineering" ]
0.817773
Distributed Control and Optimization of DC Microgrids: A Port-Hamiltonian Approach
092b93a814b2e5585fa33c2a9141883e4611129c
IEEE Access
[ { "authorId": "31345234", "name": "B. Abdolmaleki" }, { "authorId": "1410149047", "name": "Gilbert Bergna-Diaz" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": [ "http://ieeexplore.ieee.org/servlet/opac?punumber=6287639" ], "id": "2633f5b2-c15c-49fe-80f5-07523e770c26", "issn": "2169-3536", "name": "IEEE Access", "type": "journal", "url": "http://www.ieee.org/publications_standards/publ...
This article proposes a distributed secondary control scheme that drives a dc microgrid to an equilibrium point where the generators share optimal currents, and their voltages have a weighted average of nominal value. The scheme does not rely on the electric system topology nor its specifications; it guarantees plug-an...
Date of publication xxxx 00, 0000, date of current version xxxx 00, 0000. _Digital Object Identifier XX.XXXX/ACCESS.2022.DOI_ ## Distributed Control and Optimization of DC Microgrids: A Port-Hamiltonian Approach **BABAK ABDOLMALEKI[1],(Member, IEEE) AND GILBERT BERGNA-DIAZ[1],(Member, IEEE)** 1Norwegian University o...
{ "disclaimer": "Notice: Paper or abstract available at https://arxiv.org/abs/2108.12341, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": "CCBY", "status": "GOLD", "url...
2,021
[ "JournalArticle" ]
true
2021-08-27T00:00:00
[ { "paperId": "4f250c4cb179933bf900b20d29d364a204b445b5", "title": "Neuroadaptive Control for Complicated Underactuated Systems With Simultaneous Output and Velocity Constraints Exerted on Both Actuated and Unactuated States" }, { "paperId": "88985ad6f0e4371dd5c26bcb861d73548008f766", "title": "P...
20,542
en
[ { "category": "Environmental Science", "source": "external" }, { "category": "Computer Science", "source": "external" }, { "category": "Environmental Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/092ebbf05d03caf3026c7e6d7b043b3f7b0fb8e2
[ "Environmental Science", "Computer Science" ]
0.894283
Geoengineering and the blockchain: Coordinating Carbon Dioxide Removal and Solar Radiation Management to tackle future emissions
092ebbf05d03caf3026c7e6d7b043b3f7b0fb8e2
Frontiers of Engineering Management
[ { "authorId": "101547633", "name": "A. Lockley" }, { "authorId": "29902619", "name": "Z. Mi" }, { "authorId": "70038463", "name": "D. Coffman" } ]
{ "alternate_issns": null, "alternate_names": [ "Front Eng Manag" ], "alternate_urls": null, "id": "7cee6583-4bbf-4d20-984b-de35257cb08a", "issn": "2095-7513", "name": "Frontiers of Engineering Management", "type": "journal", "url": "https://link.springer.com/journal/42524" }
Geoengineering is a proposed response to anthropogenic global warming (AGW). Conventionally it consists of two strands: Solar Radiation Management (SRM), which is fast-acting, incomplete but inexpensive, and Carbon Dioxide Removal (CDR), which is slower acting, more expensive, and comprehensive. Pairing SRM and CDR off...
g g, ( ) https://doi.org/10.1007/s42524-019-0010-y #### RESEARCH ARTICLE #### Andrew LOCKLEY, Zhifu MI, D’Maris COFFMAN # Geoengineering and the blockchain: Coordinating Carbon Dioxide Removal and Solar Radiation Management to tackle future emissions © The Author(s) 2019. This article is published with open access...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.1007/S42524-019-0010-Y?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1007/S42524-019-0010-Y, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the lice...
2,019
[]
true
2019-03-01T00:00:00
[ { "paperId": "16fa85e5fb97242612d00655bb8131679f100e9d", "title": "The Government of Markets: How Interwar Collaborations between the CBOT and the State Created Modern Futures Trading" }, { "paperId": "15c69c4ece24b82105fc41d270d642593ce4318f", "title": "Decarbonizing Bitcoin: Law and policy cho...
17,607
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/092feb293eed9fdd02d015f9e491634e94877d52
[ "Computer Science" ]
0.911506
Evaluation Mechanism for Decentralized Collaborative Pattern Learning in Heterogeneous Vehicular Networks
092feb293eed9fdd02d015f9e491634e94877d52
IEEE transactions on intelligent transportation systems (Print)
[ { "authorId": "2055528302", "name": "Cheng Qiao" }, { "authorId": "50980085", "name": "Jing Qiu" }, { "authorId": "2440954", "name": "Zhiyuan Simon Tan" }, { "authorId": "145896559", "name": "G. Min" }, { "authorId": "123160397", "name": "A. Zomaya" }, { ...
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
Collaborative machine learning, especially Federated Learning (FL), is widely used to build high-quality Machine Learning (ML) models in the Internet of Vehicles (IoV). In this paper, we study the performance evaluation problem in an inherently heterogeneous IoV, where the final models across the network are not identi...
# Evaluation Mechanism for Decentralised Collaborative Pattern Learning in Heterogeneous Vehicular Networks ### Cheng Qiao[∗], Jing Qiu[∗], Zhiyuan Tan[†], Geyong Min[‡], Albert Y. Zomaya, Fellow, IEEE,[§] and Zhihong Tian, Senior Member, IEEE [∗] ∗ Cyberspace Institute of Advanced Technology, Guangzhou University, C...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1109/TITS.2022.3186630?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1109/TITS.2022.3186630, which is subject to the license by the author or copyrigh...
2,023
[ "JournalArticle" ]
true
2023-11-01T00:00:00
[]
12,305
en
[ { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Business", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/0932751411055c66e3bd3380c691ff06f6fc8733
[]
0.896786
Implementation of Distributed Operation and Maintenance of Cross-Border e-Commerce Platform Based on Cloud Native Architecture
0932751411055c66e3bd3380c691ff06f6fc8733
Security and Communication Networks
[ { "authorId": "50776660", "name": "Yan-wu Dong" }, { "authorId": "2145954812", "name": "Yang Zhang" } ]
{ "alternate_issns": null, "alternate_names": [ "Secur Commun Netw" ], "alternate_urls": [ "http://onlinelibrary.wiley.com/journal/10.1002/(ISSN)1939-0122", "http://www.interscience.wiley.com/journal/security" ], "id": "02a4454a-84c8-471c-9b40-cc045d4f3223", "issn": "1939-0122", "name": "Sec...
The traditional architecture of e-commerce data management needs to adapt to the new and more complex environment, which needs to provide massive data management, compatibility of different types of data, and better user experience. Cloud computing technology is a synthesis of parallel, distributed, and grid computing ...
Hindawi Security and Communication Networks Volume 2023, Article ID 9832797, 1 page [https://doi.org/10.1155/2023/9832797](https://doi.org/10.1155/2023/9832797) ## Retraction Retracted: Implementation of Distributed Operation and Maintenance of Cross-Border e-Commerce Platform Based on Cloud Native Architecture ### S...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.1155/2021/4254791?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1155/2021/4254791, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and co...
2,021
[]
true
2021-12-15T00:00:00
[ { "paperId": "ab3d594a1a878532690c265542bb72e07da1a1dd", "title": "Ranking the Factors Influencing e-Trading Usage in Agricultural Marketing" }, { "paperId": "ec5d66ad274faf2b8e3d6a3ba9519e1faac5275e", "title": "Forest Fire Recognition Based on Feature Extraction from Multi-View Images" }, {...
9,772
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Business", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/0933f099a5b34b3b7b748e3f8b96e678faa2268b
[ "Computer Science" ]
0.916226
Twitter Sentiment Analysis-Based Adjustment of Cryptocurrency Action Recommendation Model for Profit Maximization
0933f099a5b34b3b7b748e3f8b96e678faa2268b
IEEE Access
[ { "authorId": "2208127642", "name": "Jaehyun Park" }, { "authorId": "3042861", "name": "Yeong-Seok Seo" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": [ "http://ieeexplore.ieee.org/servlet/opac?punumber=6287639" ], "id": "2633f5b2-c15c-49fe-80f5-07523e770c26", "issn": "2169-3536", "name": "IEEE Access", "type": "journal", "url": "http://www.ieee.org/publications_standards/publ...
Cryptocurrencies have recently attracted considerable attention, resulting in research mainly on deep learning-based price prediction models to maximize profit. Two research approaches have been adopted. Studies adopting the first approach directly predict the future cryptocurrency price. Long short-term memory (LSTM) ...
Received 7 April 2023, accepted 28 April 2023, date of publication 8 May 2023, date of current version 11 May 2023. _Digital Object Identifier 10.1109/ACCESS.2023.3273898_ # Twitter Sentiment Analysis-Based Adjustment of Cryptocurrency Action Recommendation Model for Profit Maximization JAEHYUN PARK AND YEONG-SEOK S...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.1109/ACCESS.2023.3273898?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1109/ACCESS.2023.3273898, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the ...
2,023
[ "JournalArticle" ]
true
null
[ { "paperId": "2b61f46516a12dbc954ba2c4f516ed006c274d40", "title": "A Deep Learning-Based Action Recommendation Model for Cryptocurrency Profit Maximization" }, { "paperId": "515f67277b240611872946cb54adc04ee55d5923", "title": "A Stacking Ensemble Deep Learning Model for Bitcoin Price Prediction ...
14,488
en
[ { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Education", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/0935749cd023c5adf1b4f3b4019e50e516ae04cd
[]
0.849425
RSETP: A Reliable Security Education and Training Platform Based on the Alliance Blockchain
0935749cd023c5adf1b4f3b4019e50e516ae04cd
Electronics
[ { "authorId": "2108367549", "name": "Ran Chen" }, { "authorId": "2108888346", "name": "Xiaoming Wu" }, { "authorId": "2144225728", "name": "Xiangzhi Liu" } ]
{ "alternate_issns": [ "2079-9292", "0883-4989" ], "alternate_names": null, "alternate_urls": [ "http://www.e-helvetica.nb.admin.ch/directAccess?callnumber=bel-247562", "http://nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:ch:bel-247562", "https://www.mdpi.com/journal/electronics" ], "id"...
Improving the training quality of education and training institutions is one of the important reasons for the sustainable development of training institutions. However, traditional education and training institutions lack supervision, and the process system is not standardized, resulting in a lack of authenticity and r...
# electronics _Article_ ## RSETP: A Reliable Security Education and Training Platform Based on the Alliance Blockchain **Ran Chen, Xiaoming Wu * and Xiangzhi Liu** Shandong Computer Science Center (National Supercomputer Center in Jinan), Qilu University of Technology (Shandong Academy of Sciences), Jinan 250014, Ch...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.3390/electronics12061427?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.3390/electronics12061427, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the ...
2,023
[]
true
2023-03-16T00:00:00
[ { "paperId": "851ab39c0b1bc14bc905fb6f48d027955e3a5183", "title": "VQL: Efficient and Verifiable Cloud Query Services for Blockchain Systems" }, { "paperId": "46d25f02607e2dfe715f62e0c30995c09297d999", "title": "Consortium Capabilities for Enterprise Blockchain Success" }, { "paperId": "...
15,845
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Economics", "source": "s2-fos-model" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/0938f89c49dbaa6dda461dc0e894bfaa3c1535f5
[ "Computer Science" ]
0.903109
Economics of Grids, Clouds, Systems, and Services: 17th International Conference, GECON 2020, Izola, Slovenia, September 15–17, 2020, Revised Selected Papers
0938f89c49dbaa6dda461dc0e894bfaa3c1535f5
Grid Economics and Business Models
[ { "authorId": "1748771", "name": "K. Djemame" }, { "authorId": "144665469", "name": "J. Altmann" }, { "authorId": "1715306", "name": "J. A. Bañares" }, { "authorId": "1405624783", "name": "Orna Agmon Ben-Yehuda" }, { "authorId": "3034012", "name": "V. Stankovs...
{ "alternate_issns": null, "alternate_names": [ "GECON", "Grid Econ Bus Model" ], "alternate_urls": null, "id": "339231ae-625f-45bd-a860-089e2de02e23", "issn": null, "name": "Grid Economics and Business Models", "type": "conference", "url": "http://www.wikicfp.com/cfp/program?id=1122" }
null
This is a repository copy of Preface to Economics of Grids, Clouds, Systems, and _Services._ White Rose Research Online URL for this paper: https://eprints.whiterose.ac.uk/169500/ Version: Accepted Version **Book:** Djemame, K orcid.org/0000-0001-5811-5263, Altmann, J, Bañares, JÁ et al. (3 more authors) (2020) Pref...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'abstract', 'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1007/978-3-030-63058-4?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1007/978-3-030-63058-4, which is subject to the license by the author...
2,020
[ "Book" ]
false
null
[]
3,035
en
[ { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/093e06c2c43747152fe1d40974fb4f085bf07228
[]
0.884483
Blockchain-Based Authentication Scheme with an Adaptive Multi-Factor Authentication Strategy
093e06c2c43747152fe1d40974fb4f085bf07228
Mobile Information Systems
[ { "authorId": "2143558035", "name": "Yanbin Xu" }, { "authorId": "2266930878", "name": "Xinya Jian" }, { "authorId": "2149200019", "name": "Tao Li" }, { "authorId": "2266927935", "name": "Shuang Zou" }, { "authorId": "46708171", "name": "Beibei Li" } ]
{ "alternate_issns": null, "alternate_names": [ "Mob Inf Syst" ], "alternate_urls": [ "https://www.iospress.nl/journal/mobile-information-systems/", "https://www.iospress.nl/html/1574017x.php", "http://content.iospress.com/journals/mobile-information-systems" ], "id": "6b6df2de-21bc-4137-985...
Authentication is of paramount significance to cybersecurity. However, most of conventional authentication schemes are implemented in a centralized mode, in which potential problems that could arise include single-point failure, the exposure of personal information, and the risk of identity theft. Additionally, static ...
Hindawi Mobile Information Systems Volume 2023, Article ID 4764135, 13 pages [https://doi.org/10.1155/2023/4764135](https://doi.org/10.1155/2023/4764135) # Research Article Blockchain-BasedAuthenticationSchemewithanAdaptiveMulti- Factor Authentication Strategy ## Yanbin Xu,[1] Xinya Jian,[2] Tao Li,[2] Shuang Zou,[3]...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.1155/2023/4764135?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1155/2023/4764135, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and co...
2,023
[ "JournalArticle" ]
true
2023-11-14T00:00:00
[ { "paperId": "ff49981ae8c5d84588ad2604a9c373ccf170e0b1", "title": "FRCR: Raft Consensus Scheme Based on Semi Asynchronous Federal Reconstruction" }, { "paperId": "9a82623a29a13f1a4abf5d4a4fd6dd606a4b60d4", "title": "Efficient and Privacy-Preserving Blockchain-Based Multifactor Device Authenticat...
14,304
en
[ { "category": "Economics", "source": "external" }, { "category": "Mathematics", "source": "external" }, { "category": "Mathematics", "source": "s2-fos-model" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Business", "source": "...
https://www.semanticscholar.org/paper/09405a2b717ffd5e1774568f5322d67876576af9
[ "Economics", "Mathematics" ]
0.880156
Risk Budget Portfolios With Convex Non-negative Matrix Factorization
09405a2b717ffd5e1774568f5322d67876576af9
Social Science Research Network
[ { "authorId": "79859117", "name": "Bruno Spilak" }, { "authorId": "70296570", "name": "W. Hardle" } ]
{ "alternate_issns": null, "alternate_names": [ "SSRN, Social Science Research Network (SSRN) home page", "SSRN Electronic Journal", "Soc Sci Res Netw", "SSRN", "SSRN Home Page", "SSRN Electron J", "Social Science Electronic Publishing presents Social Science Research Network" ], "al...
We propose a portfolio allocation method based on risk factor budgeting using convex Nonnegative Matrix Factorization (NMF). Unlike classical factor analysis, PCA, or ICA, NMF ensures positive factor loadings to obtain interpretable long-only portfolios. As the NMF factors represent separate sources of risk, they have ...
## Risk budget portfolios with convex Non-negative Matrix Factorization #### Bruno Spilak [∗], Wolfgang Karl Härdle[†] June 13, 2023 **Abstract** We propose a portfolio allocation method based on risk factor budgeting using convex Nonnegative Matrix Factorization (NMF). Unlike classical factor analysis, PCA,...
{ "disclaimer": "Notice: Paper or abstract available at https://arxiv.org/abs/2204.02757, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": null, "status": "GREEN", "url"...
2,022
[ "JournalArticle" ]
true
2022-04-06T00:00:00
[ { "paperId": "2e01128181f02245340f4ea10f0a45e9197509cf", "title": "Robustifying Markowitz" }, { "paperId": "92643eb0fe55a97723c0477d18ce8a8af0220154", "title": "Interpretable Machine Learning for Diversified Portfolio Construction" }, { "paperId": "c9df7abf4b0053a15bc03e2e3d01c3708d4c37a...
25,231
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" }, { "category": "Environmental Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/0940c749396d8653fba0647b7c0eebe76e9b04f1
[ "Computer Science" ]
0.848041
A survey of security and privacy issues in the Internet of Things from the layered context
0940c749396d8653fba0647b7c0eebe76e9b04f1
Transactions on Emerging Telecommunications Technologies
[ { "authorId": "38287055", "name": "S. Deep" }, { "authorId": "47410526", "name": "Xi Zheng" }, { "authorId": "119899233", "name": "Len Hamey" } ]
{ "alternate_issns": [ "2161-3915", "1124-318X" ], "alternate_names": [ "European Transactions on Telecommunications", "Eur Trans Telecommun", "TETT", "Trans Emerg Telecommun Technol" ], "alternate_urls": [ "http://eu.wiley.com/WileyCDA/WileyTitle/productCd-ETT.html", "http://o...
Internet of Things (IoT) is a novel paradigm, which not only facilitates a large number of devices to be ubiquitously connected over the Internet but also provides a mechanism to remotely control these devices. The IoT is pervasive and is almost an integral part of our daily life. These connected devices often obtain u...
### Please cite the Published Version Deep, S, Zheng, X, Jolfaei, A, Yu, D, Ostovari, P and Kashif Bashir, A (2022) A survey of security and privacy issues in the Internet of Things from the layered context. Transactions on Emerging Telecommunications Technologies, 33 (6). e3935. ISSN 2161-5748 DOI: https://doi.org...
{ "disclaimer": "Notice: Paper or abstract available at https://arxiv.org/abs/1903.00846, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": null, "status": "GREEN", "url"...
2,019
[ "JournalArticle", "Review" ]
true
2019-03-03T00:00:00
[ { "paperId": "d75eef9cbfc9db8781df8bbe02faa1ab3160c7d4", "title": "Quality of Service Provisioning for Heterogeneous Services in Cognitive Radio-Enabled Internet of Things" }, { "paperId": "fc2ae804736887469e0a483fba9fd807f5257979", "title": "Automated synthesis of mediators for middleware-layer...
21,293
en
[]
https://www.semanticscholar.org/paper/0945014d963767ed71388c67fd4e6b9994a27298
[]
0.880257
Modelo explicativo entre o preço do Bitcoin e o interesse pelo tema
0945014d963767ed71388c67fd4e6b9994a27298
Socioeconomic Analytics
[ { "authorId": "1663696929", "name": "Letícia Moreira de Carvalho" }, { "authorId": "2262391258", "name": "Giovana Pinheiro Resende" }, { "authorId": "91855120", "name": "M. Takahashi" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
O volume de transações em criptomoedas ganha espaço no mercado e ainda suscita melhor entendimento sobre processos e procedimentos de avaliação, bem como a precificação. Este es-tudo descreve um modelo que contém um conjunto de fatores básicos de precificação de ativos para criptomoeda. Para chegar ao objetivo, aborda-...
# **An Explanatory Model for the price of ** **Bitcoin and the public interest in the topic ** **Leticia Moreira de Carvalho** **[1]** **, Giovana Pinheiro Resende** **[1]** **, Maurício Takahashi** **[1]** **[*]** 1 Center for Social and Applied Sciences, Mackenzie Presbyterian University, Barueri, Brazil. Email: le...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.51359/2965-4661.2023.258656?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.51359/2965-4661.2023.258656, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verif...
2,023
[ "JournalArticle" ]
true
2023-10-27T00:00:00
[]
10,051
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/0948f63647767869f4d02deabc7babb853542b8f
[ "Computer Science" ]
0.846587
A Generic Construction for Intrusion-Resilient Public-Key Encryption
0948f63647767869f4d02deabc7babb853542b8f
The Cryptographer's Track at RSA Conference
[ { "authorId": "1776839", "name": "Y. Dodis" }, { "authorId": "1703043", "name": "M. Franklin" }, { "authorId": "143975296", "name": "Jonathan Katz" }, { "authorId": "1808544", "name": "A. Miyaji" }, { "authorId": "144068857", "name": "M. Yung" } ]
{ "alternate_issns": null, "alternate_names": [ "Cryptogr Track RSA Conf", "The Cryptographers’ Track at the RSA Conference", "CT-RSA" ], "alternate_urls": null, "id": "7d878997-4b28-4d42-97e4-1146b7c090bc", "issn": null, "name": "The Cryptographer's Track at RSA Conference", "type": "confer...
null
# A Generic Construction for Intrusion-Resilient Public-Key Encryption Yevgeniy Dodis[1], Matt Franklin[2], Jonathan Katz[3], Atsuko Miyaji[4], and Moti Yung[5] 1 Department of Computer Science, New York University. dodis@cs.nyu.edu 2 University of California, Davis. franklin@cs.ucdavis.edu 3 Department of Computer S...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'references', 'abstract'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1007/978-3-540-24660-2_7?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1007/978-3-540-24660-2_7, which is subject to the license by the au...
2,004
[ "JournalArticle" ]
false
2004-02-23T00:00:00
[]
13,629
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Medicine", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/094cc5841f6e09d88c0e74f021505b1041d480a1
[ "Computer Science", "Medicine" ]
0.867538
Distributed Sensor Networks: A Cellular Nonlinear Network Perspective
094cc5841f6e09d88c0e74f021505b1041d480a1
International Journal of Neural Systems
[ { "authorId": "1736038", "name": "M. Haenggi" } ]
{ "alternate_issns": null, "alternate_names": [ "Int J Neural Syst" ], "alternate_urls": [ "http://www.worldscinet.com/ijns/ijns.shtml" ], "id": "a042b147-151c-4d51-97c7-40b8434b377a", "issn": "0129-0657", "name": "International Journal of Neural Systems", "type": "journal", "url": "http://w...
null
International Journal of Neural Systems, Vol. 0, No. 0 (April, 2000) 00–00 ⃝c World Scientific Publishing Company # DISTRIBUTED SENSOR NETWORKS: A CELLULAR NONLINEAR NETWORK PERSPECTIVE MARTIN HAENGGI Dept. of Electrical Engineering University of Notre Dame Notre Dame, IN 46556, USA E-mail: mhaenggi@nd.edu Received ...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'abstract', 'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1142/S0129065703001686?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1142/S0129065703001686, which is subject to the license by the author...
2,003
[ "JournalArticle" ]
true
2003-12-01T00:00:00
[]
10,974
en
[ { "category": "Medicine", "source": "external" }, { "category": "Economics", "source": "s2-fos-model" }, { "category": "Business", "source": "s2-fos-model" }, { "category": "Environmental Science", "source": "s2-fos-model" }, { "category": "Computer Science", ...
https://www.semanticscholar.org/paper/094e032d29ddf3c6fa491c59b1c3c7dfe5a62e56
[ "Medicine" ]
0.871666
Inferring interactions in multispecies communities: The cryptocurrency market case
094e032d29ddf3c6fa491c59b1c3c7dfe5a62e56
PLoS ONE
[ { "authorId": "2589958", "name": "E. Brigatti" }, { "authorId": "2242347668", "name": "V. Rocha Grecco" }, { "authorId": "2242562705", "name": "A. R. Hernández" }, { "authorId": "118376636", "name": "M. A. Bertella" } ]
{ "alternate_issns": null, "alternate_names": [ "Plo ONE", "PLOS ONE", "PLO ONE" ], "alternate_urls": [ "http://www.plosone.org/" ], "id": "0aed7a40-85f3-4c66-9e1b-c1556c57001b", "issn": "1932-6203", "name": "PLoS ONE", "type": "journal", "url": "https://journals.plos.org/plosone/" }
We introduce a general framework for empirically detecting interactions in communities of entities characterized by different features. This approach is inspired by ideas and methods coming from ecology and finance and is applied to a large dataset extracted from the cryptocurrency market. The inter-species interaction...
# PLOS ONE |a1111111111 a1111111111 a1111111111|Col2| |---|---| OPEN ACCESS **Citation:** Brigatti E, Rocha Grecco V, Herna´ndez AR, Bertella MA (2023) Inferring interactions in multispecies communities: The cryptocurrency [market case. PLoS ONE 18(9): e0291130. https://](https://doi.org/10.1371/journal.pone.029113...
{ "disclaimer": "Notice: Paper or abstract available at https://pmc.ncbi.nlm.nih.gov/articles/PMC10503730, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": "CCBY", "status...
2,023
[ "JournalArticle" ]
true
2023-09-15T00:00:00
[ { "paperId": "f9bd8c8ed1e8c03a29c8181d98d3e9afdbf45972", "title": "Pairwise and high-order dependencies in the cryptocurrency trading network" }, { "paperId": "6871d999d0d4eca9cb629d8b9502e7eded2bb015", "title": "From urban form to information: Cellular configurations in different spatial cultur...
13,067
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/094e9556b90e651b6d5bc8ece9dab5deb9841f06
[ "Computer Science" ]
0.836312
HRS: A Hybrid Replication Strategy for Exhaustive P2P Search
094e9556b90e651b6d5bc8ece9dab5deb9841f06
IFIP International Conference on Network and Parallel Computing
[ { "authorId": "1713345", "name": "Hanhua Chen" }, { "authorId": "145914256", "name": "Hai Jin" }, { "authorId": "2558608", "name": "Xucheng Luo" }, { "authorId": "2256481781", "name": "Zhiguang Qin" } ]
{ "alternate_issns": null, "alternate_names": [ "Network and Parallel Computing", "National Postgrad Conf", "Netw Parallel Comput", "IFIP Int Conf Netw Parallel Comput", "National Postgraduate Conference", "NPC" ], "alternate_urls": null, "id": "4d34ce7f-b8e0-445d-a8eb-c502b8a7b474", ...
null
# HRS: A Hybrid Replication Strategy for Exhaustive P2P Search Hanhua Chen[1], Hai Jin[1], Xucheng Luo[2], and Zhiguang Qin[2] 1 Huazhong University of Science and Technology, Wuhan, 430074, China 2 University of Electronic Science and Technology of China, Chengdu, 6110054, China hjin@hust.edu.cn **Abstract. Succ...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'references', 'abstract'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1007/978-3-540-88140-7_16?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1007/978-3-540-88140-7_16, which is subject to the license by the ...
2,008
[ "JournalArticle" ]
false
2008-10-18T00:00:00
[]
8,630
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Computer Science", "source": "s2-fos-model" }, { "category": "Engineering", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/095059eea13fceda9ef1eb378e610f0ac50ca6a8
[ "Computer Science" ]
0.814257
The STAC (security toolbox: attacks & countermeasures) ontology
095059eea13fceda9ef1eb378e610f0ac50ca6a8
The Web Conference
[ { "authorId": "3242683", "name": "A. Gyrard" }, { "authorId": "153132095", "name": "C. Bonnet" }, { "authorId": "3158476", "name": "K. Boudaoud" } ]
{ "alternate_issns": null, "alternate_names": [ "Web Conf", "WWW" ], "alternate_urls": null, "id": "e07422f9-c065-40c3-a37b-75e98dce79fe", "issn": null, "name": "The Web Conference", "type": "conference", "url": "http://www.iw3c2.org/" }
null
## The STAC (Security Toolbox: Attacks & Countermeasures) ontology ### Amelie Gyrard, Christian Bonnet, Karima Boudaoud To cite this version: ##### Amelie Gyrard, Christian Bonnet, Karima Boudaoud. The STAC (Security Toolbox: Attacks & Countermeasures) ontology. 22nd International World Wide Web Conference, Brazil,...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'abstract', 'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1145/2487788.2487869?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1145/2487788.2487869, which is subject to the license by the author or ...
2,013
[ "JournalArticle", "Book", "Conference" ]
true
2013-05-13T00:00:00
[]
2,855
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Engineering", "source": "s2-fos-model" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/09530428fe572681ba3a800e7bd3ecc007740ef6
[ "Computer Science" ]
0.884772
Reliable Positioning Algorithm Using Two-Stage Adaptive Filtering in GPS-Denied Environments
09530428fe572681ba3a800e7bd3ecc007740ef6
J. Sensors
[ { "authorId": "2118944438", "name": "Xiang Song" }, { "authorId": "2096343651", "name": "Xiaoyu Che" }, { "authorId": "50090055", "name": "Huilin Jiang" }, { "authorId": "2118256766", "name": "Wei Wu" } ]
{ "alternate_issns": null, "alternate_names": null, "alternate_urls": null, "id": null, "issn": null, "name": null, "type": null, "url": null }
To overcome the disadvantages of RFID application for outdoor vehicle positioning in completely GPS-denied environment, a fusion vehicle positioning strategy based on the integration of RFID and in-vehicle sensors is proposed. To obtain higher performance, both preliminary and fusion positioning algorithms are studied....
Hindawi Journal of Sensors Volume 2020, Article ID 5428374, 14 pages [https://doi.org/10.1155/2020/5428374](https://doi.org/10.1155/2020/5428374) # Research Article Reliable Positioning Algorithm Using Two-Stage Adaptive Filtering in GPS-Denied Environments ## Xiang Song,[1] Xiaoyu Che,[2] Huilin Jiang,[1] and Wei Wu...
{ "disclaimer": "Notice: Paper or abstract available at https://api.unpaywall.org/v2/10.1155/2020/5428374?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1155/2020/5428374, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and co...
2,020
[ "JournalArticle" ]
true
2020-10-16T00:00:00
[ { "paperId": "06ed90f6c550f49f1a138d79ecc15f271f0208cf", "title": "Seamless GPS/Inertial Navigation System Based on Self-Learning Square-Root Cubature Kalman Filter" }, { "paperId": "6a25d7efb72b87103358a75523ed6efd03e07601", "title": "Adaptive Filtering on GPS-Aided MEMS-IMU for Optimal Estimat...
13,107
en
[ { "category": "Medicine", "source": "external" }, { "category": "Physics", "source": "external" }, { "category": "Biology", "source": "s2-fos-model" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/09541023f030f2c82a1d05ad5023158a0d3ad769
[ "Medicine", "Physics" ]
0.895771
Parallel, distributed and GPU computing technologies in single-particle electron microscopy
09541023f030f2c82a1d05ad5023158a0d3ad769
Acta Crystallographica Section D: Biological Crystallography
[ { "authorId": "52149626", "name": "M. Schmeißer" }, { "authorId": "6256276", "name": "B. Heisen" }, { "authorId": "2104614357", "name": "M. Luettich" }, { "authorId": "5035941", "name": "B. Busche" }, { "authorId": "2083610867", "name": "Florian Hauer" }, ...
{ "alternate_issns": [ "1399-0047" ], "alternate_names": [ "Acta Crystallogr Sect D Biological Crystallogr", "Acta Crystallogr Sect D-biological Crystallogr", "Acta Crystallographica Section D-biological Crystallography" ], "alternate_urls": [ "http://www.blackwell-synergy.com/servlet/user...
An introduction to the current paradigm shift towards concurrency in software.
Acta Crystallographica Section D Biological Crystallography ISSN 0907-4449 Martin Schmeisser, Burkhard C. Heisen, Mario Luettich, Boris Busche, Florian Hauer, Tobias Koske, Karl-Heinz Knauber and Holger Stark* Max Planck Institute for Biophysical Chemistry, Germany Correspondence e-mail: hstark1@gwdg.de # 2009 Int...
{ "disclaimer": "Notice: Paper or abstract available at https://pmc.ncbi.nlm.nih.gov/articles/PMC2703572, which is subject to the license by the author or copyright owner provided with this content. Please go to the source to verify the license and copyright information for your use.", "license": "CCBY", "status"...
2,009
[ "JournalArticle" ]
true
2009-06-20T00:00:00
[ { "paperId": "5ea94e1463269ab9f126beb665e98a7e879bedcd", "title": "SIGACT News Complexity Theory Column 124 Meta-Mathematics of Computational Complexity Theory" }, { "paperId": "eae413df156f71fdf954b79f5155a5ad6ba4d75e", "title": "Proceedings of the 2008 ACM/IEEE conference on Supercomputing" ...
17,011
en
[ { "category": "Computer Science", "source": "external" }, { "category": "Business", "source": "s2-fos-model" }, { "category": "Economics", "source": "s2-fos-model" }, { "category": "Computer Science", "source": "s2-fos-model" } ]
https://www.semanticscholar.org/paper/095619ac6c164ab6758afcda69f6a3d1cfffae9a
[ "Computer Science" ]
0.856338
The Impact of Blockchain on the Credit Risk of Supply Chain Finance: A Tripartite Evolutionary Game Analysis
095619ac6c164ab6758afcda69f6a3d1cfffae9a
Wuhan International Conference on E-Business
[ { "authorId": "2116071014", "name": "Zhichao Liu" }, { "authorId": "46659215", "name": "Lubin Wang" }, { "authorId": "2216590010", "name": "Jiayi Gu" } ]
{ "alternate_issns": null, "alternate_names": [ "WHICEB", "Wuhan Int Conf Bus" ], "alternate_urls": null, "id": "24bc0783-d0ff-44a6-b1e8-1c3099c46ebc", "issn": null, "name": "Wuhan International Conference on E-Business", "type": "conference", "url": null }
null
### Association for Information Systems Association for Information Systems # AIS Electronic Library (AISeL) AIS Electronic Library (AISeL) ### WHICEB 2023 Proceedings Wuhan International Conference on e-Business Summer 5-28-2023 # The Impact of Blockchain on the Credit Risk of Supply Chain The Impact of Blockchain...
{ "disclaimer": "Notice: The following paper fields have been elided by the publisher: {'abstract', 'references'}. Paper or abstract available at https://api.unpaywall.org/v2/10.1007/978-3-031-32299-0_30?email=<INSERT_YOUR_EMAIL> or https://doi.org/10.1007/978-3-031-32299-0_30, which is subject to the license by the ...
2,023
[ "JournalArticle" ]
false
null
[]
2,132