18 resultados para Dependency parsing

em BORIS: Bern Open Repository and Information System - Berna - Suiça


Relevância:

20.00% 20.00%

Publicador:

Resumo:

Velocity recovery cycles (VRCs) of human muscle action potentials have been proposed as a new technique for studying muscle membrane function. This study was undertaken to determine the temperature dependency of VRC parameters.

Relevância:

20.00% 20.00%

Publicador:

Resumo:

In this work, we present a multichannel EEG decomposition model based on an adaptive topographic time-frequency approximation technique. It is an extension of the Matching Pursuit algorithm and called dependency multichannel matching pursuit (DMMP). It takes the physiologically explainable and statistically observable topographic dependencies between the channels into account, namely the spatial smoothness of neighboring electrodes that is implied by the electric leadfield. DMMP decomposes a multichannel signal as a weighted sum of atoms from a given dictionary where the single channels are represented from exactly the same subset of a complete dictionary. The decomposition is illustrated on topographical EEG data during different physiological conditions using a complete Gabor dictionary. Further the extension of the single-channel time-frequency distribution to a multichannel time-frequency distribution is given. This can be used for the visualization of the decomposition structure of multichannel EEG. A clustering procedure applied to the topographies, the vectors of the corresponding contribution of an atom to the signal in each channel produced by DMMP, leads to an extremely sparse topographic decomposition of the EEG.

Relevância:

20.00% 20.00%

Publicador:

Resumo:

BACKGROUND: Our aim was to investigate the influence of age and gender on intrarenal resistance index (RI) measurements in 78 healthy subjects (46 males, 32 females; group 1) and 35 subjects (group 2) with fatty liver disease (28 males and 7 females). SUBJECTS AND METHODS: First, each subject underwent a conventional abdominal ultrasound examination. Then, intrarenal RI values were determined from three distinct interlobar and cortical arteries respectively on both kidneys. The correlation of intrarenal RI with age and gender as a variable was statistically evaluated by linear regression. RESULTS: In group 1, the variables gender, kidney region and comparison of right versus left kidney had no significant effect on intrarenal RI (p>0.05). The variable age, on the other hand, showed a significant positive correlation on all four defined measuring points (p<0.01) with linear correlation coefficients of r = 0.26 (left kidney, central) to r = 0.37 (right kidney, cortical). Therefore normal RI values at ages 25, 45, 65 years could be defined as 0.59, 0.61 and 0.63, respectively. Age dependency can thus be expressed as a function with the formula y = 0.565 + 0.001.x. Patients with fatty liver disease showed age dependency on renal RI (p<0.01) as well. CONCLUSION: In accordance with other studies, the influence of age on intrarenal RI measurement is significant in healthy subjects. Intrarenal RI values from subjects with a fatty liver disease showed age dependency as well. Therefore it is necessary to consider the age of the examined person to interpret RI values correctly.

Relevância:

20.00% 20.00%

Publicador:

Resumo:

In order to analyze software systems, it is necessary to model them. Static software models are commonly imported by parsing source code and related data. Unfortunately, building custom parsers for most programming languages is a non-trivial endeavour. This poses a major bottleneck for analyzing software systems programmed in languages for which importers do not already exist. Luckily, initial software models do not require detailed parsers, so it is possible to start analysis with a coarse-grained importer, which is then gradually refined. In this paper we propose an approach to "agile modeling" that exploits island grammars to extract initial coarse-grained models, parser combinators to enable gradual refinement of model importers, and various heuristics to recognize language structure, keywords and other language artifacts.

Relevância:

20.00% 20.00%

Publicador:

Resumo:

Elderly patients generally experience less favorable outcomes and higher mortality after acute stroke than younger patients. The aim of this study was to analyze the influence of age on outcome and safety after endovascular therapy in a large cohort of patients aged between 20 and 90 years. We prospectively acquired data of 1,000 stroke patients treated with endovascular therapy at a single center. Logistic regression analysis was performed to determine predictors of outcome and linear regression analysis to evaluate the association of age and outcome after 3 months. Younger age was an independent predictor of favorable outcome (OR 0.954, p < 0.001) and survival (OR 0.947, p < 0.001) in multivariate regression analysis. There was a linear relationship between age and outcome. Ever increase in 26 years of age was associated with an increase in the modified Rankin Scale of 1 point (p < 0.001). However, increasing age was not a risk factor for symptomatic (p = 0.086) or asymptomatic (p = 0.674) intracerebral hemorrhage and did not influence recanalization success (p = 0.674). Advancing age was associated with a decline of favorable outcomes and survival after endovascular therapy. This decline was linear from age 20 to 90 years, but was not related to lower recanalization rates or higher bleeding risk in the elderly. The efficacy of endovascular stroke therapy seems to be preserved also in the elderly and other factors than efficacy of endovascular therapy such as decreased plasticity are likely to explain the worse outcome with advancing age.

Relevância:

20.00% 20.00%

Publicador:

Resumo:

The domain of context-free languages has been extensively explored and there exist numerous techniques for parsing (all or a subset of) context-free languages. Unfortunately, some programming languages are not context-free. Using standard context-free parsing techniques to parse a context-sensitive programming language poses a considerable challenge. Im- plementors of programming language parsers have adopted various techniques, such as hand-written parsers, special lex- ers, or post-processing of an ambiguous parser output to deal with that challenge. In this paper we suggest a simple extension of a top-down parser with contextual information. Contrary to the tradi- tional approach that uses only the input stream as an input to a parsing function, we use a parsing context that provides ac- cess to a stream and possibly to other context-sensitive infor- mation. At a same time we keep the context-free formalism so a grammar definition stays simple without mind-blowing context-sensitive rules. We show that our approach can be used for various purposes such as indent-sensitive parsing, a high-precision island parsing or XML (with arbitrary el- ement names) parsing. We demonstrate our solution with PetitParser, a parsing-expression grammar based, top-down, parser combinator framework written in Smalltalk.

Relevância:

20.00% 20.00%

Publicador:

Resumo:

Imprecise manipulation of source code (semi-parsing) is useful for tasks such as robust parsing, error recovery, lexical analysis, and rapid development of parsers for data extraction. An island grammar precisely defines only a subset of a language syntax (islands), while the rest of the syntax (water) is defined imprecisely. Usually, water is defined as the negation of islands. Albeit simple, such a definition of water is naive and impedes composition of islands. When developing an island grammar, sooner or later a programmer has to create water tailored to each individual island. Such an approach is fragile, however, because water can change with any change of a grammar. It is time-consuming, because water is defined manually by a programmer and not automatically. Finally, an island surrounded by water cannot be reused because water has to be defined for every grammar individually. In this paper we propose a new technique of island parsing - bounded seas. Bounded seas are composable, robust, reusable and easy to use because island-specific water is created automatically. We integrated bounded seas into a parser combinator framework as a demonstration of their composability and reusability.