paint-brush
How Founders, Investors, and Investment Rounds Inform Startup Success Predictionsby@exitstrategy

How Founders, Investors, and Investment Rounds Inform Startup Success Predictions

by ExitStrategyAugust 7th, 2024
Read on Terminal Reader
Read this story w/o Javascript
tldt arrow

Too Long; Didn't Read

The feature space for the startup success model includes data on founders, investors, and investment rounds, with categorical and numerical features aggregated and encoded. Social media links and investment history are considered, with NMF used to process text tags. All features are carefully engineered to avoid information leakage and ensure accuracy in predictions.
featured image - How Founders, Investors, and Investment Rounds Inform Startup Success Predictions
ExitStrategy HackerNoon profile picture

Authors:

(1) Mark Potanin, a Corresponding ([email protected]);

(2) Andrey Chertok, ([email protected]);

(3) Konstantin Zorin, ([email protected]);

(4) Cyril Shtabtsovsky, ([email protected]).

Abstract and 1. Introduction

2 Related works

3 Dataset Overview, Preprocessing, and Features

3.1 Successful Companies Dataset and 3.2 Unsuccessful Companies Dataset

3.3 Features

4 Model Training, Evaluation, and Portfolio Simulation and 4.1 Backtest

4.2 Backtest settings

4.3 Results

4.4 Capital Growth

5 Other approaches

5.1 Investors ranking model

5.2 Founders ranking model and 5.3 Unicorn recommendation model

6 Conclusion

7 Further Research, References and Appendix

3.3 Features

The feature space of the model includes:


Founders Features Categorical: country_code, region, city, institution_name, degree_type, subject. Numerical: twitter_url, linkedin_url, facebook_url, gender, is_completed, num_degrees, num_last_startups, num_last_jobs, number_of_founders.


We incorporated three binary flags into our model to represent the presence of founders’ social media links. Since a company can have multiple founders, it was essential to aggregate information on all the founders for each company. For categorical variables, the most frequent value from the list was used, and the median for numerical variables.


Investors Features Categorical: type, country_code, region, city, investor_types. Numerical: investment_count, total_funding_usd, twitter_url, linkedin_url, facebook_url, raised_amount_usd, investor_count, num_full.


Figure 1: Model architecture


Functions that generate features based on the founders’ and investors’ data incorporate a date parameter as input. This approach is necessary to the model from using future information. For example, details about the number of companies founded or the founder’s previous job experience that took place after the date of interest should not be incorporated into the feature set to avoid information leakage from the future.


Rounds features Categorical: country_code, investment_type, region, city, investor_name. Numerical: sum, mean, max of raised_amount_usd, investor_count, post_money_valuation_usd.


It is crucial to emphasize that all features related to a company’s investment rounds are gathered at a time point prior to the beginning of the time window of interest.


Categories There are two additional types of text data - text tags representing the companies’ field of work. For example:


• category_list: Internet, Social Media, Social Network


• category_groups_list: Data and Analytics, Information Technology, Software


The set of tags used in our study consists of a list of keywords separated by commas. We used the NMF (Non-Negative Matrix Factorization) matrix factorization method to generate features from these tags. This process involves creating a binary table with companies represented as rows and tags as columns, where each value in the table indicates whether a given company is associated with a specific tag (1) or not (0). The trained matrix factorization then converts each binary vector into a smaller dimension vector (in our case, 30).


All categorical features are encoded using the OrdinalEncoder, while numerical features are normalized.


This paper is available on arxiv under CC 4.0 license.