Principles of Soft Computing Using Python Programming
Home > Computing and Information Technology > Computer programming / software engineering > Web programming > Principles of Soft Computing Using Python Programming: Learn How to Deploy Soft Computing Models in Real World Applications
Principles of Soft Computing Using Python Programming: Learn How to Deploy Soft Computing Models in Real World Applications

Principles of Soft Computing Using Python Programming: Learn How to Deploy Soft Computing Models in Real World Applications

|
     0     
5
4
3
2
1




International Edition


About the Book

Principles of Soft Computing Using Python Programming An accessible guide to the revolutionary techniques of soft computing Soft computing is a computing approach designed to replicate the human mind’s unique capacity to integrate uncertainty and imprecision into its reasoning. It is uniquely suited to computing operations where rigid analytical models will fail to account for the variety and ambiguity of possible solutions. As machine learning and artificial intelligence become more and more prominent in the computing landscape, the potential for soft computing techniques to revolutionize computing has never been greater. Principles of Soft Computing Using Python Programming provides readers with the knowledge required to apply soft computing models and techniques to real computational problems. Beginning with a foundational discussion of soft or fuzzy computing and its differences from hard computing, it describes different models for soft computing and their many applications, both demonstrated and theoretical. The result is a set of tools with the potential to produce new solutions to the thorniest computing problems. Readers of Principles of Soft Computing Using Python Programming will also find: Each chapter accompanied with Python codes and step-by-step comments to illustrate applications Detailed discussion of topics including artificial neural networks, rough set theory, genetic algorithms, and more Exercises at the end of each chapter including both short- and long-answer questions to reinforce learning Principles of Soft Computing Using Python Programming is ideal for researchers and engineers in a variety of fields looking for new solutions to computing problems, as well as for advanced students in programming or the computer sciences.

