{"data":{"id":515,"title":"Inteligencia Artificial","edition_statement":null,"volume":null,"copyright_year":2014,"isbn10":null,"isbn13":null,"license":"Attribution-ShareAlike","language":"spa","accessibility_statement":null,"accessibility_features":null,"description":"Este libro es una introducción al area de la Inteligencia Artificial y presenta algunas de las aplicaciones que puede tener en la vida real en diversos campos de aplicación, El libro esta compuesto de ocho capítulos los cuales abarcan los antededentes, algunos conceptos importantes para la resolución de problemas como es la representación de conocimiento, el planteamiento de los problemas. Asimismo se menciona la teoría de agentes por un lado y por otro lo que es el aprendizaje computacional. Otra area que se aborta es la computación evolutivo y los algoritmos bioinspirados para la resolución de problemas, dandole enfasis a los problemas de optimizacion. Por ultimo se menciona una nueva tendencia en el area de las ciencias computacionales como es el uso de las GPUs para trabajar de una manera mas rapida al realizar el procesamiento en paralelo.","contributors":[{"id":4371,"contribution":"Author","primary":true,"corporate":false,"title":null,"first_name":"Julio","middle_name":null,"last_name":"Ponce","location":"Universidad Autonoma de Aguascalientes","background_text":""},{"id":4372,"contribution":"Author","primary":false,"corporate":false,"title":null,"first_name":"Aurora","middle_name":"Torres","last_name":"Soto","location":null,"background_text":""},{"id":4373,"contribution":"Author","primary":false,"corporate":false,"title":null,"first_name":"Fátima","middle_name":"Sayuri","last_name":"Quezada","location":null,"background_text":""}],"subjects":[{"id":3,"name":"Computer Science","parent_subject_id":null,"call_number":"QA76","visible_textbooks_count":137,"url":"https://open.umn.edu/opentextbooks/subjects/computer-science-information-systems"}],"publishers":[{"id":563,"url":"http://www.asociacionlatin.org/index.php/es/biblioteca","year":null,"created_at":"2018-09-07T12:22:40.000-05:00","updated_at":"2018-09-07T12:22:40.000-05:00","name":"LATIn Project"}],"formats":[{"id":970,"type":"PDF","url":"https://mountainscholar.org/items/d4d75261-ffd3-459e-bb92-7e1cac8e3d88","price":{"cents":0,"currency_iso":"USD"},"isbn":null}],"rating":"3.5","textbook_reviews_count":1,"reviews":[{"id":4325,"first_name":"Diana","last_name":"Diaz Herrera","position":"Clinical Assistant Professor","institution_name":"University of Illinois at Chicago","comprehensiveness_rating":3,"comprehensiveness_review":"Considering only the title, I was expecting the book to provide an in-depth introduction to artificial intelligence covering classic topics such as search algorithms (BFS, DFS, A*),  constraint satisfaction problem (CSP),  planning, logic, basic probability theory, Bayesian networks, decision tree.  Contrary, the book provides a survey on multiple topics that a graduate student covers in an Artificial Intelligence program, providing a brief introduction to entire courses such as Multi-Agent System, Knowledge Representation and Reasoning, Machine Learning, Optimization, Swarm Intelligence which is an overly ambitious goal, reflected in the relatively low quality of the content (with some exceptions).","accuracy_rating":2,"accuracy_review":"The content is not accurate, and it contains errors.\r\n\r\nLocation of the error: page 59\r\nThe \"(b) Control one-pass\" figure is incorrect. There should be only one set of arrows going up (from perception input to action output), or both sets of arrows should point upwards. \r\n\r\nLocation of the error: page 81, subchapter 5.2.2.\r\nIn the chapter \"Introduccion al Aprendizaje,\" the authors briefly introduce linear regression. The solution for the parameters beta claimed to be: beta = (X X^T)^(1) X^T y. Instead, it should be: beta = (X X^T)^(-1) X^T y. Most probably, this was just a typo. \r\n\r\nLocation of the error: page 82, subchapter 5.2.3.\r\nIn the same chapter, \"Introduccion al Aprendizaje,\" the authors introduce linear classification.  The authors define the hyperplane y(x) = beta0 + beta1 * x1 + beta2 * x2 and then claim that the classification criterion is given by \r\nc(x) = 0 if x \u003c 0.5\r\nc(x) = 1 if x \u003e= 0.5.\r\nThis affirmation is incorrect. First, the classification criterion should be based on y(x) and not on x. Second, by the definition of y, the comparison against 0.5 does not make sense. By the definition of y, the value should be compared against 0 and NOT 0.5. The comparison should have been performed against 0.5 if the sigmoid function would have been applied, following the definition: y = sigmoid(beta0 + beta1 * x1 + beta2 * x2), since sigmoid(0) = 0.5\r\n\r\n\r\nLocation of the error: (page 92, subchapter 6.4), (page 106, subchapter 7.1.4).\r\nThe authors confuse the notion of convex sets with convex functions. The authors introduce the notion of the convex set but provide the mathematical definition of the convex function.\r\n\r\nLocation of the error: page 93, subchapter  6.5.1.\r\nThe title of the subsection is called Method Simplex, which is an algorithm for solving linear programs. The subsection only introduces the definition of a linear program and does not introduce the algorithm itself. The title should be modified.\r\n\r\n\r\nHill Climbing (page 98 / 6.6.4)\r\nIn the beginning, the objective is to minimize the function, although the update maximizes it.","relevance_rating":3,"relevance_review":"The book covers relatively older material, but I consider it relevant for an artificial intelligence specialist. The book offers a survey of some of the courses included in an artificial intelligence program such as Multi-Agent System, Knowledge Representation and Reasoning, Machine Learning, Optimization, and Swarm Intelligence, which are still active research areas. The authors did not include more recent developments such as (deep) neural networks, (deep) reinforcement learning, (deep) unsupervised learning in which a reader might be more interested in. Nevertheless, the content is relevant, and the areas covered can serve as a strong foundation for modern research areas. I consider that those updates can be easily introduced since the chapters are relatively independent of each other.","clarity_rating":4,"clarity_review":"The majority of the time, the text is written in accessible prose, and it provides adequate context for technical terminology used with a few exceptions. There are a few terms that translated in Spanish but abbreviated in English without specifying the English translation(e.g., cuadrados de los errores(RSS) - page 81, Los k vecinos más cercanos (kNN) - page 83)","consistency_rating":5,"consistency_review":"The text is overall internally consistent in terms of terminology. Although the majority of the chapters are independent, the overlapping examples use the same jargon.","modularity_rating":5,"modularity_review":"Each chapter of the book covers relatively independent topics from artificial intelligence and is divided into subchapters that expose a particular idea, making it easy to reorganize and realign with various subunits of the course without much disruption to the reader.","organization_rating":4,"organization_review":"The book offers a survey of multiple courses covered in an artificial intelligence program. Some of the chapters' content is relatively independent of the others, meaning that the order in which they are introduced is not very impactful with a few exceptions. The book has a dedicated chapter for each of the following topics: \"5-Introduccion al Aprendizaje\", \"6-Optimizacion y Heurísticas\",  \"7-Algoritmos Evolutivos\" introduced in this specific order. I consider that chapter 6 should be introduced before chapters 5 and 7 since the later ones are using some optimization techniques. Nevertheless, this would require some adjustments to the optimization chapter to relate it better to the other two previously mentioned.","interface_rating":1,"interface_review":"The book has significant interface issues. The content seems to be a collection of individual work of multiple authors negligently merged. There is no standardized format across the chapters, which results in an unappealing aspect of the book. \r\n\r\nChapter \"1 - Introducción y Antecedentes de la Inteligencia\r\nArtificial\" \r\nIt contains blurry images (pages 18, 22, 25) and has a poorly managed use of white space, consistent across the entire book.\r\n\r\nChapter \"2 - Planteamiento del Problema\"\r\nContains closely related images of different resolutions (page 36).\r\n\r\nChapter \"3 - Representación del Conocimiento\" \r\nA blurry figure of a table (page 42) \r\nThe figures have a different resolution (page 44). \r\nThere is no consistency between the upper and lower case for the truth tables on page 46.\r\nIt contains a low resolution of a screen capture of Protege (page 48) and a typo (Ptotege, which should be Protege).\r\n\r\nChapter \"4 - Agentes Inteligentes\" contains unindexed figures accross the entire chapter. (page 54, 59, 61, 62, 65, 69, 75).\r\nIt contains an example of code not properly formated (page 64).\r\nIt contains low-resolution image (page 65).\r\nFormatting errors (extra spaces) for the code on page 68.\r\nDifficult to read code on page 75.\r\n\r\n\r\nChapter \"5 - Introduccion al Aprendizaje\"\r\nInconsistency in using sub/super - scripts (page 80, chapter 5.2.1)\r\ne.g.: X = (X1, X2, ..., Xp) not using subscript. Two rows below for the definition of Y it is using subscripts.\r\n\r\nChapter \"6 - Optimizacion y Heurísticas\". This chapter has major formatting problems. The content is almost unreadable. \r\nNot using subscripts: f1, f2, ... fn  \t\t(page 87)\r\nNot using subscripts: x = {x1, ...., xn}\t(page 87)\r\nFormatting errors: in[U+FB02]uyen, [U+FB02]otante (page 87, 88)\r\nX^(*), X* -\u003e not using superscipts sometimes / inconsistency (page 88)\r\nf : X 7→ R (page 89, 90 / 6.2)\r\nx^l -\u003e confusing notation for local maxium (page 89 / 6.2)\r\nx1, x2 -\u003e not using subscripts (page 89 / 6.2)\r\nRn -\u003e not using superscirpts (page 89 / 6.2)\r\nx^(-)l -\u003e confusing notatiof for local minimum (page 89 / 6.2)\r\nMissing symbols in the definition of local maximu/minimum. The epsilon symbol is missing when defining the epsilon ball (page 89 / 6.2)\r\nx*l -\u003e confusing/hard to read notation for local optimum (page 89 / 6.2)\r\n^x -\u003e confusing/hard to read notation for global maximum (page 90 / 6.2)\r\nMissing symbol for global minimum (page 90 / 6.2)\r\nNot using subscripts for the constraints and the covariates/featurs/coordinates) (page 91)\r\nHard to read text because sub/super - scripts are not used (page 92 / 6.4)\r\nTextlabel for figure 6.2, and the figure itself should be re-written. In the textlabel, 6.2(b) is missing. There is no clear spearation between the convex and non-convex sets (they should be clearly marked in the figure). (page 92 / 6.4)\r\nParagraph in the bottom page 92/ 6.4 is fragmented.\r\nMissing footnote (unimodal1)(pag 93 / 6.5)\r\nInconsistency in writing for the definition of the linear program. Alternating between using sub/super-scripts and not using them. Hard to read. Lots of blank unaesthetic space. Missing definition of r(X) (page 93 / 6.5.1)\r\nThe pseudocode is impossible to read. (page 94 - 95 / 6.5.2 - 6.5.3)\r\nSimulated Annealing (page 97 / 6.6.3) Hard to read pseudocode further details should be provided regarding the notation used in the pseudocode (e.g., P, E, T)\r\nHill Climbing (page 98 / 6.6.4) - the pseudocode is easier to read than the others. Although I would recommend reediting (using sub/super-scripts, symbols). A the beginning the objective is to minimize the function, although the update maximizes it.\r\n\r\n\r\nChapter \"7 - Algoritmos Evolutivos\"\r\nSubsection 7.1 covers the exact material presented in section \"Optimizacion y Heurísticas\"(6) only with better editing. The mathematical errors are still present (e.g., convex set vs. convex function). All Pseudocodes should be broken in multiple lines.\r\nPseudocode should be broken in multiple lines (page 114 / 7.2.3)\r\nPseudocode should be broken in multiple lines (page 116 / 7.2.3)\r\nHard to read pseudocode (page 119/7.3)\r\ninconsistency displaying the pseudocode with the previous ones (page 156)\r\n\r\n\r\nChapter \"8 - Algoritmos Bioinspirados\"\r\nHard to read pseudocode (page 173-174/ 8.2.1). Inconsistent formatting of the pseudocode across the book\r\nMissing symbol description for the computation of the probability of selecting a node and updating the feromone level until late (the running example).\r\nMissing table labels for the cost of the edge, feromone level (page 176/ 8.2.1)\r\nHard to read pseudocode (page 180-183/ 8.2.2). Inconsistent formatting of the pseudocode across the book. Can be simplified and easy to understand if mathematical symbols were used\r\n\r\nChapter \"9 - Algoritmos en Paralelo mediante Uso de GPUs\"\r\nEditing problems - hard to read pseudocode (page 203) and inconsistent formatting across the book","grammatical_rating":5,"grammatical_review":"The text does not contain grammatical errors.","cultural_rating":5,"cultural_review":"The text is not culturally offensive in any way. All the examples used are purely technical and representative for the exposed concepts without referencing any race, ethnicities, and background.","overall_rating":7,"overall_review":"This book represents a survey of some of the courses covered in an artificial intelligence program such as Multi-Agent System, Knowledge Representation and Reasoning, Machine Learning, Optimization, and Swarm Intelligence. Most of the material is superficially covered, and some of the content is not accurate and lacks a clear explanation. The book has significant formatting problems regarding the pseudocode, figure numbering usage of space, and is not consistent across the chapters. The content seems to be a collection of individual work of multiple authors negligently merged. Although I would not recommend this book as reference material for any course, I consider that it can serve as a good survey for the classical methods in artificial intelligence if the errors are fixed, and some materials are reconsidered.","created_at":"2020-08-16T22:13:46.000-05:00","updated_at":"2020-08-16T22:13:46.000-05:00"}],"url":"https://open.umn.edu/opentextbooks/textbooks/inteligencia-artificial","updated_at":"2026-06-15T09:21:17.000-05:00"}}
