Universal Value Function Approximators

Total Page:16

File Type:pdf, Size:1020Kb

Universal Value Function Approximators Universal Value Function Approximators Tom Schaul [email protected] Dan Horgan [email protected] Karol Gregor [email protected] David Silver [email protected] Google DeepMind, 5 New Street Square, EC4A 3TW London Abstract how to evaluate or control a specific aspect of the environ- Value functions are a core component of rein- ment (e.g. progress toward a waypoint). A collection of forcement learning systems. The main idea is general value functions provides a powerful form of knowl- to to construct a single function approximator edge representation that can be utilised in several ways. For V (s; θ) that estimates the long-term reward from example, the Horde architecture (Sutton et al., 2011) con- any state s, using parameters θ. In this paper sists of a discrete set of value functions (‘demons’), all of we introduce universal value function approx- which may be learnt simultaneously from a single stream imators (UVFAs) V (s; g; θ) that generalise not of experience, by bootstrapping off-policy from successive just over states s but also over goals g. We de- value estimates (Modayil et al., 2014). Each value function velop an efficient technique for supervised learn- may also be used to generate a policy or option, for example ing of UVFAs, by factoring observed values into by acting greedily with respect to the values, and terminat- separate embedding vectors for state and goal, ing at goal states. Such a collection of options can be used and then learning a mapping from s and g to to provide a temporally abstract action-space for learning these factored embedding vectors. We show how or planning (Sutton et al., 1999). Finally, a collection of this technique may be incorporated into a re- value functions can be used as a predictive representation inforcement learning algorithm that updates the of state, where the predicted values themselves are used as UVFA solely from observed rewards. Finally, we a feature vector (Sutton & Tanner, 2005; Schaul & Ring, demonstrate that a UVFA can successfully gener- 2013). alise to previously unseen goals. In large problems, the value function is typically repre- sented by a function approximator V (s; θ), such as a linear 1. Introduction combination of features or a neural network with param- Value functions are perhaps the most central idea in rein- eters θ. The function approximator exploits the structure forcement learning (Sutton & Barto, 1998). The main idea in the state space to efficiently learn the value of observed is to cache knowledge in a single function V (s) that repre- states and generalise to the value of similar, unseen states. sents the utility of any state s in achieving the agent’s over- However, the goal space often contains just as much struc- all goal or reward function. Storing this knowledge enables ture as the state space (Foster & Dayan, 2002). Consider the agent to immediately assess and compare the utility of for example the case where the agent’s goal is described by states and/or actions. The value function may be efficiently a single desired state: it is clear that there is just as much learned, even from partial trajectories or under off-policy similarity between the value of nearby goals as there is be- evaluation, by bootstrapping from value estimates at a later tween the value of nearby states. Our main idea is to ex- state (Precup et al., 2001). tend the idea of value function approximation to both states s and goals g, using a universal value function approxima- However, value functions may be used to represent knowl- tor (UVFA1) V (s; g; θ). A sufficiently expressive function edge beyond the agent’s overall goal. General value func- approximator can in principle identify and exploit structure tions V (s) (Sutton et al., 2011) represent the utility of any g across both s and g. By universal, we mean that the value state s in achieving a given goal g (e.g. a waypoint), repre- function can generalise to any goal g in a set of possible sented by a pseudo-reward function that takes the place of goals: for example a discrete set of goal states;G their power the real rewards in the problem. Each such value function set; a set of continuous goal regions; or a vector represen- represents a chunk of knowledge about the environment: tation of arbitrary pseudo-reward functions. Proceedings of the 32 nd International Conference on Machine This UVFA effectively represents an infinite Horde of Learning, Lille, France, 2015. JMLR: W&CP volume 37. Copy- 1 right 2015 by the author(s). Pronounce ‘YOU-fah’. Universal Value Function Approximators demons that summarizes a whole class of predictions in a V(s,g) V(s,g) single object. Any system that enumerates separate value φˆ (s) ψˆ (g) V(s,g) functions and learns each individually (like the Horde) is h hampered in its scalability, as it cannot take advantage of F φ ψ h any shared structure (unless the demons share parameters). φ ψ In contrast, UVFAs can exploit two kinds of structure be- tween goals: similarity encoded a priori in the goal rep- s g φˆ (s) ψˆ (g) resentations g, and the structure in the induced value func- s g s g tions discovered bottom-up. Also, the complexity of UVFA Figure 1. Diagram of the presented function approximation ar- learning does not depend on the number of demons but on chitectures and training setups. In blue dashed lines, we show the the inherent domain complexity. This complexity is larger learning targets for the output of each network (cloud). Left: con- than standard value function approximation, and represent- catenated architecture. Center: two-stream architecture with two ing a UVFA may require a rich function approximator such separate sub-networks φ and combined at h. Right: Decom- as a deep neural network. posed view of two-stream architecture when trained in two stages, where target embedding vectors are formed by matrix factoriza- Learning a UVFA poses special challenges. In general, the tion (right sub-diagram) and two embedding networks are trained agent will only see a small subset of possible combinations with those as multi-variate regression targets (left and center sub- of states and goals (s; g), but we would like to generalise in diagrams). several ways. Even in a supervised learning context, when the true value Vg(s) is provided, this is a challenging re- π : and each g, and under some technical reg- gression problem. We introduce a novel factorization ap- ularityS conditions, 7! A we define a general value function that proach that decomposes the regression into two stages. We represents the expected cumulative pseudo-discounted fu- view the data as a sparse table of values that contains one ture pseudo-return, i.e., row for each observed state s and one column for each ob- " 1 t # served goal g, and find a low-rank factorization of the table X Y Vg,π(s) := E Rg(st+1; at; st) γg(sk) s0 = s φ s g into state embeddings ( ) and goal embeddings ( ). We t=0 k=0 then learn non-linear mappings from states s to state em- beddings φ(s), and from goals g to goal embeddings (g), where the actions are generated according to π, as well as using standard regression techniques (e.g. gradient descent an action-value function on a neural network). In our experiments, this factorized 0 0 0 Qg,π(s; a) := Es0 [Rg(s; a; s ) + γg(s ) Vg,π(s )] approach learned UVFAs an order of magnitude faster than · ∗ naive regression. Any goal admits an optimal policy πg (s) := Finally, we return to reinforcement learning, and provide arg maxa Qπ;g(s; a), and a corresponding optimal 2 ∗ ∗ value function V := Vg,π∗ . Similarly, Q := Qg,π∗ . two algorithms for learning UVFAs directly from rewards. g g g g The first algorithm maintains a finite Horde of general 3. Universal Value Function Approximators value functions Vg(s), and uses these values to seed the ta- ble and hence learn a UVFA V (s; g; θ) that generalizes to Our main idea is to represent a large set of optimal value previously unseen goals. The second algorithm bootstraps functions by a single, unified function approximator that directly from the value of the UVFA at successor states. On generalises over both states and goals. Specifically, we ∗ the Atari game of Ms Pacman, we then demonstrate that consider function approximators V (s; g; θ) Vg (s) or ∗ ≈ d UVFAs can scale to larger visual input spaces and different Q(s; a; g; θ) Qg(s; a), parameterized by θ R , that types of goals, and show they generalize across policies for approximate the≈ optimal value function both over2 a poten- obtaining possible pellets. tially large state space s , and also a potentially large goal space g . 2 S 2 G 2. Background Figure1 schematically depicts possible function approxi- Consider a Markov Decision Process defined by a set of mators: the most direct approach, F : R simply S × G 7! states s , a set of actions a , and transition prob- concatenates state and goal together as a joint input. The 2 S 0 2 A0 abilities (s; a; s ) := (st+1 = s st = s; at = a). mapping from concatenated input to regression target can For anyT goal g , weP define a pseudo-rewardj func- then be dealt with a non-linear function approximator such 0 2 G tion Rg(s; a; s ) and a pseudo-discount function γg(s). as a multi-layer perceptron (MLP). The pseudo-discount γg takes the double role of state- A two-stream architecture, on the other hand, assumes that dependent discounting, and of soft termination, in the sense the problem has a factorized structure and computes its out- that γ(s) = 0 if and only if s is a terminal state according put from two components φ : Rn and : Rn to goal g (e.g.
Recommended publications
  • The "Urgrundrecht'?: Human Dignity, Moral
    IS THE RIGHT TO LIFE OR IS ANOTHER RIGHT THE MOST FUNDAMENTAL HUMAN RIGHT – THE “URGRUNDRECHT”?: HUMAN DIGNITY, MORAL OBLIGATIONS, NATURAL RIGHTS, AND POSITIVE LAW Josef Seifert Abstract: Moral obligations and basic human rights must be distinguished from each other and from positive rights and laws. Ethics and basic human rights rest on human dignity. The right to life is shown to be a natural and “absolute right,” but it is also in a certain sense the absolutely foundational concrete human right (Urgrundrecht) grounded in ontological dignity: all other human rights presuppose necessarily human life while human life has no more fundamental foundation in other goods but constitutes their ground. Other ideas about the most foundational right (such as the habeas corpus) are less foundational for the reason that they are more insignificant, can be suspended, are not immune to emergency states, such that their violation is not under all circumstances a grave violation. Moreover, they presuppose the right to life. These rights also refer only to a small sector of humanity, not applying to babies or comatose patients. The right to life is held by all human beings without exception, it is unrenounceable. For these and many other reasons the right to life is in an important sense the most fundamental right, in accordance with the first point of view for determining which is the most basic human right: Which right refers to the most basic good that is the condition of all others? However, there are two other points of view to determine the most basic right: The second point of view is expressed in the question: “Which human right is the most universal and comprehensive one and includes all others?” This is not true of the right to life which does not say anything about any other right.
    [Show full text]
  • Chastity As a Virtue
    religions Article Chastity as a Virtue Hwa Yeong Wang College of Confucian Studies and Eastern Philosophy, Sungkyunkwan University, 25-2, Seonggyungwan-ro, Jongno-gu, Seoul 03063, Korea; [email protected] Received: 26 April 2020; Accepted: 18 May 2020; Published: 21 May 2020 Abstract: This paper analyzes two philosophers’ views on chastity as a virtue, comparing Song Siyeol, a Korean neo-Confucian philosopher of the east, and David Hume, a Scottish philosopher. Despite the importance in and impact on women’s lives, chastity has been understated in religio-philosophical fields. The two philosophers’ understandings and arguments differ in significant ways and yet share important common aspects. Analyzing the views of Song and Hume helps us better understand and approach the issue of women’s chastity, not only as a historical phenomenon but also in the contemporary world, more fully and deeply. The analysis will provide an alternative way to re-appropriate the concept of chastity as a virtue. Keywords: chastity; Song Siyeol; David Hume; virtue; gender; Korean neo-Confucianism 1. Introduction Chastity, understood as a commitment or disposition to remain innocent of extramarital sexual intercourse, has been considered a virtue among human beings for a long time, not only in traditional societies but in contemporary societies as well.1 The value of chastity has been recognized since very early times and regardless of geographical location; it was an important virtue in ancient Greece and China, for example. This duty of chastity remains widespread in contemporary societies, which, in general, take monogamy as the moral standard regarding intimate human relationships. In a number of countries, the violation of chastity is recognized as unlawful and has consequences within the penal system.2 The virtue of chastity, however, has been discussed one-sidedly and almost always as “female” chastity.
    [Show full text]
  • Outstanding Universal Value Standards for Natural World Heritage
    Outstanding Universal Value Standards for Natural World Heritage A Compendium on Standards for inscriptions of Natural Properties on the World Heritage List IUCN Protected Areas Programme - World Heritage Studies About IUCN IUCN, International Union for Conservation of Nature, helps the world fi nd pragmatic solutions to our most pressing environment and development challenges. IUCN works on biodiversity, climate change, energy, human livelihoods and greening the world economy by supporting scientifi c research, managing fi eld projects all over the world, and bringing governments, NGOs, the UN and companies together to develop policy, laws and best practice. IUCN is the world’s oldest and largest global environmental organization, with more than 1,000 government and NGO members and almost 11,000 volunteer experts in some 160 countries. IUCN’s work is supported by over 1,000 staff in 60 offi ces and hundreds of partners in public, NGO and private sectors around the world. www.iucn.org This study is produced as part of IUCN’s role as advisory body to the UNESCO World Heritage Convention on natural heritage. IUCN Programme on Protected Areas Rue Mauverney 28 CH-1196 Gland Switzerland www.iucn.org/wcpa The designation of geographical entities in this book, and the presentation of the material, do not imply the expression of any opinion whatsoever on the part of IUCN concerning the legal status of any country, territory, or area, or of its authorities, or concerning the delimitation of its frontiers or boundaries. The views expressed in this publication do not necessarily refl ect those of IUCN. Published by: IUCN, Gland, Switzerland Copyright: © 2008 International Union for Conservation of Nature and Natural Resources Reproduction of this publication for educational or other non-commercial purposes is authorized without prior written permission from the copyright holder provided the source is fully acknowledged.
    [Show full text]
  • ATINER's Conference Paper Series PHI2012-0180 Kant and The
    ATINER CONFERENCE PAPER SERIES No: PHI2012-0180 Athens Institute for Education and Research ATINER ATINER's Conference Paper Series PHI2012-0180 Kant and the Categorical Imperative William O’Meara Professor of Philosophy James Madison University USA 1 ATINER CONFERENCE PAPER SERIES No: PHI2012-0180 Athens Institute for Education and Research 8 Valaoritou Street, Kolonaki, 10671 Athens, Greece Tel: + 30 210 3634210 Fax: + 30 210 3634209 Email: [email protected] URL: www.atiner.gr URL Conference Papers Series: www.atiner.gr/papers.htm Printed in Athens, Greece by the Athens Institute for Education and Research. All rights reserved. Reproduction is allowed for non-commercial purposes if the source is fully acknowledged. ISSN 2241-2891 13/09/2012 2 ATINER CONFERENCE PAPER SERIES No: PHI2012-0180 An Introduction to ATINER's Conference Paper Series ATINER started to publish this conference papers series in 2012. It includes only the papers submitted for publication after they were presented at one of the conferences organized by our Institute every year. The papers published in the series have not been refereed and are published as they were submitted by the author. The series serves two purposes. First, we want to disseminate the information as fast as possible. Second, by doing so, the authors can receive comments useful to revise their papers before they are considered for publication in one of ATINER's books, following our standard procedures of a blind review. Dr. Gregory T. Papanikos President Athens Institute for Education and Research 3 ATINER CONFERENCE PAPER SERIES No: PHI2012-0180 This paper should be cited as follows: O’Meara, W.
    [Show full text]
  • Why Deontologists Should Reject Agent-Relative Value and Embrace Agent-Relative Accountability
    ZEMO (2020) 3:315–335 https://doi.org/10.1007/s42048-020-00084-2 SUBMITTED PAPER Why deontologists should reject agent-relative value and embrace agent-relative accountability Rudolf Schuessler Published online: 28 October 2020 © The Author(s) 2020 Abstract This paper claims that deontological and consequentialist ethics are best distinguished with reference to different assumptions concerning moral account- ability and accounting. Deontological ethics can thereby be defended against the accusation of inordinate concern with the moral purity of agents. Moreover, deon- tological ethics can and should reject being based on the concept of agent-relative value. Even under the assumption that deontological ethics can be consequential- ized, agent-relative value need not play a fundamental role. This is not the same as denying agent-relativity a key role in deontological ethics. Deontological moral accounting of universal value should be regarded as agent-relative, whereas conse- quentialist accounting assumes a shared moral account of all moral agents. Keywords Deontology · Consequentialization · Agent-relativity · Agent-relative value · Accountability In recent decades, it has become commonplace to characterize deontological ethi- cal theories as agent-relative (or agent-centered).1 But from whence does the agent- relativity of deontology2 or its moral reasons arise? The present paper claims that 1 See Ridge (2017). On the difficult business of delineating what makes ethics deontological, see Alexan- der and Moore (2016), Gaus (2001), McNaughton and Rawling (2007). For helpful comments and suggestions, I am grateful to Vuko Andric,´ Jonas Franzen, and the participants of the conference “Spheres of Morality” (Bremen, August 2018). Many thanks also to two anonymous referees who pressed me on important questions.
    [Show full text]
  • Delahaye Vidal
    UNIVERSAL ETHICS: ORGANIZED COMPLEXITY AS AN INTRINSIC VALUE Clément Vidal Jean-Paul Delahaye Center Leo Apostel & Centre de Recherche en Informatique, Evolution Complexity and Cognition, Signal et Automatique de Lille (CRISTAL) Vrije Universiteit Brussel, Université de Lille 1 [email protected] [email protected] ABSTRACT: How can we think about a universal ethics that could be adopted by any intelligent being, including the rising population of cyborgs, intelligent machines, intelligent algorithms or even potential extraterrestrial life? We generally give value to complex structures, to objects resulting from a long work, to systems with many elements and with many links finely adjusted. These include living beings, books, works of art or scientific theories. Intuitively, we want to keep, multiply, and share such structures, as well as prevent their destruction. Such objects have value not because more information (in bits) would simply mean more value. Instead, they have value because they require a long computational history, numerous interactions for their construction that we can assimilate to a computation, and they display what we call organized complexity. To propose the foundations of a universal ethics based on the intrinsic value of organized complexity, we first discuss conceptions of complexity, and argue that Charles Bennett’s logical depth is certainly a first approximation of what we are looking for. We then put forward three fundamental imperatives: to preserve, augment and recursively promote organized complexity. We show a broad range of applications with human, non-human and non-living examples. Finally, we discuss some specific issues of our framework such as the distribution of complexity, of managing copies and erasures, and how our universal ethics tackles classical ethical issues.
    [Show full text]
  • Kreitzer Formatted Dec 09
    © Currents: New Scholarship in the Human Services, 2006 _____________________________________________________________ Social Work Values and Ethics Issues of Universality Linda Kreitzer Introduction The question of whether the social work profession has a set of values that can be claimed by all social workers around the world has been and continues to be an important issue in a growing interdependent world. With the increase in global cooperation and collaborative projects between social work programs worldwide, the similarities and differences in social work values should be explored. Core social work values in nonwestern countries reflect societies in which the importance of community, spirituality, traditional beliefs, social justice/action and economic circumstances are emphasized. In western countries social work values are more concerned with individualism, objectivity, discrimination issues, self-realization and democracy. The purpose of this article is to examine the definition and layers of values, the emergence of social work values, the relationship between social work values and their social context and whether or not it is possible to have universal social work values. It will use the works of Canadian philosopher, Charles Taylor as well as other social work authors and writings concerning values. In particular, it will examine cross- cultural studies that have been conducted concerning western social work values and their relevance in non-western countries. Lynne Healy (2001) states, “there is considerable agreement that some level of universality exists” (p. 165), but draws attention to the difficulties in identifying values that are used and interpreted in a similar way. Codes of Ethics are discussed in relation to values and their universality with practical examples of various countries indigenizing their Code of Ethics.
    [Show full text]
  • An Overview of the Schwartz Theory of Basic Values Shalom H
    Unit 2 Theoretical and Methodological Issues Article 11 Subunit 1 Conceptual Issues in Psychology and Culture 12-1-2012 An Overview of the Schwartz Theory of Basic Values Shalom H. Schwartz The Hebrew University of Jerusalem, [email protected] Work on this article was partly supported by the HSE Basic Research Program (International Laboratory of Sociocultural Research). Recommended Citation Schwartz, S. H. (2012). An Overview of the Schwartz Theory of Basic Values. Online Readings in Psychology and Culture, 2(1). https://doi.org/10.9707/2307-0919.1116 This Online Readings in Psychology and Culture Article is brought to you for free and open access (provided uses are educational in nature)by IACCP and ScholarWorks@GVSU. Copyright © 2012 International Association for Cross-Cultural Psychology. All Rights Reserved. ISBN 978-0-9845627-0-1 An Overview of the Schwartz Theory of Basic Values Abstract This article presents an overview of the Schwartz theory of basic human values. It discusses the nature of values and spells out the features that are common to all values and what distinguishes one value from another. The theory identifies ten basic personal values that are recognized across cultures and explains where they come from. At the heart of the theory is the idea that values form a circular structure that reflects the motivations each value expresses. This circular structure, that captures the conflicts and compatibility among the ten values is apparently culturally universal. The article elucidates the psychological principles that give rise to it. Next, it presents the two major methods developed to measure the basic values, the Schwartz Value Survey and the Portrait Values Questionnaire.
    [Show full text]
  • Outstanding Universal Value
    World Heritage 32 COM Distribution Limited WHC-08/32.COM/9 Paris, 22 May 2008 Original: English/French UNITED NATIONS EDUCATIONAL, SCIENTIFIC AND CULTURAL ORGANIZATION CONVENTION CONCERNING THE PROTECTION OF THE WORLD CULTURAL AND NATURAL HERITAGE WORLD HERITAGE COMMITTEE Thirty second Session Quebec City, Canada 2 – 10 July 2008 Item 9 of the Provisional Agenda: Discussion on outstanding universal value SUMMARY This document provides an overview introduction and presents the first compendium prepared by ICOMOS and IUCN on outstanding universal value and the inscription of proposed properties by criteria on the World Heritage List as requested by Decisions 30 COM 9.6 and 31 COM 9.7, adopted by the World Heritage Committee respectively at its 30th (Vilnius, 2006) and 31st (Christchurch, 2007) sessions. Draft Decision: 32 COM 9, see Point II I. Overview introduction 1. Following a request of the World Heritage Committee at its 28th session (Suzhou, 2004) to “convene a special meeting of experts of all regions on the concept of outstanding universal value […]” (Decision 28 COM 13.1), the World Heritage Centre in cooperation with the Russian Federation organized a special meeting of experts on the concept of outstanding universal value, which took place in Kazan, Republic of Tatarstan (Russian Federation) from 6 to 9 April 2005. 2. The conclusions and the main recommendations of the expert meeting, all arising from a concern with maintaining rigor in the application of outstanding universal value, were presented to and discussed by the World Heritage Committee at its 29th session (Durban, 2005). A thorough debate took place and acknowledged that the recommendations of the meeting included useful practical measures that needed to be implemented.
    [Show full text]
  • Value-Free Analysis of Values: a Culture-Based Development Approach
    sustainability Review Value-Free Analysis of Values: A Culture-Based Development Approach Annie Tubadji Economics Department, Swansea University, Bay Campus, SA1 8EN Swansea, UK; [email protected] Received: 28 October 2020; Accepted: 11 November 2020; Published: 15 November 2020 Abstract: Recent literature in the fields of Political Economy, New Institutional Economics and New Cultural Economics has converged in the use of empirical methods, offering a series of consistent quantitative analysis of values. However, an overarching positive methodology for the value-free study of values has not yet precipitated. Building on a mixed systematic-integrative literature review of a pluralistic variety of perspectives from Adam Smith’s ‘Impartial’ Spectator to modern moral philosophy, the current study suggests the Culture-Based Development (CBD) approach for analyzing the economic impact of values on socio-economic development. The CBD approach suggests that the value-free analysis needs: (i) to use positive methods to classify a value as local or universal; (ii) to examine the existence of what is termed the Aristotelian Kuznets curve of values (i.e., to test for the presence of an inflection point in the economic impact from the particular value) and (iii) to account for Platonian cultural relativity (i.e., the cultural embeddedness expressed in the geographic nestedness of the empirical data about values). The paper details the theoretical and methodological cornerstones underpinning the proposed CBD approach for value-free analysis of values. Keywords: values; Aristotelian Kuznets Curve; Platonian cultural relativity; value-free analysis; Culture-Based Development 1. Introduction Can economics identify which local cultural attitudes are universally valuable for the economic systems? A system that depends on value judgements cannot be adequately studied without including values as a factor for the operation of the system.
    [Show full text]
  • International Differences in Ethical Standards and in the Interpretation of Legal Frameworks
    International differences in ethical standards and in the interpretation of legal frameworks SATORI Deliverable D3.2 Authors: Philip Brey (University of Twente) (lead author) Part 1: Philip Brey & Wessel Reijers (University of Twente), Sudeep Rangi & Dino Toljan (UNESCO), Johanna Romare & Göran Collste (Centre for Applied Ethics, Linköping University) Part 2: Zuzanna Warso and Marcin Sczaniecki (Helsinki Foundation for Human Rights) on the basis of contributions from Agata Gurzawska (University of Twente), Johanna Romare (Centre for Applied Ethics, Linköping University), Sudeep Rangi & Dino Toljan (UNESCO), Leyre de Sola Perea, Concepcion Martin Arribas & Laura Herrero Olivera (Instituto de Salud Carlos III), Zuzanna Warso, Marcin Sczaniecki (Helsinki Foundation for Human Rights) September 2015 Contact details for corresponding author: Prof. dr. Philip Brey, University of Twente [email protected] This deliverable and the work described in it is part of the project Stakeholders Acting Together on the Ethical Impact Assessment of Research and Innovation - SATORI - which received funding from the European Commission’s Seventh Framework Programme (FP7/2007-2013) under grant agreement n° 612231. Contents Introduction to the report ..................................................................................................................... 4 PART 1: Differences between Value systems in Europe and the world ........................................... 6 1.1 Introduction ...........................................................................................................................
    [Show full text]
  • 1 Olga Poznjakova Kant's Concept of Enlightenment: Individual And
    Poznjakova-Essay-V03ed 1 Olga Poznjakova Kant’s Concept of Enlightenment: Individual and Universal Dimensions ––––––––– In this essay I plan to outline two dimensions within Kant’s concept of the Enlightenment: the individual and the universal. First I will demonstrate a traditional interpretation of Kant’s idea of the Enlightenment based on the context of his essay ‘An Answer to the question: What is Enlightenment?’ Then I will show the importance of the Enlightenment on a specifically individual level. I will emphasize the difference between the internal and the external motivational impulse of a human being to be enlightened. I will demonstrate that the fact of an externa motivation to the Enlightenment contradicts Kant’s teaching about the universal character of human nature. After that I will underline the significance of Kant’s concept of the Enlightenment on a universal level. Giving a brief summary of Kant’s philosophy of history I will show the role of the Enlightenment in life of people on their way to the ‘perpetual peace’, a ‘world- civil society’, and a cosmopolitan world order within Kant’s philosophical system. Finally I will argue that Kant’s concept of the Enlightenment should become one of the main principles of the doctrine of international cooperation in the twenty-first century. 1. Introduction Immanuel Kant is probably the most important philosopher of the past 2,000 years. He lived near the end of the Enlightenment, a European cultural movement that spanned the Olga Poznjakova, 'Kant's Concept of Enlightenment: Individual and Universal Dimensions', in Thinking about the Enlightenment.
    [Show full text]