feed icon rss

Your email was sent successfully. Check your inbox.

An error occurred while sending the email. Please try again.

Proceed reservation?

Export
Filter
  • Berlin International  (4)
  • SB Guben  (2)
  • SB Hennigsdorf  (2)
  • HFS Ernst Busch  (1)
  • ÖSB Oberkrämer
  • SKB Bad Freienwalde
  • Computer Science  (9)
Type of Medium
Language
Region
Library
Access
  • 1
    UID:
    almafu_BV011594286
    Format: 121 S. : Ill., graph. Darst.
    ISBN: 3-88347-196-8
    Series Statement: BUB special
    Language: German
    Subjects: Computer Science , General works
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    Keywords: Internet ; Internet ; Bibliothek ; Aufsatzsammlung ; Aufsatzsammlung ; Aufsatzsammlung ; Aufsatzsammlung
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 2
    UID:
    almahu_9949602254902882
    Format: 1 online resource (807 pages)
    Edition: 1st ed.
    ISBN: 9781484243985
    Note: Intro -- Table of Contents -- About the Authors -- Acknowledgments -- Preface -- Part 1 -- Chapter 1: Jumping Right In: "Hello, TBB!" -- Why Threading Building Blocks? -- Performance: Small Overhead, Big Benefits for C++ -- Evolving Support for Parallelism in TBB and C++ -- Recent C++ Additions for Parallelism -- The Threading Building Blocks (TBB) Library -- Parallel Execution Interfaces -- Interfaces That Are Independent of the Execution Model -- Using the Building Blocks in TBB -- Let's Get Started Already! -- Getting the Threading Building Blocks (TBB) Library -- Getting a Copy of the Examples -- Writing a First "Hello, TBB!" Example -- Building the Simple Examples -- Steps to Set Up an Environment -- Building on Windows Using Microsoft Visual Studio -- Building on a Linux Platform from a Terminal -- Using the Intel Compiler -- tbbvars and pstlvars Scripts -- Setting Up Variables Manually Without Using the tbbvars Script or the Intel Compiler -- A More Complete Example -- Starting with a Serial Implementation -- Adding a Message-Driven Layer Using a Flow Graph -- Adding a Fork-Join Layer Using a parallel_for -- Adding a SIMD Layer Using a Parallel STL Transform -- Summary -- Chapter 2: Generic Parallel Algorithms -- Functional / Task Parallelism -- A Slightly More Complicated Example: A Parallel Implementation of Quicksort -- Loops: parallel_for, parallel_reduce, and parallel_scan -- parallel_for: Applying a Body to Each Element in a Range -- A Slightly More Complicated Example: Parallel Matrix Multiplication -- parallel_reduce: Calculating a Single Result Across a Range -- A Slightly More Complicated Example: Calculating π by Numerical Integration -- parallel_scan: A Reduction with Intermediate Values -- How Does This Work? -- A Slightly More Complicated Example: Line of Sight -- Cook Until Done: parallel_do and parallel_pipeline. , parallel_do: Apply a Body Until There Are No More Items Left -- A Slightly More Complicated Example: Forward Substitution -- parallel_pipeline: Streaming Items Through a Series of Filters -- A Slightly More Complicated Example: Creating 3D Stereoscopic Images -- Summary -- For More Information -- Chapter 3: Flow Graphs -- Why Use Graphs to Express Parallelism? -- The Basics of the TBB Flow Graph Interface -- Step 1: Create the Graph Object -- Step 2: Make the Nodes -- Step 3: Add Edges -- Step 4: Start the Graph -- Step 5: Wait for the Graph to Complete Executing -- A More Complicated Example of a Data Flow Graph -- Implementing the Example as a TBB Flow Graph -- Understanding the Performance of a Data Flow Graph -- The Special Case of Dependency Graphs -- Implementing a Dependency Graph -- Estimating the Scalability of a Dependency Graph -- Advanced Topics in TBB Flow Graphs -- Summary -- Chapter 4: TBB and the Parallel Algorithms of the C++ Standard Template Library -- Does the C++ STL Library Belong in This Book? -- A Parallel STL Execution Policy Analogy -- A Simple Example Using std::for_each -- What Algorithms Are Provided in a Parallel STL Implementation? -- How to Get and Use a Copy of Parallel STL That Uses TBB -- Algorithms in Intel's Parallel STL -- Capturing More Use Cases with Custom Iterators -- Highlighting Some of the Most Useful Algorithms -- std::for_each, std::for_each_n -- std::transform -- std::reduce -- std::transform_reduce -- A Deeper Dive into the Execution Policies -- The sequenced_policy -- The parallel_policy -- The unsequenced_policy -- The parallel_unsequenced_policy -- Which Execution Policy Should We Use? -- Other Ways to Introduce SIMD Parallelism -- Summary -- For More Information -- Chapter 5: Synchronization: Why and How to Avoid It -- A Running Example: Histogram of an Image -- An Unsafe Parallel Implementation. , A First Safe Parallel Implementation: Coarse-Grained Locking -- Mutex Flavors -- A Second Safe Parallel Implementation: Fine-Grained Locking -- A Third Safe Parallel Implementation: Atomics -- A Better Parallel Implementation: Privatization and Reduction -- Thread Local Storage, TLS -- enumerable_thread_specific, ETS -- combinable -- The Easiest Parallel Implementation: Reduction Template -- Recap of Our Options -- Summary -- For More Information -- Chapter 6: Data Structures for Concurrency -- Key Data Structures Basics -- Unordered Associative Containers -- Map vs. Set -- Multiple Values -- Hashing -- Unordered -- Concurrent Containers -- Concurrent Unordered Associative Containers -- concurrent_hash_map -- Concurrent Support for map/multimap and set/multiset Interfaces -- Built-In Locking vs. No Visible Locking -- Iterating Through These Structures Is Asking for Trouble -- Concurrent Queues: Regular, Bounded, and Priority -- Bounding Size -- Priority Ordering -- Staying Thread-Safe: Try to Forget About Top, Size, Empty, Front, Back -- Iterators -- Why to Use This Concurrent Queue: The A-B-A Problem -- When to NOT Use Queues: Think Algorithms! -- Concurrent Vector -- When to Use tbb::concurrent_vector Instead of std::vector -- Elements Never Move -- Concurrent Growth of concurrent_vectors -- Summary -- Chapter 7: Scalable Memory Allocation -- Modern C++ Memory Allocation -- Scalable Memory Allocation: What -- Scalable Memory Allocation: Why -- Avoiding False Sharing with Padding -- Scalable Memory Allocation Alternatives: Which -- Compilation Considerations -- Most Popular Usage (C/C++ Proxy Library): How -- Linux: malloc/new Proxy Library Usage -- macOS: malloc/new Proxy Library Usage -- Windows: malloc/new Proxy Library Usage -- Testing our Proxy Library Usage -- C Functions: Scalable Memory Allocators for C. , C++ Classes: Scalable Memory Allocators for C++ -- Allocators with std::allocator< -- T> -- Signature -- scalable_allocator -- tbb_allocator -- zero_allocator -- cached_aligned_allocator -- Memory Pool Support: memory_pool_allocator -- Array Allocation Support: aligned_space -- Replacing new and delete Selectively -- Performance Tuning: Some Control Knobs -- What Are Huge Pages? -- TBB Support for Huge Pages -- scalable_allocation_mode(int mode, intptr_t value) -- TBBMALLOC_USE_HUGE_PAGES -- TBBMALLOC_SET_SOFT_HEAP_LIMIT -- int scalable_allocation_command(int cmd, void ∗param) -- TBBMALLOC_CLEAN_ALL_BUFFERS -- TBBMALLOC_CLEAN_THREAD_BUFFERS -- Summary -- Chapter 8: Mapping Parallel Patterns to TBB -- Parallel Patterns vs. Parallel Algorithms -- Patterns Categorize Algorithms, Designs, etc. -- Patterns That Work -- Data Parallelism Wins -- Nesting Pattern -- Map Pattern -- Workpile Pattern -- Reduction Patterns (Reduce and Scan) -- Fork-Join Pattern -- Divide-and-Conquer Pattern -- Branch-and-Bound Pattern -- Pipeline Pattern -- Event-Based Coordination Pattern (Reactive Streams) -- Summary -- For More Information -- Part 2 -- Chapter 9: The Pillars of Composability -- What Is Composability? -- Nested Composition -- Concurrent Composition -- Serial Composition -- The Features That Make TBB a Composable Library -- The TBB Thread Pool (the Market) and Task Arenas -- The TBB Task Dispatcher: Work Stealing and More -- Putting It All Together -- Looking Forward -- Controlling the Number of Threads -- Work Isolation -- Task-to-Thread and Thread-to-Core Affinity -- Task Priorities -- Summary -- For More Information -- Chapter 10: Using Tasks to Create Your Own Algorithms -- A Running Example: The Sequence -- The High-Level Approach: parallel_invoke -- The Highest Among the Lower: task_group -- The Low-Level Task Interface: Part One - Task Blocking. , The Low-Level Task Interface: Part Two - Task Continuation -- Bypassing the Scheduler -- The Low-Level Task Interface: Part Three - Task Recycling -- Task Interface Checklist -- One More Thing: FIFO (aka Fire-and-Forget) Tasks -- Putting These Low-Level Features to Work -- Summary -- For More Information -- Chapter 11: Controlling the Number of Threads Used for Execution -- A Brief Recap of the TBB Scheduler Architecture -- Interfaces for Controlling the Number of Threads -- Controlling Thread Count with task_scheduler_init -- Controlling Thread Count with task_arena -- Controlling Thread Count with global_control -- Summary of Concepts and Classes -- The Best Approaches for Setting the Number of Threads -- Using a Single task_scheduler_init Object for a Simple Application -- Using More Than One task_scheduler_init Object in a Simple Application -- Using Multiple Arenas with Different Numbers of Slots to Influence Where TBB Places Its Worker Threads -- Using global_control to Control How Many Threads Are Available to Fill Arena Slots -- Using global_control to Temporarily Restrict the Number of Available Threads -- When NOT to Control the Number of Threads -- Figuring Out What's Gone Wrong -- Summary -- Chapter 12: Using Work Isolation for Correctness and Performance -- Work Isolation for Correctness -- Creating an Isolated Region with  this_task_arena::isolate -- Oh No! Work Isolation Can Cause Its Own Correctness Issues! -- Even When It Is Safe, Work Isolation Is Not Free -- Using Task Arenas for Isolation: A Double-Edged Sword -- Don't Be Tempted to Use task_arenas to Create Work Isolation for Correctness -- Summary -- For More Information -- Chapter 13: Creating Thread-to-Core and Task-to-Thread Affinity -- Creating Thread-to-Core Affinity -- Creating Task-to-Thread Affinity -- When and How Should We Use the TBB Affinity Features? -- Summary. , For More Information.
    Additional Edition: Print version: Voss, Michael Pro TBB Berkeley, CA : Apress L. P.,c2019 ISBN 9781484243978
    Language: English
    Subjects: Computer Science
    RVK:
    Keywords: Electronic books. ; Electronic books
    URL: Volltext  (kostenfrei)
    URL: Volltext  (kostenfrei)
    URL: Full-text  ((OIS Credentials Required))
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 3
    UID:
    b3kat_BV046062880
    Format: 1 Online-Ressource (xxii, 426 Seiten) , 160 Illustrationen, 79 Illustrationen (farbig)
    ISBN: 9783030134990
    Additional Edition: Erscheint auch als Druck-Ausgabe ISBN 978-3-030-13498-3
    Language: English
    Subjects: Computer Science
    RVK:
    Keywords: Softwareentwicklung ; Informationssystem ; Aufsatzsammlung ; Electronic books
    URL: Volltext  (kostenfrei)
    URL: Volltext  (kostenfrei)
    URL: Full-text  ((OIS Credentials Required))
    Author information: Reussner, Ralf
    Author information: Hasselbring, Wilhelm 1964-
    Author information: Goedicke, Michael
    Author information: Märtin, Lukas
    Author information: Vogel-Heuser, Birgit 1961-
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 4
    Book
    Book
    Upper Saddle River, NJ [u.a.] :Prentice Hall,
    UID:
    almafu_BV036612495
    Format: XXIX, 431 S. : , Illustrationen, Diagramme.
    ISBN: 978-0-13-235088-4 , 0-13-235088-2
    Series Statement: Robert C. Martin series
    Note: Hier auch später erschienene unveränderte Nachdrucke
    Language: English
    Subjects: Computer Science
    RVK:
    RVK:
    Keywords: Programmcode ; Testen ; Agile Softwareentwicklung ; Zuverlässigkeit ; Fehlerbehandlung ; Programmcode ; Softwaretest ; Programmcode ; Fehlerbehandlung ; Programmcode ; Testen
    Author information: Martin, Robert C. 1952-
    Author information: Feathers, Michael C.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 5
    Book
    Book
    Cambridge, Mass. [u.a.] :MIT Press,
    UID:
    almafu_BV035368835
    Format: VIII, 305 S. : , Ill.
    ISBN: 978-0-262-14101-7
    Language: English
    Subjects: Computer Science , General works
    RVK:
    RVK:
    Keywords: Computerspiel
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 6
    UID:
    b3kat_BV047225314
    Format: 288 Seiten , Illustrationen, Diagramme , 21 cm x 14.8 cm, 375 g
    Edition: 1. Auflage
    ISBN: 9783747503287 , 3747503284
    Note: Auf dem Cover: "zahlreiche Praxisbeispiele und Übungen"
    Additional Edition: Erscheint auch als Online-Ausgabe ISBN 978-3-7475-0329-4
    Additional Edition: Erscheint auch als Online-Ausgabe ISBN 978-3-7475-0330-0
    Language: German
    Subjects: Computer Science
    RVK:
    Keywords: Python 3.0 ; Python ; Aufgabensammlung ; Anleitung
    Author information: Weigend, Michael 1954-
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 7
    UID:
    b3kat_BV046888394
    Format: 704 Seiten , Illustrationen , 4 Poster mit Übersichten: Skelett, Gefäße, Nerven, Muskeln , 19 cm x 12.7 cm, 779 g
    Edition: 18., unveränderte Auflage
    ISBN: 9783132438200 , 3132438200
    Additional Edition: Erscheint auch als Online-Ausgabe, PDF ISBN 978-3-13-243821-7
    Additional Edition: Erscheint auch als Online-Ausgabe, EPUB ISBN 978-3-13-243822-4
    Former: Vorangegangen ist
    Language: German
    Subjects: Computer Science , Biology , Sports Science
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    RVK:
    Keywords: Anatomie ; Physiologie ; Körper ; Einführung ; Lehrbuch ; Einführung
    Author information: Schünke, Michael 1950-
    Author information: Faller, Adolf 1913-1989
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 8
    UID:
    almahu_BV043023536
    Format: 345 S. : , Ill., graph. Darst.
    Edition: 1. Aufl.
    ISBN: 978-3-86490-323-6
    Series Statement: SmartBooks Mac und mehr
    Language: German
    Subjects: Computer Science
    RVK:
    Keywords: Macintosh ; OS X El Capitan ; Macintosh ; MacOS ; macOS Sierra ; Ratgeber
    Author information: Krimmer, Michael 1974-
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 9
    Online Resource
    Online Resource
    Berlin, Heidelberg :Springer Berlin / Heidelberg,
    UID:
    almahu_9949301194802882
    Format: 1 online resource (491 pages)
    ISBN: 9783642318306
    Series Statement: Lecture Notes in Computer Science Ser. ; v.7250
    Content: The focus of this book, and the BISON project from which the contributions originate, is a network based integration of data repositories of a variety of types, and the development of new ways to analyse and explore the resulting gigantic information networks.
    Note: Title -- Foreword -- Table of Contents -- Part I: Bisociation -- Towards Bisociative Knowledge Discovery -- Motivation -- Bisociation -- Types of Bisociation -- Bridging Concepts -- Bridging Graphs -- Bridging by Structural Similarity -- Other Types of Bisociation -- Bisociation Discovery Methods -- Future Directions -- Conclusions -- References -- Towards Creative Information Exploration Based on Koestler's Concept of Bisociation -- Introduction -- Creativity -- What Is Creativity? -- Three Roads to Creativity -- Computational Creativity -- Koestler's Concept of Bisociation -- Elements of Bisociative Computational Creativity -- Towards a Formal Definition of Bisociation -- Related Work -- Discussion and Conclusion -- References -- From Information Networks to Bisociative Information Networks -- Introduction -- Different Categories of Information Network -- Properties of Information Units -- Properties of Relations -- Prominent Types of Information Networks -- Ontologies -- Semantic Networks -- Topic Maps -- Weighted Networks -- BisoNets: Bisociative Information Networks -- Summary -- Patterns of Bisociation in BisoNets -- Bridging Concept -- Bridging Graphs -- Bridging by Graph Similarity -- Conclusion -- References -- Part II: Representation and Network Creation -- Network Creation: Overview -- References -- Selecting the Links in BisoNets Generated from Document Collections -- Introduction -- Reminder: Bisociation and BisoNets -- BisoNet Generation -- Data Access and Pre-processing -- Creating Nodes -- Linking Nodes: Different Metrics -- Cosine and Tanimoto Measures -- The Bison Measure -- The Probabilistic Measure -- Benchmarks -- The Swanson Benchmark -- The Biology and Music Benchmark -- Conclusion -- References -- Bridging Concept Identification for Constructing Information Networks from Text Documents -- Introduction. , Problem Description -- Document Acquisition and Preprocessing -- Document Acquisition -- Document Preprocessing -- Background Knowledge -- Candidate Concept Detection -- Distance Measures between Vectors -- Identifying Bridging Concept Candidates for High Quality Network Entities Extraction -- Heuristics Description -- Frequency Based Heuristics -- Tf-idf Based Heuristics -- Similarity Based Heuristics -- Outlier Based Heuristics -- Baseline Heuristics -- Heuristics Evaluation -- Evaluation Procedure -- Migraine-Magnesium Dataset -- Comparison of the Heuristics -- Network Creation -- References -- Discovery of Novel Term Associations in a Document Collection -- Introduction -- Related Work -- The tpf-idf-tpu Model of Important Term Pair Associations -- Term Pair Frequency (tpf) and Inverse Document Frequency (idf) -- Term Pair Uncorrelation (tpu) -- Experiments -- Tpf-idf-tpu vs. tf-idf -- Sentence vs. Document-Level tpf-idf-tpu Methods -- Comparison of tpf-idf-tpu and tf-idf Using Annotated Test Set -- Conclusion -- References -- Cover Similarity Based Item Set Mining -- Introduction -- Frequent Item Set Mining -- Jaccard Item Sets -- The Eclat Algorithm -- The JIM Algorithm (Jaccard Item Set Mining) -- Other Similarity Measures -- Experiments -- Conclusions -- References -- Patterns and Logic for Reasoning with Networks -- Introduction -- The Biomine and ProbLog Frameworks -- Using Graphs: Biomine -- Using Logic: ProbLog -- Summary -- Inference and Reasoning Techniques -- Deduction: Reasoning about Node Tuples -- Abduction: Reasoning about Subgraphs -- Induction: Finding Patterns -- Combining Induction and Deduction -- Modifying the Knowledge Base -- Summary -- Using Probabilistic or Algebraic Labels -- The Probabilistic Model of Biomine and ProbLog -- Probabilistic Deduction -- Probabilistic Abduction and Top-k Instantiations. , Patterns and Probabilities -- Combining Induction and Deduction -- Modifying the Probabilistic Knowledge Base -- Beyond Probabilities -- Conclusions -- References -- Part III: Network Analysis -- Network Analysis: Overview -- References -- BiQL: A Query Language for Analyzing Information Networks -- Introduction -- Motivating Example -- Requirements -- Data Representation -- Basic Data Manipulation -- Illustrative Examples -- Related Work -- Knowledge Discovery -- Databases -- Conclusions -- References -- Review of BisoNet Abstraction Techniques -- Introduction -- Preference-Free Methods -- Relative Neighborhood Graph -- Node Centrality -- PageRank and HITS -- Birnbaum's Component Importance -- Graph Partitioning -- Hierarchical Clustering -- Edge Betweenness -- Frequent Subgraphs -- Preference-Dependent Methods -- Relevant Subgraph Extraction -- Detecting Interesting Nodes or Paths -- Personalized PageRank -- Exact Subgraph Search -- Similarity Subgraph Search -- Conclusion -- References -- Simplification of Networks by Edge Pruning -- Introduction -- Lossy Network Simplification -- Definitions -- Example Instances of the Framework -- Analysis of the Problem -- Multiplicativity of Ratio of Connectivity Kept -- A Bound on the Ratio of Connectivity Kept -- A Further Bound on the Ratio of Connectivity Kept -- Algorithms -- Naive Approach -- Brute Force Approach -- Path Simplification -- Combinational Approach -- Experiments -- Experimental Setup -- Results -- Related Work -- Conclusion -- References -- Network Compression by Node and Edge Mergers -- Introduction -- Problem Definition -- Weighted and Compressed Graphs -- Simple Weighted Graph Compression -- Generalized Weighted Graph Compression -- Optimal Superedge Weights and Mergers -- Bounds for Distances between Graphs -- A Bound on Distances between Nodes -- Related Work -- Algorithms. , Experiments -- Experimental Setup -- Results -- Conclusions -- References -- Finding Representative Nodes in Probabilistic Graphs -- Introduction -- Related Work -- Similarities in Probabilistic Graphs -- Clustering and Representatives in Graphs -- Experiments -- Test Setting -- Results -- Conclusions -- References -- (Missing) Concept Discovery in Heterogeneous Information Networks -- Introduction -- Bisociative Information Networks -- Concept Graphs -- Preliminaries -- Detection -- Application -- Results -- Conclusion and Future work -- References -- Node Similarities from Spreading Activation -- Introduction -- Related Work -- Spreading Activation -- Linear Standard Scenario -- Node Signatures -- Node Similarities -- Activation Similarity -- Signature Similarity -- Experiments -- Schools-Wikipedia -- Conclusion -- References -- Towards Discovery of Subgraph Bisociations -- Motivation -- Networks, Domains and Bisociations -- Knowledge Modeling -- Domains -- Bisociations -- Finding and Assessing Bisociations -- Domain Extraction -- Scoring Bisociation Candidates -- Complexity and Scalability -- Preliminary Evaluation -- Related Work -- Conclusion -- References -- Part IV: Exploration -- Exploration: Overview -- Introduction -- Contributions -- Conclusions -- References -- Data Exploration for Bisociative Knowledge Discovery: A Brief Overview of Tools and Evaluation Methods -- Introduction -- Bisociative Data Exploration -- Different Meanings of Exploration -- Definition of Bisociative Exploration -- Implications for User Interface Design -- Supporting Bisociative Data Exploration -- Tools for Data Exploration -- Evaluation of Knowledge Discovery Tools -- Evaluation Challenges -- Open Issues -- Benchmark Evaluation for Discovery Tools -- Conclusion and Future Work -- References. , On the Integration of Graph Exploration and Data Analysis: The Creative Exploration Toolkit -- Introduction -- State of the Art in Graph Interaction and Visualization -- The Creative Exploration Toolkit -- Network and Algorithm Providers -- Communication between CET and Other Tools -- The KNIME Information Mining Platform -- Wikipedia -- Evaluation -- Study Design -- Results of the Study -- Conclusion and Future Work -- References -- Bisociative Knowledge Discovery by Literature Outlier Detection -- Introduction -- Related Work in Literature Mining -- The Upgraded RaJoLink Knowledge Discovery Process -- Outlier Detection in the RaJoLink Knowledge Discovery Process -- Application of Outlier Detection in the Autism Literature -- Conclusions -- References -- Exploring the Power of Outliers for Cross-Domain Literature Mining -- Introduction -- Related Work -- Experimental Datasets -- Detecting Outlier Documents -- Classification Noise Filters for Outlier Detection -- Experimental Evaluation -- Conclusions -- References -- Bisociative Literature Mining by Ensemble Heuristics -- Introduction -- Problem Description -- Methodology for Bridging Concept Identification and Ranking -- Base Heuristics -- Ensemble Heuristic -- Evaluation of the Methodology -- Experimental Setting -- Results in the Migraine-Magnesium Dataset -- Results in Autism-Calcineurin Dataset -- The CrossBee System -- A Typical Use Case -- Other CrossBee Functionalities -- Discussion and Further Work -- References -- Part V: Applications and Evaluation -- Applications and Evaluation: Overview -- Introduction -- Contributions -- Lessons Learned -- The BISON Software for Applications Development -- Application Potential of the BISON Methodology -- Evaluation of the BISON Methodology and the Potential for Triggering Creativity. , The Future of Bisociative Reasoning and Cross-Context Data Mining.
    Additional Edition: Print version: Berthold, Michael R. Bisociative Knowledge Discovery Berlin, Heidelberg : Springer Berlin / Heidelberg,c2012 ISBN 9783642318290
    Language: English
    Subjects: Computer Science
    RVK:
    Keywords: Electronic books. ; Electronic books ; Aufsatzsammlung
    URL: Full-text  ((OIS Credentials Required))
    URL: Volltext  (lizenzpflichtig)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
Close ⊗
This website uses cookies and the analysis tool Matomo. Further information can be found on the KOBV privacy pages