cybernetics-library / cybersym

7 stars 0 forks source link

Choose monuments (i.e. which book topics should we use?) #17

Closed frnsys closed 6 years ago

frnsys commented 6 years ago

These are the most common tags so far:

[('Cognitive science', 32),
 ('Science', 32),
 ('Architecture', 31),
 ('Cognition', 26),
 ('Philosophy', 22),
 ('Art', 21),
 ('Cybernetics', 19),
 ('Technology', 18),
 ('Psychology', 17),
 ('Artificial intelligence', 17),
 ('Philosophy of mind', 13),
 ('Architecture and technology', 13),
 ('Evolution', 11),
 ('Communication', 11),
 ('Information', 11),
 ('Non-fiction', 11),
 ('Neuroscience', 10),
 ('Brain', 9),
 ('Architectural design', 9),
 ('Complexity (Philosophy)', 9)]

So we could do:

what do you think @dantaeyoung?

frnsys commented 6 years ago

This is what I have so far:

TOPICS = {
    'architecture': ['architecture', 'built environment',
                     'public spaces', 'offices', 'cities and towns',
                     'urban planning', 'architecture and technology',
                     'smart cities', 'urbanism', 'architectural design',
                     'modern architecture', 'architectural theory',
                     'experimental architecture', 'city planning',
                     'architecture -- human factors',
                     'architecture -- speculative',
                     'architecture and society -- congresses',
                     'city planning -- united states',
                     'modern architecture -- philosophy',
                     'space (architecture) -- philosophy', 'planning',
                     'modern movement (architecture) -- great britain'],
    'cognition': ['cognitive science', 'cognitive neuroscience',
                  'brain science', 'mind', 'neuroscience', 'memory',
                  'neurology', 'perception', 'psychology', 'brain',
                  'consciousness', 'theory of mind', 'comparative psychology',
                  'cognition', 'philosophy of mind', 'cognitive psychology',
                  'thought and thinking', 'space perception', 'brain damage',
                  'philosophy of mind--congresses', 'linguistics',
                  'human behavior', 'senses and sensation', 'mind and body',
                  'symbolism (psychology)'],
    'society': ['ideology', 'social behavior', 'game theory',
                'sociology', 'cooperation', 'altruism', 'social theory',
                'public opinion', 'justice', 'society', 'anthropology',
                'social networks', 'social sciences', 'social movements',
                'power (social sciences)', 'critical theory', 'sex role',
                'information society', 'social psychology', 'networks',
                'online social networks -- united states', 'language and languages',
                'civilization', 'social groups'],
    'media': ['media history', 'culture', 'communications',
              'media theory', 'cultural studies', 'media studies',
              'memetics', 'spectacle', 'memes', 'propaganda', 'social media',
              'mass media', 'communication', 'mass communication'],
    'art': ['art', 'conceptual art', 'psychedelic art', 'aesthetics',
            'computer art', 'electronic music', 'media art', 'dance',
            'modern art', 'art and society', 'artists\' books',
            'art and technology', 'modern art -- 21st century -- history and criticism',
            'art and globalization', 'european art--20th century',
            'music--philosophy and aesthetics', 'multimedia (art) -- exhibitions',
            'computer art -- europe -- exhibitions',
            'modern art -- 21st century -- exhibitions'],
    'economics': ['economics', 'capitalism', 'global financial crisis'],
    'politics': ['politics', 'political economy', 'radicalism',
                 'counterculture', 'utopias'],
    'systems': ['dynamic systems', 'chaos theory', 'systems',
                'systems theory', 'cybernetics', 'complexity (philosophy)',
                'mathematics', 'forecasting'],
    'war': ['technology and war', 'war (philosophy)'],
    'biology': ['genetics', 'evolution', 'biology--methodology',
                'biology', 'psychobiology', 'molecular biology',
                'sociobiology', 'drugs -- physiological effect',
                'adaptation (biology)', 'neurophysiology -- dictionaries',
                'environmental protection', 'neuropharmacology'],
    'computation': ['bitcoin', 'encryption', 'computer', 'data',
                    'computers', 'computer science', 'robotics',
                    'computation', 'artificial intelligence',
                    'computer networks', 'software', 'information',
                    'technology and civilization', 'machine learning',
                    'electronics', 'electronic data processing', 'simulation'],
    'humanities': ['philosophy', 'libraries', 'speculative fiction',
                   'fiction', 'literature', 'oral history', 'science fiction',
                   'supernatural -- fiction', 'religion', 'pedagogy'],
    'science': ['science', 'science -- philosophy'],
    'business': ['organizational behavior', 'business', 'management',
                 'complex organizations', 'leadership'],
    'design': ['human-computer interaction', 'design',
               'computer-aided design', 'user-centered design',
               'human-centered design', 'digital design',
               'engineering design', 'industrial design -- psychological aspects']
}

It feels like too many topics (and this is all up for revision!)

These are the tags that don't fall into any of these topics yet:

{'Player piano -- Construction': 1, 'Behavioral assessment': 1, 'Gait disorder': 1, 'Communication in architectural design -- New York (State) -- New York': 1, 'Time': 1, 'Science museums -- Exhibitions': 1, 'Forums (Discussion and debate) -- New York (State) -- New York': 1, 'Mathematical recreations': 1, 'Measurement': 1, 'Posture disorders': 1, 'Mathematics--Humor': 1, 'Museum techniques': 1, 'Science museums -- Management': 1, 'Gait in humans': 1, 'Posture': 1, 'Cyborgs -- History': 1, 'Mechanics': 1, 'Studio-X New York': 1, 'Architecture -- Study and teaching (Graduate) -- New York (State)-- New York': 1, 'Affect': 1, 'Time study': 1, 'Noise': 1, 'Player piano': 1, 'Mathematics--Popular works': 1, 'Human-machine systems -- History': 1}

So far 12 books are not covered by the topics as-is

dantaeyoung commented 6 years ago

Nice work @frnsys !

Topics don't necessarily correspond 1-to-1 with monuments, right? So we could have, for example:

The Monument of Neoliberal Nature as a weighted combination of :

{ 
   'business': 0.8,
   'war': 0.7,
   'computation': 0.5,
   'economics:' 0.8,
   'politics:' 0.7
}

of some sort?

So that if you select a book that corresponds to 'computation' and 'economics', perhaps there's a process where the top two relevant monuments are chosen, and the book scanner tells you:

"Ah yes. You dedicate a portion of your soul to The Monument of Neoliberal Nature and The Monument for No Longer Being Human." (a shooting star falls in the background)

frnsys commented 6 years ago

I've narrowed it down to 5 monuments:

MONUMENT_NAMES = {
    'society': 'Monument to Peace and Balance',
    'biology': 'Monument to Flourishing Fauna',
    'architecture': 'Monument to Shelter\'s Hearth',
    'economy': 'Monument to Productive Exchange',
    'technology': 'Monument to Knowledge and Computation'
}

what do you think?

image

frnsys commented 6 years ago

Composed like so:

MONUMENT_TOPICS = {
    'society': {
        'society': 0.5,
        'humanities': 0.15,
        'media': 0.15,
        'art': 0.1
    },
    'economy': {
        'economics': 0.6,
        'politics': 0.15,
        'systems': 0.1,
        'business': 0.15
    },
    'biology': {
        'biology': 0.65,
        'science': 0.2,
        'cognition': 0.05,
        'systems': 0.1
    },
    'architecture': {
        'architecture': 0.7,
        'design': 0.2,
        'art': 0.1
    },
    'technology': {
        'computation': 0.6,
        'cognition': 0.4
    }
}