Vtome.ru - электронная библиотека

  • Добавил: literator
  • Дата: 18-04-2025, 03:47
  • Комментариев: 0
Название: Mastering Python Basics: Python, #1
Автор: Anwaar
Издательство: Independently published
Год: 2025
Страниц: 404
Язык: английский
Формат: pdf, epub, mobi
Размер: 10.1 MB

Are you ready to dive into the world of Python programming but don't know where to start? "Mastering Python Basics: A Beginner's Guide" is the ultimate resource for absolute beginners looking to build a strong foundation in Python. This book takes you on a step-by-step journey, covering everything from basic syntax and data types to essential programming concepts like loops, functions, and object-oriented programming (OOP). With easy-to-follow explanations, practical examples, and hands-on exercises, you'll gain the confidence to start coding your own Python projects in no time! Whether you want to kickstart your coding journey, build projects, or prepare for a career in programming, this book is your perfect starting point.
  • Добавил: literator
  • Дата: 17-04-2025, 20:54
  • Комментариев: 0
Название: Analysis and Design of Delayed Neural Networks
Автор: Xin Wang, Yu Xue, Xian Zhang, Yantao Wang
Издательство: Springer
Год: 2025
Страниц: 302
Язык: английский
Формат: pdf (true)
Размер: 14.1 MB

Artificial neural network (NN) is often called NN for short. The dynamics of NNs have been applied to multiple fields, such as associative memory, autonomous navigation, data encryption, intelligent control, medicine diagnosis, optimization, pattern recognition, and so forth. This book provides a direct method based on system solutions to address the problems related to the analysis and control of Delayed Neural Networks. The method proposed in this book is important for the following reasons: It does not involve the construct of any Lyapunov-Krasovskii functional (LKF), which overcomes the difficulty in constructing an appropriate and effective LKF; It can provide more simpler sufficient conditions, and hence it possesses less computational complexity; It can result in delay-dependent global exponential stability criteria that can used to give the decay rate estimation of the state; It is suitable for analysis and design problems of most system models with (multiple) delays after a small modification. The book is divided into 11 chapters, and focuses on the analysis and design problems related to Delayed Neural Networks. It is written for graduate students and research level mathematicians and is suitable for postgraduates or as a reference.
  • Добавил: literator
  • Дата: 17-04-2025, 20:02
  • Комментариев: 0
Название: Blockchain and AI in Shaping the Modern Education System
Автор: Randhir Kumar, Prabhat Kumar, Sobin C.C., N.P. Subheesh
Издательство: CRC Press
Год: 2025
Страниц: 278
Язык: английский
Формат: epub (true)
Размер: 11.2 MB

In today’s rapidly evolving digital landscape, blockchain and Artificial Intelligence (AI) are at the forefront of transforming various industries, and education is no exception. The convergence of these two revolutionary technologies promises to reshape the modern education system by enhancing data security, promoting personalized learning, and creating decentralized frameworks for record-keeping and credentialing. This book delves into how blockchain and AI can drive a more inclusive, efficient, and secure educational ecosystem, where student-centered approaches and data integrity are paramount. This book is organized into several sections, each exploring the distinct roles of blockchain and AI within education. It begins with an introduction to the fundamental principles of these technologies and an overview of their individual strengths.
  • Добавил: literator
  • Дата: 17-04-2025, 19:15
  • Комментариев: 0
Название: Floating Point Numerics for Games and Simulations
Автор: Nima Badizadegan
Издательство: CRC Press
Год: 2025
Страниц: 213
Язык: английский
Формат: epub (true)
Размер: 10.1 MB

Floating point is ubiquitous in computers, where it is the default way to represent non-integer numbers. However, few people understand it. We all see weird behavior sometimes, and many programmers treat it as a mystical and imprecise system of math that just works until it sometimes doesn’t. We hear that we shouldn’t trust floating point with money, we know that 0.1 + 0.2 does not equal 0.3, and “NaN” shows up in our logs when things break. We rarely hear why any of this is the case, and less about what to do about it. This book pulls back the veil on floating point and shows how this number system we program with every day works. It discusses how to leverage the number system for common calculations, particularly in graphics and simulations, and avoid pitfalls. Further, we will review methods that can give you either better performance or better accuracy on tasks like numerical integration and function approximation, so you can learn to make the right tradeoffs in your programs.
  • Добавил: literator
  • Дата: 17-04-2025, 18:22
  • Комментариев: 0
Название: C++ Low Latency: Multithreading and Hotpath Optimizations
Автор: David Spuler
Издательство: Aussie AI Labs Pty Ltd
Год: 2025
Страниц: 362
Язык: английский
Формат: pdf, epub, mobi
Размер: 10.1 MB

