• Refine Query
  • Source
  • Publication year
  • to
  • Language
  • 779
  • 103
  • 65
  • 32
  • 18
  • 15
  • 15
  • 15
  • 15
  • 15
  • 15
  • 9
  • 4
  • 3
  • 2
  • Tagged with
  • 1135
  • 1135
  • 1135
  • 1135
  • 252
  • 152
  • 135
  • 135
  • 125
  • 120
  • 109
  • 109
  • 109
  • 107
  • 103
  • About
  • The Global ETD Search service is a free service for researchers to find electronic theses and dissertations. This service is provided by the Networked Digital Library of Theses and Dissertations.
    Our metadata is collected from universities around the world. If you manage a university/consortium/country archive and want to be added, details can be found on the NDLTD website.
481

Extensive experimentation of the angle of arrival estimation stage of neural network based smart antennas multiple source tracking (N-MUST) algorithm

Birader, Aliasgar A. 01 April 2002 (has links)
No description available.
482

Design of neurofuzzy controller using reinforcement learning with application to linear system and inverted pendulum

Saengdeejing, Apiwat 01 January 1998 (has links)
No description available.
483

A methodology for modeling human decision making in computer generated objects

Johnson, Major Michael J. 01 April 2001 (has links)
No description available.
484

The categorization and parameterization of simulation input models using neural networks

Steele, Martin J. 01 April 2002 (has links)
No description available.
485

A methodology for the development of reverse simulation metamodels using neural networks

Nasereddin, Mahdi 01 July 2001 (has links)
No description available.
486

Automatic target recognition using neural networks

Tawadrous, Sameh W. 01 January 1999 (has links)
No description available.
487

A Hybrid of Neural Networks and Genetic Algorithms for Controlling Mobile Robots

Secretan, James 01 January 2004 (has links)
Autonomous and semiautonomous robots are certain to play a major role in several areas in the future, from the battlefield to the household. Countless different methodologies have been applied to solve the problem of mobile robot navigation, with varying degrees of success. SAMUEL, a genetic algorithm based system for evolving semi-autonomous agent behaviors, has proven successful in generating the necessary rule sets for navigating a simple environment. Fuzzy AR TMAP (FAM) neural networks have also been applied in a similar fashion, again with success. In this thesis, a hybrid system is developed. The system fuses both SAMUEL and FAM neural networks, using SAMUEL to develop rule sets for which the FAM provides motion prediction information. The FAM motion predictor serves as an input to the genetic algorithm, so the genetic algorithm can utilize this capability without modification. A simulation using the hybrid system is developed and run, demonstrating how agents controlled by the system would respond to an example mission. The effectiveness of this approach is compared to SAMUEL's ability to complete this task unaided. Finally, open-source source code is made available.
488

An exploration of the robustness of traditional regression analysis versus analysis using backpropagation networks

Markham, Ina Samanta 06 June 2008 (has links)
Research linking neural networks and statistics has been at two ends of a spectrum: either highly theoretical or application specific. This research attempts to bridge the gap on the spectrum by exploring the robustness of regression analysis and backpropagation networks in conducting data analysis. Robustness is viewed as the degree to which a technique is insensitive to abnormalities in data sets, such as violations of assumptions. The central focus of regression analysis is the establishment of an equation that describes the relationship between the variables in a data set. This relationship 1s used primarily for the prediction of one variable based on the known values of the other variables. Certain assumptions have to be made regarding the data in order to obtain a tractable solution and the failure of one or more of these assumptions results in poor prediction. The assumptions underlying linear regression that are used to characterize data sets in this research are characterized by: (a) sample size and error variance, (b) outliers, skewness, and kurtosis, (c) multicollinearity, and (d) nonlinearity and underspecification. By using this characterization, the robustness of each technique is studied under what is, in effect, the relaxation of assumptions one at a time. The comparison between regression and backpropagation is made using the root mean square difference between the predicted output from each technique and the actual output. / Ph. D.
489

An investigation into the applicability of neural networks to multi-performance measure dispatching in a dynamic, single machine shop

