Leanpub Header

Skip to main content

Filters

Category: "Large language models"

Books

  1. Advanced Geometry and   Computer Vision in AI

    Philosophy of the Book This book represents a belief that geometry and intelligence are inseparable. For a machine to perceive, it must understand spatial relations. For it to act, it must interpret transformations in its environment.Mathematics gives structure to this perception. Artificial Intelligence gives meaning to it.By merging the two, we create not just algorithms—but intelligent systems capable of seeing and understanding like humans.This text thus serves as both a technical manual and a philosophical guide for those who wish to explore the frontier where mathematics meets perception, and perception meets intelligence. Research and Future Directions The closing chapters introduce readers to emerging fields where geometric and AI paradigms merge:·        Neural Radiance Fields (NeRFs) for photorealistic 3D synthesis.·        Differentiable Rendering and Neural Implicit Surfaces.·        Quantum Geometry and AI-Accelerated Vision Systems.·        Ethical and explainable AI in visual modeling.These topics reflect the next stage of evolution in computer vision — where mathematical structures interact dynamically with data-driven intelligence.

  2. Mathematical Modeling in Robotics  and Artificial Intelligenc   VOL-2

    Pedagogical Highlights ·        Illustrations and Diagrams: Each topic is accompanied by clear, labeled figures showing transformations, kinematic chains, and algorithmic workflows.·        Mathematical Derivations: Detailed step-by-step derivations of equations — from rotation matrices to dynamic equations of motion.·        Conceptual Summaries: Every chapter concludes with key takeaways and conceptual summaries to reinforce learning.·        Case Studies and Exercises: Includes practical assignments and research-oriented projects to inspire deeper exploration.·        Interdisciplinary Connection: Bridges the gap between mechanical design, control systems, and artificial intelligence through unified modeling. Intended Audience ·        Engineering Students — especially from Computer Science, Electronics, Mechanical, and Mechatronics backgrounds.·        MCA/M.Tech Students specializing in AI, Data Science, or Automation.·        Researchers working on intelligent control, robotics simulation, or human-robot collaboration.·        Industry Professionals seeking to understand how AI can enhance robotic modeling and performance.·        Faculty Members developing new courses or reference material in Robotics and Artificial Intelligence. Educational and Research Impact This book is not just a compilation of topics; it is a comprehensive educational framework. Each chapter is designed to act as a mini research guide, encouraging experimentation, simulation, and publication.The author’s academic experience of over 18 years brings an authentic balance of teaching methodology and research insights. Students will gain confidence in deriving equations, implementing algorithms, and developing hybrid AI-robotic systems. Future Outlook The future of robotics lies in adaptability — machines that learn from their surroundings and optimize their actions dynamically. With advances in quantum computing, neural hardware, and real-time AI systems, the mathematical models explored in this book will form the foundation for the next generation of intelligent machines.From autonomous drones to AI-driven robotic surgeons, the applications are endless, and all of them depend on the same universal principles — mathematics and intelligence.This book will help its readers not only understand these principles but also innovate upon them.

  3. Mathematical Modeling in Robotics   and Artificial Intelligenc    VOL-1

    The future of robotics lies in adaptability — machines that learn from their surroundings and optimize their actions dynamically. With advances in quantum computing, neural hardware, and real-time AI systems, the mathematical models explored in this book will form the foundation for the next generation of intelligent machines.From autonomous drones to AI-driven robotic surgeons, the applications are endless, and all of them depend on the same universal principles — mathematics and intelligence.This book will help its readers not only understand these principles but also innovate upon them.

  4. Pensare con gli LLM, The Right Way
    Pensare con gli LLM, The Right Way
    Potenziamo il pensiero critico usando l'AI generativa senza farci usare
    Francesco Fullone

    «L'AI mi ha confermato X» usato come prova di X. Output che suonano brillanti ma non reggono a una rilettura severa. Una "AI policy" di tre pagine che nessuno legge. Suona familiare? "Pensare con gli LLM the Right Way" è il sistema di pensiero critico applicato agli LLM: il Triangolo del Pensare-Con (Intento / Avversario / Editore), le quattro decisioni meta di governance, le pratiche socratica e avversariale per indagare e verificare. Non prompt engineering: il metodo per non farsi rispecchiare.

  5. Master Guide to Cyber Security
    Master Guide to Cyber Security
    A Comprehensive Enterprise Cybersecurity Blueprint for Modern Organisations
    TW

    Modern cybersecurity is no longer just about firewalls and antivirus. It is about architecture, governance, secure software delivery, cloud resilience, Zero Trust, AI security, and operational discipline.The Master Guide to Cyber Security brings these domains together into one practical enterprise-focused reference designed for modern security professionals, architects, engineers, and technology leaders.Built around real-world frameworks, secure-by-design principles, and current threat realities, this guide provides a structured roadmap for building secure systems in cloud-native and enterprise environments.

  6. Data structure   and algorithms    for AI & ML

    ·        Comprehensive Learning Path: The book starts with basics and gradually leads you to advanced topics, making it accessible for beginners and challenging for advanced learners.·        Contextual AI Applications: Every concept is illustrated with AI and ML examples, ensuring relevance and immediate applicability.·        Enhanced Understanding of AI Models: Knowing data structures like trees and graphs clarifies how decision trees or knowledge graphs operate internally, boosting your model-building skills.·        Algorithm Efficiency Awareness: Understanding algorithm complexity and heuristics allows you to write optimized AI programs that can handle large datasets and real-time processing.·        Practical Coding Exercises: With implementations in Python, you will develop a coding mindset essential for AI practitioners.·        Preparation for Research and Development: The book equips you to contribute to AI research and innovate new algorithms or improve existing ones.

  7. Building AI Agents from Scratch with Python
    Building AI Agents from Scratch with Python
    From LLM calls to multi-agent systems in production
    CAIO INCAU

    Build a complete AI agent from scratch — from a simple API call to a production multi-agent system with memory, planning, RAG, security, and deployment. 15 chapters, one real project, complete Python code.

  8. Clarity Engineer : Code Is the Side Effect
    Clarity Engineer : Code Is the Side Effect
    Building AI-Driven Systems Where Engineering Judgment Is the Real Work
    Volodymyr Pavlyshyn

    Code Is the Side Effect"Software engineers are not primarily code writers. We are clarity traders — and that hasn't changed."You've seen the demos. The AI builds a whole feature from a sentence. The agent writes tests, fixes the failing ones, opens the PR. It's remarkable.Then you come back three months later. The codebase is a tangle. Nobody knows why anything is the way it is. The agent that built it has no memory of what it decided or why. And every time you ask it to add something new, it breaks two things you didn't know were connected.This is the pattern that nobody talks about. AI coding tools make the easy parts of engineering dramatically easier. They leave the hard parts untouched — and they create new hard parts that didn't exist before.Ways of Working is the book for engineers who want to work with AI agents rather than be gradually replaced by them — who understand that the tools are genuinely powerful and genuinely limited, and want to build practices that get the most from each.What you will actually learnThe world model framework. Before an agent can build anything well, it needs to understand what it's building and why. This book teaches you to give agents what they need: a structured, queryable representation of your architecture, your component contracts, your behavior specifications, and your code patterns. No world model = no sustained agentic development.Intent documentation. The most expensive bug in agentic codebases is not a hallucination — it's a decision made without context. Why is this rule here? Why is this boundary where it is? Agents can't infer rationale from code. You have to write it down.Spec-Kit and formal specifications. GitHub's Spec-Kit brings machine-readable, traceable, CI-verified specifications to engineering teams. This book shows how to use it to turn requirements into agent inputs that are precise enough to generate correct implementations.Graph explainers. Tools like Graphify and Understand-Anything transform codebases and documents into queryable knowledge graphs — giving agents navigable context instead of flat text. This is the memory substrate that makes multi-agent systems reliable at scale.Agent architecture that holds. What makes an agent coherently itself? When do file-based agent systems break down and what replaces them? How does constraint-based coordination (borrowed from holocracy) solve the autonomy-coherence problem that has stumped AI researchers for decades?Claude Code, for real. A complete treatment of Claude Code's CLAUDE.md convention, permission model, hooks, and slash commands. Plus the oh-my-claudecode ecosystem: 15+ specialized agents, workflow orchestration patterns (autopilot, ralph, ultrawork), and the skills framework for team-specific automation.The AI-native organization. What genuine AI-native teams look like beneath the marketing. How to hire, structure, and lead them. What language-oriented programming and constrained natural language mean for the future of the human-code relationship.Who it's forEngineers who are past the "should I use AI?" question and into the "how do I use it without losing my engineering integrity?" question.Senior engineers. Engineering managers. Technical leaders. People who have noticed that the more they delegate to AI, the less certain they feel — and who want to understand why.From the AuthorI've been building production systems with AI agents for years. Not demos — systems that had to work reliably across months, maintain themselves as requirements changed, and produce outputs that engineers could understand and defend.That experience has made me skeptical in both directions.Skeptical of the "AI will do everything" vision — because I've watched too many AI-generated codebases collapse under the weight of accumulated misunderstanding.Equally skeptical of the "nothing fundamentally changed" position — because the engineers who treat AI coding tools as just faster autocomplete are making a category error they'll pay for in months of maintenance debt.Something genuinely new is happening. This book is my attempt to think about it clearly.

  9. Hermes Agent: The Self-Evolving AI Workforce
    No Description Available
  10. Il senior amplificato
    Il senior amplificato
    All'agente il completamento, al senior il giudizio.
    Luca Milan

    Il giudizio non si delega. Il perimetro entro cui l'agente si muove, la verifica che deve passare, la condizione che lo ferma: quelli sì. Come un Senior trasforma vent'anni di mestiere nei vincoli che governano un agente, e come decisioni, criteri e lezioni restano quando la sessione finisce: è l'amplificazione del titolo.

  11. OpenClaw and Hermes for Agentic AI

    What if agentic AI was less about hype and more about work you can actually inspect?OpenClaw and Hermes for Agentic AI is a practical field guide to building with local agents, memory, tools, sessions, cron jobs, and ACP bridges. It shows how to turn fuzzy ideas into reliable workflows with clear boundaries, real artifacts, and human review where it matters most.If you want a grounded look at how agent systems really operate, this book starts there.

  12. Pair Programming with Modern LLMs and Agents
    Pair Programming with Modern LLMs and Agents
    How AI tools like Cursor and Claude Code Radically Transform Software Development
    Michael D. Callaghan

    AI doesn’t fail loudly. It generates code that looks correct and compiles anyway. This book shows you how to make AI dependable by building the context and guardrails that keep your team shipping instead of debugging.

  13. Naciro: Der neue Code globaler Intelligenz
    Naciro: Der neue Code globaler Intelligenz
    Warum traditionelle Geopolitik versagt und wie Algorithmen die Welt von morgen messen.
    Sven Neawolf (Schmidt)

    Geopolitik ist zu langsam. Entdecken Sie, wie die Naciro Engine KI nutzt, um den Puls der Nationen in Echtzeit zu messen – mit einer 15-minütigen Rekalibrierung von globaler Wahrheit und Macht. Check the live data on https://nationfiles.com

  14. Naciro: The New Code of Global Intelligence
    Naciro: The New Code of Global Intelligence
    Why traditional geopolitics fails and how algorithms measure the world of tomorrow.
    Sven Neawolf (Schmidt)

    Geopolitics is too late. Discover how the Naciro Engine uses AI to measure the pulse of nations in real-time, providing a 15-minute recalibration of global truth and power. Check the live data on https://nationfiles.com

  15. Algorithmic Geopolitics: Methodology and Application Monograph
    Algorithmic Geopolitics: Methodology and Application Monograph
    A Comprehensive Research Summary on AI-Driven Real-Time Stability Indexing.
    Sven Neawolf (Schmidt)

    A concentrated scientific overview of the NationFiles framework. This monograph details the methodology and application of AI-driven real-time stability indexing for research and peer review. Check the live data on https://nationfiles.com