Run faster! This book is about speeding up C++ for low latency programming in multithreaded environments and sequential code in C++ backends. Low latency programming is coding an algorithm so that it completes the task in the fastest time. In many cases, this is effectively the “user response time” or the “round-trip time” for a computation. The main uses of low latency programming include: • AI kernels — latency is the time between submitting a query, and starting to get the answer back; • Embedded devices — the system must respond quickly, in real time (e.g., autonomous self-driving cars are a large embedded device); • High-Frequency Trading (HFT) — latency is the time it takes to submit, execute, and complete a trade; • Game engines — latency is ensuring that the characters or environment moves fast enough to be responsive to user inputs and to keep up with the frame rate. Game engines have historically been written in C++, at least for all the low-level stuff dealing with frame rates and 3D animation. Similarly, high-frequency trading is usually running in C++ at the bottom level. You can also use C, which is the longstanding precursor to C++. The C programming language is obviously fast, as that was its key design point. C is not necessarily any faster than C++, so if you used only a C-like subset of C++, the two would be the same speed.
  • Добавил: literator
  • Дата: 17-04-2025, 14:43
  • Комментариев: 0
Название: Debugging and Testing from Scratch: A Practical Guide with Examples
Автор: William E. Clark
Издательство: Nobtrex L.L.C.
Год: 2025
Страниц: 265
Язык: английский
Формат: pdf, epub, mobi
Размер: 10.1 MB

"Debugging and Testing from Scratch: A Practical Guide with Examples" is an indispensable resource designed to equip software developers with the essential tools and techniques needed to produce high-quality, reliable software. This comprehensive guide delivers in-depth coverage of foundational concepts, from understanding software errors to effectively setting up testing environments. Each chapter is meticulously crafted to build upon the previous one, ensuring that readers gain a holistic understanding of debugging and testing methodologies crucial for the software development lifecycle.Structured to benefit both novices and seasoned professionals, the book delves deeply into practical aspects of debugging, such as using breakpoints, logging, and instrumentation to diagnose issues effectively. Readers will explore advanced topics like memory diagnostics, concurrency debugging, and the integration of automated testing into CI/CD pipelines. With a dedicated focus on real-world applications, it provides actionable strategies for designing test cases, organizing test suites, and executing security testing, ensuring comprehensive software evaluation and enhancement.
  • Добавил: Natali26
  • Дата: 17-04-2025, 12:06
  • Комментариев: 0
Название: Build Your First C# Desktop Application: A Practical Guide for Beginners
Автор: Bakht Muhammad
Издательство: Bakht Muhammad
Год: 2024
Формат: pdf, epub, fb2
Страниц: 98
Размер: 16.1 Мб
Язык: английский

This is a beginner-friendly guide to developing Windows applications using C# and the WinForms framework. This hands-on book covers everything from UI design and event-driven programming to database integration and debugging, providing a step-by-step approach to building real-world desktop applications. Whether you're new to programming or looking to expand your C# skills, this practical guide will help you create interactive and fully functional apps with ease.
  • Добавил: umkaS
  • Дата: 17-04-2025, 10:54
  • Комментариев: 0
Название: 1400 задач по программированию
Автор: Златопольский Д. М.
Издательство: Москва
Год: 2020
Cтраниц: 192
Формат: pdf (ocr)
Размер: 34 мб
Язык: русский

Овладеть искусством программирования невозможно без решения задач разного типа и уровня сложности. В данной книге читатель найдет более 1400 задач, охватывающих широкий круг тем: вычисления по формулам, обработка данных во время ввода, использование массивов и многие другие. Задачи не привязаны к конкретному языку программирования и могут быть решены в программе на любом языке – Pascal, Python, С, школьном алгоритмическом языке и др.
  • Добавил: Natali26
  • Дата: 17-04-2025, 10:44
  • Комментариев: 0
Название: Full Stack Python Testing: Ensuring Quality from Development to Production
Автор: Aarav Joshi
Издательство: Aarav Joshi
Год: 2024
Формат: pdf, epub
Страниц: 830
Размер: 33.2 Мб
Язык: английский

"Full Stack Python Testing: Ensuring Quality from Development to Production" is a comprehensive guide that builds upon Gayathri Mohan's acclaimed "Full Stack Testing" while focusing specifically on Python implementations. This book serves as a one-stop resource for software developers and QA engineers looking to master testing across the entire application stack using Python.
  • Добавил: Natali26
  • Дата: 17-04-2025, 08:25
  • Комментариев: 0
Название: Interpretability and Explainability in AI Using Python
Автор: Aruna Chakkirala
Издательство: Orange Education
Год: 2025
Формат: epub
Страниц: 289
Размер: 108.7 Мб
Язык: английский

Demystify AI Decisions and Master Interpretability and Explainability Today. Key Features. Step-by-step framework for building competitive, market-driven products.Practical guidance on strategy, pricing, user experience, and agility. Proven techniques to handle competition, compliance, and intellectual property.