# Machine intelligence for deal sourcing and portfolio strategy
A building trades hands months before it ever hits a broker's inbox. The signals are already public: a permit filing for a roof replacement, a zoning variance request, a spike in local job postings, a spike in nearby foot traffic. The largest institutional investors have spent years building systems that read those signals at scale and flag the property while everyone else is still waiting for the listing.
That is the core shift. Deal sourcing used to be a relationship game run on phone calls. It is now increasingly a data game, and the relationships still matter, but they are targeted by machines.
Strip away the hype. A modern sourcing pipelinepipelineAll active sales opportunities across the stages of the sales process, together with their combined potential value and probability of closing.Voir la définition complète → does three things:
1. Ingests signals from many sources (permits, deeds, tax records, geospatial data, listings).
2. Scores each property against a defined investment thesis (your buy criteria).
3. Ranks and routes the best opportunities to a human who makes the call.
None of this replaces judgment. It replaces the manual grind of finding things worth judging.
Some of the highest-value inputs are boring and public:
The edge is not any single dataset. It is combining several so that a weak signal in isolation becomes a strong signal together.
Think of it as a funnelfunnelThe customer journey from awareness to purchase, typically Awareness, Interest, Consideration, Decision, Action, with prospects narrowing at each stage.Voir la définition complète →. You start with millions of parcels and end with a short list a human reviews on Monday morning.
Stage 1: Universe. Define the geography and asset type. Example: garden-style multifamily (low-rise apartment complexes) in three Sun Belt metros.
Stage 2: Enrichment. Attach data to each property: ownership, last sale date, permit history, distance to transit, local rent trends.
Stage 3: Scoring. Rank each property against your thesis. This is where machine learning helps but is not required. A transparent rules-based score often beats a black box for a first version.
Stage 4: Routing. Push high scores into a CRMCRMCustomer Relationship Management: software and strategy to manage and analyse customer interactions throughout their lifecycle.Voir la définition complète → or a weekly digest for the acquisitions team.
Here is a simplified version of the scoring logic. This is illustrative, not a real model:
def score_property(p, thesis):
score = 0
# Owner held long enough to have equity and possible fatigue
if p["years_owned"] >= 7:
score += 25
# Recent maintenance permit: owner may prep to sell
if p["permit_last_12mo"]:
score += 15
# Rent growth in submarket vs metro
if p["submarket_rent_growth"] > thesis["target_rent_growth"]:
score += 30
# Below-median price per unit = potential value
if p["price_per_unit"] < thesis["max_price_per_unit"]:
score += 30
return scoreNotice there is no AI in that snippet. That is the point. Start with logic you can explain to an investment committee, then layer models on top once you trust the data.
Rules break down when relationships are nonlinear or when you have too many variables to weight by hand. That is where models earn their keep:
A useful framing: rules for what you can explain, models for what you cannot easily reason about but can measure.
🎬 [VIDEO: "How Data Science Is Changing Commercial Real Estate" — youtube.com — an accessible overview of how CRE firms use data pipelines and predictive models for acquisitions]
An investment thesis is a firm's stated view on what will make money and why. Example: "Class B suburban multifamily near expanding employment centers will outperform as remote-flexible workers seek space." (Class B means mid-tier, older but functional buildings.)
The machine's job is to translate that sentence into filters and weights.
| Thesis element | Data proxy | Signal weight |
|---|---|---|
| Expanding employment | Local job postings growth | High |
| Space-seeking demand | Unit size, lot size | Medium |
| Value entry point | Price per unit vs submarket median | High |
| Owner willing to sell | Years owned, permit activity | Medium |
The discipline here is honesty. If you cannot find a data proxy for part of your thesis, that part stays a human judgment call. Do not let the pipelinepipelineAll active sales opportunities across the stages of the sales process, together with their combined potential value and probability of closing.Voir la définition complète → pretend to measure something it cannot.
Garbage in, confident out. Public records are messy. Owner names get misspelled, LLCs obscure true owners, permit categories are inconsistent across cities. A model will happily produce a precise score on bad data. Budget most of your effort for cleaning and matching records, not modeling.
Fair housing and compliance. In the United States, the Fair Housing Act prohibits discrimination based on protected characteristics. A sourcing model that uses demographic proxies can create legal and reputational risk even when unintended. Keep protected-class variables and their proxies out of scoring, and document your inputs. This is not legal advice; involve counsel.
Overfitting to the past. A model trained on the last cycle will assume the next cycle rhymes. It may not. Stress test against scenarios your training data never saw.
Vérification des acquis
1. According to the lesson, what is the fundamental shift in how deal sourcing now works?
2. The lesson states that a modern sourcing pipeline 'replaces the manual grind of finding things worth judging.' What does this imply about the role of machine intelligence?
3. Why does a permit filing for structural work on a multifamily building count as a valuable signal even though its meaning is ambiguous?
4. Select ALL correct answers. According to the lesson, which of the following are among the three core functions of a modern sourcing pipeline?
Sélectionnez toutes les réponses correctes.
5. Select ALL correct answers. Which statements accurately reflect the lesson's view of the highest-value sourcing signals?
Sélectionnez toutes les réponses correctes.
Sourcing finds individual deals. Portfolio strategy asks a bigger question: given everything we own and could own, where should the next dollar go?
Machine intelligence supports this in three ways.
Concentration awareness. The pipelinepipelineAll active sales opportunities across the stages of the sales process, together with their combined potential value and probability of closing.Voir la définition complète → knows your existing exposure. If you already hold heavy office in one metro, it can down-weight new office there and surface diversification candidates instead.
Scenario modeling. Instead of one forecast, run many. What happens to portfolio cash flow if interest rates stay elevated, if rents flatten, if insurance costs keep climbing (a real pressure in coastal and wildfire-exposed markets)? Models let you test hundreds of combinations quickly.
Capital allocation ranking. Rank all live opportunities on a single risk-adjusted basis so the committee compares apples to apples across asset types and geographies.
Picture a mid-size acquisitions team in 2026:
The machine did not close the deal. It compressed weeks of screening into an afternoon and made sure nothing obvious was missed.
By 2026, large language models add a layer on top of the numeric pipelinepipelineAll active sales opportunities across the stages of the sales process, together with their combined potential value and probability of closing.Voir la définition complète →. They can read a 90-page lease abstract, a zoning code, or an offering memorandum and pull out the terms that matter. They can summarize why a property scored high in plain English for the committee.
Treat these outputs as drafts. Language models can misread a clause or invent a detail (a "hallucinationhallucinationA hallucination is when an AI model generates output that is fluent and confident but factually wrong, fabricated, or unsupported by its source data.Voir la définition complète →"). Every material fact still needs a human check against the source document.
You do not have to build any of this from scratch. Data vendors and analytics platforms sell much of the pipelinepipelineAll active sales opportunities across the stages of the sales process, together with their combined potential value and probability of closing.Voir la définition complète →. The strategic questions:
The firms that win are not the ones with the fanciest models. They are the ones with a clear thesis, clean data, and a tight loop between machine output and human judgment.