Eric Xu commited on
Commit
92cf501
·
unverified ·
1 Parent(s): 780903d

Remove dating/relationship references from all files

Browse files
Files changed (5) hide show
  1. AGENT.md +2 -2
  2. README.md +1 -1
  3. scripts/generate_cohort.py +1 -1
  4. web/app.py +2 -2
  5. web/static/index.html +1 -1
AGENT.md CHANGED
@@ -49,7 +49,7 @@ This downloads the 1M-persona dataset (~2GB). Only needs to happen once.
49
 
50
  **Ask the user**:
51
 
52
- 1. *"What are you optimizing? (product, resume, pitch, policy, dating profile, or describe your own)"*
53
  2. *"Describe it — or paste/point me to the document. I need what an evaluator would see."*
54
  3. *"Is there anything an evaluator should NOT see? (internal metrics, private details, etc.)"*
55
 
@@ -80,7 +80,7 @@ If the user doesn't have a document ready, use the appropriate template from `te
80
  | Resume | Company type, seniority, technical depth, industry |
81
  | Pitch | Investment stage, sector focus, check size |
82
  | Policy | Stakeholder role, income bracket, geography, property ownership |
83
- | Dating | Age bracket, life stage, education, occupation, geography |
84
  | Custom | Ask the user to name 3-4 dimensions |
85
 
86
  ### Build the cohort
 
49
 
50
  **Ask the user**:
51
 
52
+ 1. *"What are you optimizing? (product, resume, pitch, policy, profile, or describe your own)"*
53
  2. *"Describe it — or paste/point me to the document. I need what an evaluator would see."*
54
  3. *"Is there anything an evaluator should NOT see? (internal metrics, private details, etc.)"*
55
 
 
80
  | Resume | Company type, seniority, technical depth, industry |
81
  | Pitch | Investment stage, sector focus, check size |
82
  | Policy | Stakeholder role, income bracket, geography, property ownership |
83
+ | Profile | Age bracket, life stage, education, occupation, geography |
84
  | Custom | Ask the user to name 3-4 dimensions |
85
 
86
  ### Build the cohort
README.md CHANGED
@@ -35,7 +35,7 @@ Anything someone else evaluates.
35
  | **Pitch** — investor deck | VCs and angels at different stages | Whether the story lands, what questions they'd ask |
36
  | **Policy** — proposed regulation | Stakeholders by role, income, geography | Who supports it, who opposes, what compromise works |
37
  | **Content** — blog post, video | Readers at different expertise levels | Whether it hits the right level, what's confusing |
38
- | **Profile** — dating, professional bio | Population sample by age, education, occupation | How different demographics perceive you |
39
 
40
  SGO ships with a 1M-person census-grounded dataset ([Nemotron-Personas-USA](https://huggingface.co/datasets/nvidia/Nemotron-Personas-USA)) with structured demographics (age, sex, education, occupation, marital status, US geography) plus rich narrative fields — professional persona, skills and expertise, career goals, hobbies, cultural background, and personality. The narratives naturally encode things like seniority, industry, technical depth, and decision-making style, even though those aren't separate columns.
41
 
 
35
  | **Pitch** — investor deck | VCs and angels at different stages | Whether the story lands, what questions they'd ask |
36
  | **Policy** — proposed regulation | Stakeholders by role, income, geography | Who supports it, who opposes, what compromise works |
37
  | **Content** — blog post, video | Readers at different expertise levels | Whether it hits the right level, what's confusing |
38
+ | **Profile** — professional bio, personal brand | Population sample by age, education, occupation | How different demographics perceive you |
39
 
40
  SGO ships with a 1M-person census-grounded dataset ([Nemotron-Personas-USA](https://huggingface.co/datasets/nvidia/Nemotron-Personas-USA)) with structured demographics (age, sex, education, occupation, marital status, US geography) plus rich narrative fields — professional persona, skills and expertise, career goals, hobbies, cultural background, and personality. The narratives naturally encode things like seniority, industry, technical depth, and decision-making style, even though those aren't separate columns.
41
 
scripts/generate_cohort.py CHANGED
@@ -63,7 +63,7 @@ Return JSON:
63
  "country": "USA",
64
  "education_level": "<high_school | bachelors | graduate | etc>",
65
  "occupation": "<specific job title>",
66
- "marital_status": "<never_married | married | divorced | widowed | separated>",
67
  "interests": ["<hobby or skill, 3-5 items>"],
68
  "persona": "<200-400 word detailed persona narrative>",
69
  "segment": "{segment_label}"
 
63
  "country": "USA",
64
  "education_level": "<high_school | bachelors | graduate | etc>",
65
  "occupation": "<specific job title>",
66
+ "marital_status": "<single | married | other>",
67
  "interests": ["<hobby or skill, 3-5 items>"],
68
  "persona": "<200-400 word detailed persona narrative>",
69
  "segment": "{segment_label}"
web/app.py CHANGED
@@ -160,8 +160,8 @@ Return JSON:
160
  ]
161
  }}
162
 
163
- Make segments specific to THIS domain. For a product, use buyer personas. For a dating profile,
164
- use different types of potential partners. For a resume, use different hiring managers. Etc.
165
  Be concrete and relevant — no generic segments."""
166
 
167
  try:
 
160
  ]
161
  }}
162
 
163
+ Make segments specific to THIS domain. For a product, use buyer personas.
164
+ For a resume, use different hiring managers. For a pitch, use different investor types. Etc.
165
  Be concrete and relevant — no generic segments."""
166
 
167
  try:
web/static/index.html CHANGED
@@ -316,7 +316,7 @@
316
  <div class="step-num">1</div>
317
  <div class="step-title">What are you optimizing?</div>
318
  </div>
319
- <p class="step-desc">Paste whatever you want evaluated — landing page, resume, pitch, dating profile, policy, anything.</p>
320
 
321
  <div class="template-chips">
322
  <span class="template-chip" onclick="loadTemplate('product')">Product</span>
 
316
  <div class="step-num">1</div>
317
  <div class="step-title">What are you optimizing?</div>
318
  </div>
319
+ <p class="step-desc">Paste whatever you want evaluated — landing page, resume, pitch, policy, profile, anything.</p>
320
 
321
  <div class="template-chips">
322
  <span class="template-chip" onclick="loadTemplate('product')">Product</span>