Mitlehner, Michael M. January 1994 (has links)
This thesis investigates the applicability of backpropagation neural networks to production order dispatching in a dynamic, single machine shop where the achievement of multiple performance measures is desired. There has been relatively little research done in this area so the objectives center around the determination of information and parameters which lead to improved network performance with respect to learning as well as decision making. Results of the research showed that many of the qualities inherent to backpropagation neural networks were compatible with the requirements of the dispatching activity. The networks that were trained and tested had the ability to implicitly map the complex functional relationships between inputs reflecting system status and desired performance and outputs which represented appropriate coefficients used to determine job priority. Once trained they displayed good generalization capabilities when exposed to information they had never been exposed to before. Most importantly, they provided the basis for a complex dispatching procedure which utilized considerable shop floor information to make completely dynamic, real time dispatching decisions. Guidelines and generalizations for similar applications were developed including: input selection and presentation formats, effective training parameters, the effect of using purely dynamic vs. historical data as shop status inputs, the effect of compromising desired performance measure inputs, and the effect of changes in the underlying shop parameters. / M.S.
490

Detect and Repair Errors for DNN-based Software

Tian, Yuchi January 2021 (has links)
Nowadays, deep neural networks based software have been widely applied in many areas including safety-critical areas such as traffic control, medical diagnosis and malware detection, etc. However, the software engineering techniques, which are supposed to guarantee the functionality, safety as well as fairness, are not well studied. For example, some serious crashes of DNN based autonomous cars have been reported. These crashes could have been avoided if these DNN based software were well tested. Traditional software testing, debugging or repairing techniques do not work well on DNN based software because there is no control flow, data flow or AST(Abstract Syntax Tree) in deep neural networks. Proposing software engineering techniques targeted on DNN based software are imperative. In this thesis, we first introduced the development of SE(Software Engineering) for AI(Artificial Intelligence) area and how our works have influenced the advancement of this new area. Then we summarized related works and some important concepts in SE for AI area. Finally, we discussed four important works of ours. Our first project DeepTest is one of the first few papers proposing systematic software testing techniques for DNN based software. We proposed neuron coverage guided image synthesis techniques for DNN based autonomous cars and leveraged domain specific metamorphic relation to generate oracle for new generated test cases to automatically test DNN based software. We applied DeepTest to testing three top performing self-driving car models in Udacity self-driving car challenge and our tool has identified thousands of erroneous behaviors that may lead to potential fatal crash. In DeepTest project, we found that the natural variation such as spatial transformations or rain/fog effects have led to problematic corner cases for DNN based self-driving cars. In the follow-up project DeepRobust, we studied per-point robustness of deep neural network under natural variation. We found that for a DNN model, some specific weak points are more likely to cause erroneous outputs than others under natural variation. We proposed a white-box approach and a black-box approach to identify these weak data points. We implemented and evaluated our approaches on 9 DNN based image classifiers and 3 DNN based self-driving car models. Our approaches can successfully detect weak points with good precision and recall for both DNN based image classifiers and self-driving cars. Most of existing works in SE for AI area including our DeepTest and DeepRobust focus on instance-wise errors, which are single inputs that result in a DNN model's erroneous outputs. Different from instance-wise errors, group-level errors reflect a DNN model's weak performance on differentiating among certain classes or inconsistent performance across classes. This type of errors is very concerning since it has been found to be related to many real-world notorious errors without malicious attackers. In our third project DeepInspect, we first introduced the group-level errors for DNN based software and categorized them into confusion errors and bias errors based on real-world reports. Then we proposed neuron coverage based distance metric to detect group-level errors for DNN based software without requiring labels. We applied DeepInspect to testing 8 pretrained DNN models trained in 6 popular image classification datasets, including three adversarial trained models. We showed that DeepInspect can successfully detect group-level violations for both single-label and multi-label classification models with high precision. As a follow-up and more challenging research project, we proposed five WR(weighted regularization) techniques to repair group-level errors for DNN based software. These five different weighted regularization techniques function at different stages of retraining or inference of DNNs including input phase, layer phase, loss phase and output phase. We compared and evaluated these five different WR techniques in both single-label and multi-label classifications including five combinations of four DNN architectures on four datasets. We showed that WR can effectively fix confusion and bias errors and these methods all have their pros, cons and applicable scenario. All our four projects discussed in this thesis have solved important problems in ensuring the functionality, safety as well as fairness for DNN based software and had significant influence in the advancement of SE for AI area.

Page generated in 0.0735 seconds