Metadata-Version: 1.0
Name: AirProfile
Version: 1.0.11
Summary: Automatic analysis of Airbnb host profiles.
Home-page: https://github.com/sTechLab/AirProfile
Author: Kenneth Lim
Author-email: kl545@cornell.edu
License: MIT
Description-Content-Type: UNKNOWN
Description: AirProfile
        ==========
        
        .. image:: https://badge.fury.io/py/AirProfile.svg
            :target: https://badge.fury.io/py/AirProfile
        
        A python package for automatic analysis of Airbnb host profiles.
        
        The package takes an Airbnb profile, automatically tags topics for each sentence, and predicts whether the profile will be perceived as more trustworthy compared to other profiles of similar length.
        
        Example Usage
        -------------
        LIWC2007_ is a proprietary dependency required for predicting trust. Unfortunately, we can't include it in this package for legal reasons.
        
        .. _LIWC2007: https://liwc.wpengine.com
        
        However, if you do not have LIWC, you can still perform topic classification.
        
        .. code:: python
        
          from AirProfile import AirProfile
        
          ap = AirProfile(liwc_path='../LIWC2007/liwc_2007.trie')
          # or ap = AirProfile() if you do not have LIWC.
        
          # Example Airbnb host profile.
          input = """I have spent my life in the service industry. I look forward to being your host and I look forward to meeting you."""
        
          # Segments the input at the sentence level and returns the probability that
          # each sentence is tagged with the topics described in [1]. This works with or
          # without LIWC.
          ap.predict_topics(input)
        
          >>> [
            [
              'i have spent my life in the service industry',
              {
                'relationships': 0.02,
                'workEducation': 0.99,
                'travel': 0.0,
                'originResidence': 0.07,
                'lifeMottoValues': 0.03,
                'hospitality': 0.02,
                'interestsTastes': 0.03,
                'personality': 0.02
              }
            ], [
              'i look forward to being your host and i look forward to meeting you',
              {
                'relationships': 0.0,
                'workEducation': 0.0,
                'travel': 0.02,
                'originResidence': 0.0,
                'lifeMottoValues': 0.0,
                'hospitality': 1.0,
                'interestsTastes': 0.0,
                'personality': 0.04
              }
            ]
          ]
        
          # Segments the input at the sentence level and returns the probability that
          # the profile is perceived to be more trustworthy compared to other profiles
          # of similar length. This requires LIWC and will throw an error otherwise.
          ap.predict_trust(input)
        
          >>> Prediction(prob=0.49, predict=0)
        
        
        References
        ----------
        [1] Self-disclosure and Perceived Trustworthiness of Airbnb Host Profiles. Xiao Ma, Jeff Hancock, Kenneth Lim Mingjie, and Mor Naaman. CSCW 2017. Honorable Mention for Best Paper. [PDF1_]
        
        .. _PDF1: https://s.tech.cornell.edu/assets/papers/ma2017airbnb.pdf
        
        [2] A Computational Approach to Perceived Trustworthiness of Airbnb Host Profiles. Xiao Ma, Trishala Neeraj, Mor Naamann. ICWSM 2017. Poster. [PDF2_]
        
        .. _PDF2: http://maxiao.info/assets/computational-airbnb.pdf
        
Keywords: Airbnb,self-disclosure,trustworthiness,sharing economy,social exchange
Platform: UNKNOWN
