Materias dentro de su búsqueda.
Materias dentro de su búsqueda.
- History 235
- Historia 129
- Development 93
- Management 90
- Engineering & Applied Sciences 78
- Application software 64
- Leadership 60
- Computer Science 46
- Politics and government 42
- Artificial intelligence 39
- Business & Economics 39
- Data processing 39
- Computer security 35
- Filosofía 35
- Business 34
- Crítica e interpretación 34
- Operating systems (Computers) 34
- Computer programming 33
- Computer software 33
- Social aspects 33
- Economic conditions 32
- History and criticism 31
- Technological innovations 31
- Computer networks 30
- Economics 30
- Success in business 30
- Computer programs 28
- Finance 28
- Política y gobierno 27
- Information technology 25
-
2781Publicado 2019Tabla de Contenidos: “…Beginning the CNN Tour with Character Recognition -- Understanding image basics -- Explaining How Convolutions Work -- Understanding convolutions -- Simplifying the use of pooling -- Describing the LeNet architecture -- Detecting Edges and Shapes from Images -- Visualizing convolutions -- Unveiling successful architectures -- Discussing transfer learning -- Chapter 11 Introducing Recurrent Neural Networks -- Introducing Recurrent Networks -- Modeling sequences using memory -- Recognizing and translating speech -- Placing the correct caption on pictures -- Explaining Long Short-Term Memory -- Defining memory differences -- Walking through the LSTM architecture -- Discovering interesting variants -- Getting the necessary attention -- Part 3 Interacting with Deep Learning -- Chapter 12 Performing Image Classification -- Using Image Classification Challenges -- Delving into ImageNet and MS COCO -- Learning the magic of data augmentation -- Distinguishing Traffic Signs -- Preparing image data -- Running a classification task -- Chapter 13 Learning Advanced CNNs -- Distinguishing Classification Tasks -- Performing localization -- Classifying multiple objects -- Annotating multiple objects in images -- Segmenting images -- Perceiving Objects in Their Surroundings -- Discovering how RetinaNet works -- Using the Keras-RetinaNet code -- Overcoming Adversarial Attacks on Deep Learning Applications -- Tricking pixels -- Hacking with stickers and other artifacts -- Chapter 14 Working on Language Processing -- Processing Language -- Defining understanding as tokenization -- Putting all the documents into a bag -- Memorizing Sequences that Matter -- Understanding semantics by word embeddings -- Using AI for Sentiment Analysis -- Chapter 15 Generating Music and Visual Art -- Learning to Imitate Art and Life -- Transferring an artistic style…”
Libro electrónico -
2782Publicado 2023Tabla de Contenidos: “…Intro -- Title Page -- Copyright Page -- Table of Contents -- Introduction -- About This Book -- Foolish Assumptions -- Icons Used in This Book -- Beyond This Book -- Where to Go from Here -- Part 1 Embracing the Evolving Role of HR -- Chapter 1 Peeking into the World of HR -- Recognizing Key HR Responsibilities -- Building Your Team: Attracting Talent -- Retaining and Engaging Talent: Creating a Positive Employee Experience -- Developing Talent: Providing Opportunities for Growth -- Minimizing Organizational Risk -- Chapter 2 Setting the Stage: Trends in the HR and Talent Space -- Working from Anywhere: The Hybrid Work Model -- Recognizing different types of hybrid work -- Making the hybrid model work for all employees -- Workplace Skills: Upskilling -- Leveraging People Analytics and Data-Driven HR -- Shifting HR leadership from administrative to strategic -- Recognizing what you can do -- Leading Diversity, Equity, and Inclusion (DEI) in the Workplace -- Considering the pros to a DEI workplace -- Creating a DEI workplace -- Prioritizing Employee Well-Being and Workforce Health -- Chapter 3 Leveraging HR Technology -- Looking at the Growth of HR Technology -- Identifying the Categories of HR Tech -- Human resources information systems -- Applicant tracking systems -- Employee experience systems -- Performance management systems -- Employee engagement software -- Learning management systems -- Employee recognition software -- Succession management systems -- Choosing the Systems That Are Right for You -- Sourcing and Purchasing HR Technology: The How-To -- Communicating the Value of HR Tech -- Identifying Technology Skills You Need -- Part 2 Putting the Right People in the Right Roles -- Chapter 4 Creating a Talent Strategy Aligned with Business Strategy -- Getting Clear on Your Employer Brand -- Recognizing what core values are…”
Libro electrónico -
2783Publicado 2024Tabla de Contenidos: “…Cover -- Title Page -- Copyright and Credit -- Dedicated -- Foreword -- Contributors -- Table of Contents -- Preface -- Part 1: Diving into Amazon EC2 Fundamentals -- Chapter 1: Introduction to Amazon EC2 and Its Benefits -- Unveiling Amazon Web Services and EC2 -- Benefits of EC2 -- Amazon EC2 versus traditional hosting -- EC2 use cases -- Web application hosting -- Big data processing and analytics -- A multitude of other use cases -- Amazon EC2's standout features compared to other cloud platforms -- Summary -- Chapter 2: Understanding Core Components of Amazon EC2 -- Introduction to core components -- Amazon EC2 instances -- Definition and types of instances -- Instance lifecycle and instance states -- Instance state and instance lifecycle use cases for instance management -- Instance metadata and user data -- What is instance metadata and user data? …”
Libro electrónico -
2784Publicado 2024Tabla de Contenidos: “…Maturing and empowering through the hub and spoke model -- Driving consistency through the centralized model -- How to select the right model for your organization -- What roles are needed -- CDO versus CDAO -- Data management roles -- Data solutions leader -- AI considerations -- How to structure the team for results (and why) -- Building the rhythm of the business of data -- Enterprise data committee -- Enterprise data council -- Functional roles -- Executive data domain leader -- Business data steward -- Technical data steward -- Talent development -- Recruiting talent -- Growing the pipeline of talent -- Upskilling and reskilling -- Conclusion -- References -- Chapter 4: Baseline Your Organization -- What is a data management maturity model? …”
Libro electrónico -
2785por Colecchia, Alessandra“…The upskilling trend is more apparent in manufacturing than in services, while overall the shift to higher skilled jobs has occurred primarily within industries, rather than between them. …”
Publicado 1996
Capítulo de libro electrónico -
2786Publicado 2021Tabla de Contenidos: “…2.3.4 Rational, complex numbers, and other numeric types -- 2.4 Flow control -- 2.4.1 For: The central pillar of iteration -- 2.4.2 Continue: Skipping the rest of the current iteration -- 2.4.3 While: Looping until a condition changes its state -- 2.4.4 Loop: The basis for Rust's looping constructs -- 2.4.5 Break: Aborting a loop -- 2.4.6 If, if else, and else: Conditional branching -- 2.4.7 Match: Type-aware pattern matching -- 2.5 Defining functions -- 2.6 Using references -- 2.7 Project: Rendering the Mandelbrot set -- 2.8 Advanced function definitions -- 2.8.1 Explicit lifetime annotations -- 2.8.2 Generic functions -- 2.9 Creating grep-lite -- 2.10 Making lists of things with arrays, slices, and vectors -- 2.10.1 Arrays -- 2.10.2 Slices -- 2.10.3 Vectors -- 2.11 Including third-party code -- 2.11.1 Adding support for regular expressions -- 2.11.2 Generating the third-party crate documentation locally -- 2.11.3 Managing Rust toolchains with rustup -- 2.12 Supporting command-line arguments -- 2.13 Reading from files -- 2.14 Reading from stdin -- Summary -- 3 Compound data types -- 3.1 Using plain functions to experiment with an API -- 3.2 Modeling files with struct -- 3.3 Adding methods to a struct with impl -- 3.3.1 Simplifying object creation by implementing new() -- 3.4 Returning errors -- 3.4.1 Modifying a known global variable -- 3.4.2 Making use of the Result return type -- 3.5 Defining and making use of an enum -- 3.5.1 Using an enum to manage internal state -- 3.6 Defining common behavior with traits -- 3.6.1 Creating a Read trait -- 3.6.2 Implementing std::fmt::Display for your own types -- 3.7 Exposing your types to the world -- 3.7.1 Protecting private data -- 3.8 Creating inline documentation for your projects -- 3.8.1 Using rustdoc to render docs for a single source file…”
Libro electrónico -
2787por Cline, Marshall P.Tabla de Contenidos: “…-- FAQ 3.08: Can OO be ignored until it goes away? -- FAQ 3.09: What OO language is best? …”
Publicado 1999
Libro electrónico -
2788por Mulder, Valentin“…The Swiss Confederation tasked the Cyber-Defence Campus (CYD Campus) to identify the 38 most relevant encryption and data protection technologies, analyze their expected evolution until 2025, and derive implications for the military, civil society, and economy sectors. …”
Publicado 2023
Libro electrónico -
2789por Biele, Cezary“…Because of this, the primary objective of the MIDI conference, which was conducted online on December 13–15, 2022, is to combine two up until recently distinct disciplines of research—artificial intelligence and human–technology interaction…”
Publicado 2023
Libro electrónico -
2790Publicado 2022Tabla de Contenidos: “…Intro -- Title Page -- Copyright Page -- Table of Contents -- Introduction -- About This Book -- Foolish Assumptions -- Icons Used in This Book -- Beyond the Book -- Where to Go from Here -- Part 1 Meet Your iPhone -- Chapter 1 Unveiling the iPhone -- The Big Picture -- The iPhone as a phone and a digital camera or camcorder -- The iPhone as an iPod -- The iPhone as an internet communications device -- Technical specifications -- A Quick Tour Outside -- On the sides -- On the bottom -- On the front -- On the back -- Status bar -- Home Sweet Home Screen -- The first Home screen -- The second Home screen -- The dock (all Home screens) -- Chapter 2 iPhone Basic Training -- Activating the iPhone -- Turning the iPhone On and Off -- Pointing a finger at Touch ID -- Facing up to Face ID -- Continuing the setup -- Locking the iPhone -- Mastering the Multitouch Interface -- Discovering the special-use keys -- One-handed keyboard -- The incredible, intelligent, and virtual iPhone keyboard -- Anticipating what comes next -- Correcting mistakes -- Choosing an alternative keyboard -- Cutting, copying, pasting, and replacing -- Multitasking -- Navigating beyond the Home Screen -- Organizing Icons into Folders -- Visiting the App Library -- Watching Widgets -- Proactive Searching -- Notifications and Today View -- Chapter 3 Synchronicity: Getting Stuff to and from Your iPhone -- A Brief iCloud Primer -- The Kitchen Sync -- First things first: About iPhone backups -- Sync prep 101 -- Syncing Your Data with iTunes or Finder -- Syncing contacts -- Syncing calendars -- Advanced syncing -- Synchronizing Your Media -- Music, movies, TV shows, and podcasts -- Photos -- Manual Syncing -- Chapter 4 Understanding the Phone-damentals -- Making a Call -- Adding contacts -- Setting up favorites -- Viewing the Recents list -- Dialing with the keypad…”
Libro electrónico -
2791por Symeonidis, VasileiosTabla de Contenidos: “…The Multiplicity of Potential Perceptions -- 4.2 On Meaning. The Vignette as Unveiling a Multiplicity of Possible Meanings -- 4.3 On Pedagogical Practice. …”
Publicado 2024
Libro electrónico -
2792por McFedries, PaulTabla de Contenidos: “…Intro -- Title Page -- Copyright Page -- Table of Contents -- Introduction -- About This Book -- Foolish Assumptions -- Icons Used in This Book -- Beyond the Book -- Where to Go from Here -- Part 1 Getting to Know Your iPad -- Chapter 1 Unveiling the iPad -- The iPad: A Bird's-Eye View -- The iPad as a media player -- The iPad as an internet device -- The iPad as an e-book reader -- The iPad as a multimedia powerhouse -- The iPad as a platform for third-party apps -- The iPad as a multitasking content production device -- What do you need to use an iPad? …”
Publicado 2024
Libro electrónico -
2793Publicado 2024Tabla de Contenidos: “…Cover -- Title Page -- Copyright and Credits -- Contributors -- Table of Contents -- Preface -- Chapter 1: Modernizing Rob the Builder's Business with Power Pages -- Empowering Rob the Builder's transformation -- Brenda's revelation -- Lost opportunities and health and safety compliance -- Brenda's niece, Sarah, enters the scene -- Power Pages - a vision unveiled -- Power Pages - a paradigm shift -- Use case - establishing and utilizing a comprehensive information system with Power Pages -- Understanding Power Pages' role -- Power Platform's no-code/low-code magic -- Bridging technology gaps with Power Pages -- Setting the stage - tenancy and Power Pages -- Laying the foundation - what is a tenancy? …”
Libro electrónico -
2794Publicado 2022“…We'll advise you on how to instill and develop inclusion and diversity in your organization and the benefits that will deliver for you. …”
Grabación no musical -
2795Publicado 2021“…Though the first longitudinal surveys began in the 1960s, such surveys were rare until the 1980s. Researchers became increasingly aware of various unique features and opportunities of longitudinal surveys and methodological research into these unique features developed rapidly throughout the 1990s and 2000s. …”
Libro electrónico -
2796Publicado 2020“…Next, you'll code your first smart contract using Ethereum and Solidity, adding a web interface, trust validation, and other features until your app is ready for deployment. The only thing you need to get started is standard hardware and open source software…”
Libro electrónico -
2797Publicado 2018Tabla de Contenidos: “…variable -- String handling with the if construct -- Checking for null values -- File handling with the if command -- Multiple test commands and if constructs -- The if/elif/else command -- The null command -- Switching case -- Implementing simple menus with select -- Summary -- Chapter 9: Automating Repetitive Tasks -- Looping with the for command -- Exiting from the current loop iteration with the continue command -- Exiting from a loop with a break -- Working with the do - while loop -- Using until -- Piping the output of a loop to a Linux command -- Running loops in the background -- The IFS and loops -- Summary -- Chapter 10: Working with Functions -- Understanding functions -- Displaying functions -- Removing functions -- Passing arguments or parameters to functions -- Sharing the data with many functions -- Declaring local variables in functions -- Returning information from functions -- Returning a word or string from a function -- Running functions in the background -- Command source and period (.) -- Creating a library of functions -- Summary -- Chapter 11: Using Advanced Functionality in Scripts -- Understanding signals and traps -- Using the trap command -- Ignoring signals…”
Libro electrónico -
2798Publicado 2019Tabla de Contenidos: “…Chapter 18 Conducting Post-Incident Reviews -- Going beyond Root Cause Analysis -- Stepping through an Incident -- Succeeding at Post-Incident Reviews -- Scheduling it immediately -- Including everyone -- Keeping it blameless -- Reviewing the timeline -- Asking tough questions -- Acknowledging hindsight bias -- Taking notes -- Making a plan -- Part 5 Tooling Your DevOps Practice -- Chapter 19 Adopting New Tools -- Integrating with Open Source Software -- Opening community innovation -- Licensing open source -- Deciding on open source -- Transitioning to New Languages -- Compiling and interpreting languages -- Parallelizing and multithreading -- Programming functionally -- Managing memory -- Choosing languages wisely -- Chapter 20 Managing Distributed Systems -- Working with Monoliths and Microservices -- Choosing a monolithic architecture first -- Evolving to microservices -- Designing Great APIs -- What's in an API -- Focusing on consistent design -- Containers: Much More than Virtual Machines -- Understanding containers and images -- Deploying microservices to containers -- Comparing orchestrators: Harmonize the hive -- Configuring containers -- Monitoring containers: Keeping them alive until you kill them -- Securing containers: These boxes need a lock -- Chapter 21 Migrating to the Cloud -- Automating DevOps in the Cloud -- Taking your DevOps culture to the cloud -- Learning through adoption -- Benefitting from cloud services -- Cumulus, Cirrus, and Steel: Types of Clouds -- Public cloud -- Private cloud -- Hybrid cloud -- Cloud as a Service -- Infrastructure as a Service -- Platform as a Service -- Software as a Service -- Choosing the Best Cloud Service Provider -- Amazon Web Services (AWS) -- Microsoft Azure -- Google Cloud Platform (GCP) -- Finding Tools and Services in the Cloud -- Part 6 The Part of Tens…”
Libro electrónico -
2799
-
2800Publicado 2022“…By examining objects found by the agents of the consuls in the 19th century CE and those found by the Austrian mission in the 1970s in TT 414 and in wider Theban contexts, the authors are able to identify Kalutj/Nes-Khonsu, wife of Hor, as another, until now overlooked individual, separate from his sister with the same name. …”
Libro electrónico