Table of Contents:
About the Author xi Preface xiii 1 Fundamentals of Soft Computing 1 1.1 Introduction to Soft Computing 1 1.2 Soft Computing versus Hard Computing 2 1.3 Characteristics of Soft Computing 4 1.4 Components of Soft Computing 7 1.4.1 Fuzzy Computing 7 1.4.2 Neural Network 10 1.4.3 Evolutionary Computing 12 1.4.4 Machine Learning 19 1.4.5 Other Techniques of Soft Computing 29 2 Fuzzy Computing 35 2.1 Fuzzy Sets 37 2.1.1 Features of Fuzzy Membership Functions 38 2.2 Fuzzy Set Operations 41 2.3 Fuzzy Set Properties 42 2.4 Binary Fuzzy Relation 45 2.5 Fuzzy Membership Functions 46 2.6 Methods of Membership Value Assignments 49 2.7 Fuzzification vs. Defuzzification 58 2.8 Fuzzy c-Means 62 3 Artificial Neural Network 75 3.1 Fundamentals of Artificial Neural Network (ANN) 76 3.2 Standard Activation Functions in Neural Networks 81 3.2.1 Binary Step Activation Function 81 3.2.2 Linear Activation Function 83 3.2.3 Sigmoid/Logistic Activation Function 84 3.2.4 ReLU Activation Function 85 3.2.5 Tanh Activation Function 87 3.2.6 Leaky ReLU Activation Function 88 3.2.7 SoftMax Activation Function 90 3.3 Basic Learning Rules in ANN 91 3.3.1 Hebbian Learning Rule 93 3.3.2 Perceptron Learning Rule 93 3.3.3 Delta Learning Rule 94 3.3.4 Correlation Learning Rule 94 3.3.5 Competitive Learning Rule 95 3.3.6 Outstar Learning Rule 95 3.4 McCulloch–Pitts ANN Model 96 3.5 Feed-Forward Neural Network 98 3.5.1 Single-Layer Perceptron 99 3.5.2 Multilayer Perceptron 103 3.5.3 Radial Basis Function Network 107 3.6 Feedback Neural Network 111 3.6.1 Self-Organizing Map (SOM) 111 3.6.2 Hopfield Neural Network (HNN) 116 4 Deep Learning 123 4.1 Introduction to Deep Learning 123 4.2 Classification of Deep Learning Techniques 125 4.2.1 Convolutional Neural Networks 125 4.2.2 Recurrent Neural Network (RNN) 137 4.2.3 Generative Adversarial Network (GAN) 144 4.2.4 Autoencoders 149 5 Probabilistic Reasoning 159 5.1 Introduction to Probabilistic Reasoning 159 5.1.1 Random Experiment 160 5.1.2 Random Variables 160 5.1.3 Independence 161 5.1.4 Sample Space 162 5.1.5 Odds and Risks 162 5.1.6 Expected Values 165 5.2 Four Perspectives on Probability 165 5.2.1 The Classical Approach 166 5.2.2 The Empirical Approach 166 5.2.3 The Subjective Approach 167 5.2.4 The Axiomatic Approach 167 5.3 The Principles of Bayesian Inference 168 5.4 Belief Network and Markovian Network 171 5.4.1 Syntax and Semantics 172 5.4.1.1 Belief Network 172 5.4.1.2 Markovian Network 172 5.4.2 Conditional Independence 172 5.4.3 Learning Methods of the Networks 177 5.5 Hidden Markov Model 178 5.6 Markov Decision Processes 186 5.7 Machine Learning and Probabilistic Models 191 6 Population-Based Algorithms 197 6.1 Introduction to Genetic Algorithms 197 6.2 Five Phases of Genetic Algorithms 198 6.2.1 Population Initialization 198 6.2.2 Fitness Function Calculation (Evaluation) 199 6.2.3 Parent Selection 200 6.2.4 Crossover 204 6.2.5 Mutation 205 6.3 How Genetic AlgorithmWorks? 207 6.4 Application Areas of Genetic Algorithms 212 6.4.1 Using GA in Travelling Salesman Problem 212 6.4.2 Using GA in Vehicle Routing Problem 216 6.5 Python Code for Implementing a Simple Genetic Algorithm 221 6.6 Introduction to Swarm Intelligence 225 6.7 Few Important Aspects of Swarm Intelligence 227 6.7.1 Collective Sorting 228 6.7.2 Foraging Behavior 228 6.7.3 Stigmergy 229 6.7.4 Division of Labor 229 6.7.5 Collective Transport 230 6.7.6 Self-Organization 231 6.8 Swarm Intelligence Techniques 233 6.8.1 Ant Colony Optimization 233 6.8.1.1 How ACO TechniqueWorks? 233 6.8.1.2 Applying ACO to Optimization Problems 235 6.8.1.3 Using ACO in Travelling Salesman Problem 236 6.8.1.4 Python Code for Implementing ACO in TSP 239 6.8.2 Particle Swarm Optimization 241 6.8.2.1 How PSO TechniqueWorks? 242 6.8.2.2 Applying PSO to Optimization Problems 243 6.8.2.3 Using PSO in Job-Shop Scheduling Problem 246 6.8.2.4 Python Code for Implementing PSO 247 7 Rough Set Theory 255 7.1 The Pawlak Rough Set Model 255 7.1.1 Basic Terms in Pawlak Rough Set Model 256 7.1.2 Measures of Rough Set Approximations 260 7.2 Using Rough Sets for Information System 262 7.3 Decision Rules and Decision Tables 263 7.3.1 Parameters of Decision Tables 264 7.3.1.1 Consistency Factor 264 7.3.1.2 Support and Strength 265 7.3.1.3 Certainty Factor 265 7.3.1.4 Coverage Factor 266 7.3.2 Probabilistic Properties of Decision Tables 266 7.4 Application Areas of Rough Set Theory 268 7.4.1 Classification 268 7.4.2 Clustering 271 7.4.3 Medical Diagnosis 273 7.4.4 Image Processing 276 7.4.5 Speech Analysis 278 7.5 Using ROSE Tool for RST Operations 280 7.5.1 Attribute Discretization 280 7.5.2 Finding Lower and Upper Approximations 281 8 Hybrid Systems 289 8.1 Introduction to Hybrid Systems 289 8.2 Neurogenetic Systems 291 8.2.1 GA-based Weight Determination of Multilayer Feed-forward Net 292 8.2.2 Neuroevolution of Augmenting Topologies (NEAT) 298 8.3 Fuzzy-Neural Systems 302 8.3.1 Fuzzy Neurons 303 8.3.2 Adaptive Neuro-fuzzy Inference System (ANFIS) 307 8.4 Fuzzy-Genetic Systems 311 8.5 Hybrid Systems in Medical Devices 315 Exercises 322 Index 327


Best Sellers


Product Details
  • ISBN-13: 9781394173136
  • Publisher: John Wiley & Sons Inc
  • Binding: Hardback
  • No of Pages: 352
  • Returnable: Y
  • Sub Title: Learn How to Deploy Soft Computing Models in Real World Applications
  • ISBN-10: 139417313X
  • Publisher Date: 30 Jan 2024
  • Language: English
  • Returnable: Y
  • Returnable: Y
  • Weight: 680 gr


Similar Products

Add Photo
Add Photo

Customer Reviews

REVIEWS      0     
Click Here To Be The First to Review this Product
Principles of Soft Computing Using Python Programming: Learn How to Deploy Soft Computing Models in Real World Applications
John Wiley & Sons Inc -
Principles of Soft Computing Using Python Programming: Learn How to Deploy Soft Computing Models in Real World Applications
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

Principles of Soft Computing Using Python Programming: Learn How to Deploy Soft Computing Models in Real World Applications

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals

    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!