Spaces:
Sleeping
Sleeping
File size: 16,427 Bytes
31e81ea 1637bca 31e81ea 1637bca 31e81ea 1637bca 31e81ea 1637bca 31e81ea 1637bca 31e81ea 1637bca 31e81ea 1637bca 31e81ea 1637bca 31e81ea 1637bca 31e81ea 1637bca 31e81ea 1637bca 31e81ea 1637bca f7e83a7 31e81ea 1637bca 31e81ea 1637bca 31e81ea 1637bca 64b0cdd 1637bca 31e81ea 1637bca 31e81ea 1637bca 31e81ea 1637bca 64b0cdd 1637bca 31e81ea 1637bca 31e81ea 1637bca 31e81ea 1637bca 09bfa91 1637bca 31e81ea | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 | """
inference.py β Mandatory entry point for the Meta Γ PyTorch Hackathon automated evaluation.
Requirements:
1. Reads API_BASE_URL, MODEL_NAME, and HF_TOKEN from environment variables.
2. Uses the OpenAI Client for all LLM calls.
3. Stdout follows strict [START], [STEP], and [END] logging format.
4. Runtime < 20 min on 2 vCPU / 8 GB RAM.
IndicatorsEnv v4.1 β Multi-stock Portfolio MDP:
At each step the agent observes 3 stocks from the same NSE sector.
It picks ONE stock and declares Bullish/Bearish, or passes with NONE.
Reward = (chosen_stock_return β sector_avg) Γ direction Γ conviction Γ 50
Market-neutral: random policy earns ~0; skilled policy earns positive alpha.
Tasks: short (5 steps, daily), medium (10 steps, weekly), long (15 steps, monthly).
"""
import os
import re
import json
import requests
import argparse
from typing import Any, Dict, List, Optional, Tuple
from openai import OpenAI
# ββ Configuration (Mandatory per Hackathon Spec) ββββββββββββββββββββββββββββ
API_BASE_URL = os.environ.get("API_BASE_URL", "https://router.huggingface.co/v1/")
MODEL_NAME = os.environ.get("MODEL_NAME", "meta-llama/Llama-3.2-1B-Instruct")
HF_TOKEN = os.environ.get("HF_TOKEN")
TASKS = ["short_term_direction", "medium_term_direction", "long_term_conviction"]
ENV_TERMS = {
"short_term_direction": "short",
"medium_term_direction": "medium",
"long_term_conviction": "long",
}
# ββ Action parser ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _parse_action(
text: str,
available_stocks: List[str],
) -> Tuple[str, str, float]:
"""
Parse LLM response into (stock, direction, conviction).
Expected JSON:
{"stock": "HDFCBANK", "direction": "Bullish", "conviction": 0.8}
or to pass:
{"stock": "NONE", "direction": "NONE", "conviction": 0.0}
Falls back gracefully on malformed output.
"""
text = re.sub(r"```(?:json)?", "", text).strip().rstrip("`").strip()
try:
match = re.search(r"\{[^}]+\}", text, re.DOTALL)
if match:
obj = json.loads(match.group(0))
stock = str(obj.get("stock", "NONE")).strip().upper()
direction = str(obj.get("direction", "NONE")).strip().capitalize()
conviction = float(obj.get("conviction", 0.5))
conviction = max(0.0, min(1.0, conviction))
# Validate stock
if stock not in available_stocks and stock != "NONE":
# Try case-insensitive match
upper_map = {s.upper(): s for s in available_stocks}
stock = upper_map.get(stock, "NONE")
# Validate direction
if direction not in ("Bullish", "Bearish", "None"):
direction = "NONE"
if stock == "NONE":
direction = "NONE"
return stock, direction, conviction
except Exception:
pass
# ββ Fallback: keyword search βββββββββββββββββββββββββββββββββββββββββββββ
lower = text.lower()
# Look for stock mention
found_stock = "NONE"
for sym in available_stocks:
if sym.lower() in lower:
found_stock = sym
break
# Look for direction
if "bullish" in lower:
direction = "Bullish"
elif "bearish" in lower:
direction = "Bearish"
elif "none" in lower or "pass" in lower or "skip" in lower:
direction = "NONE"
found_stock = "NONE"
else:
direction = "NONE"
found_stock = "NONE"
return found_stock, direction, 0.6
# ββ Prompt builder βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _build_prompt(
obs: Dict[str, Any],
step_num: int,
max_steps: int,
term: str,
task_id: str,
signal_history: List[Dict[str, Any]],
prev_info: Optional[Dict[str, Any]] = None,
) -> Tuple[str, str]:
"""
Build system + user prompt for multi-stock relative alpha prediction.
"""
system_prompt = (
"You are a quantitative portfolio manager specializing in NSE (India) equities. "
"At each step you observe 3 stocks from the SAME sector. "
"Your job: identify which stock has the strongest relative momentum signal "
"and bet on its direction vs. the sector average. "
"Reward = (your stock's return β sector average) Γ direction Γ conviction Γ 50. "
"Market-neutral: picking randomly earns ~0 reward β you profit ONLY by selecting "
"the outperformer correctly. "
"Switching your held position to a different stock costs 0.1% of capital in transaction cost. "
"If you are already in a strong position, staying in the same stock avoids switching cost. "
"Pass with NONE to hold your position without incurring a switch cost. "
'Respond ONLY with JSON: {"stock": "<SYMBOL>", "direction": "Bullish"|"Bearish", '
'"conviction": <0.0-1.0>} or {"stock": "NONE", "direction": "NONE", "conviction": 0.0}'
)
sector = obs.get("sector", "unknown")
available = obs.get("available_stocks", [])
stocks_data = obs.get("stocks", {})
macro = obs.get("macro")
# ββ Format stock snapshots ββββββββββββββββββββββββββββββββββββββββββββββββ
stock_lines = []
for sym in available:
s = stocks_data.get(sym, {})
rsi = s.get("rsi_14", "N/A")
rsi_trend = s.get("rsi_trend", "?")
momentum = s.get("price_momentum_pct", 0.0)
price = s.get("current_price", "N/A")
# Key indicator signals
inds = s.get("indicators", {})
macd_sig = inds.get("macd", {}).get("signal", "?")
ma_sig = inds.get("moving_averages", {}).get("signal", "?")
adx_str = inds.get("adx", {}).get("trend_strength", "?")
stock_lines.append(
f" {sym}: price={price} RSI={rsi}({rsi_trend}) "
f"momentum={momentum:+.1f}% MACD={macd_sig} MA={ma_sig} ADX={adx_str}"
)
stocks_str = "\n".join(stock_lines)
# ββ Signal history (last 3 steps for context) ββββββββββββββββββββββββββββ
history_str = ""
if signal_history:
recent = signal_history[-3:]
lines = []
for h in recent:
picked = h.get("picked_stock", "NONE")
dirn = h.get("direction", "NONE")
gt = h.get("ground_truth", "?")
alpha = h.get("alpha_pct", 0.0)
rew = h.get("reward", 0.0)
if dirn != "NONE":
correct_str = "β" if h.get("correct") else "β"
lines.append(
f" Step {h['step']}: picked {picked} β {dirn} "
f"({correct_str} GT={gt} alpha={alpha:+.2f}% reward={rew:.3f})"
)
else:
lines.append(f" Step {h['step']}: NONE (passed)")
history_str = "Signal history:\n" + "\n".join(lines) + "\n"
# ββ Macro context (Task 3) ββββββββββββββββββββββββββββββββββββββββββββββββ
macro_str = ""
if macro:
macro_str = (
f"Macro: NIFTY50={macro.get('nifty_trend','?')} "
f"(20d return: {macro.get('nifty_return_20d',0):.1f}%) "
f"regime={macro.get('market_regime','?')}\n"
)
# ββ Previous step feedback ββββββββββββββββββββββββββββββββββββββββββββββββ
prev_str = ""
if prev_info and prev_info.get("chosen_stock") != "N/A":
prev_str = (
f"Last step: picked {prev_info.get('chosen_stock','?')} β "
f"{prev_info.get('direction','?')} "
f"(GT={prev_info.get('ground_truth','?')} "
f"alpha={prev_info.get('alpha_pct',0):+.2f}% "
f"reward={prev_info.get('reward',0):.3f})\n"
)
# ββ Portfolio context (v4.1) ββββββββββββββββββββββββββββββββββββββββββββββ
holding = obs.get("current_holding", "NONE") if isinstance(obs, dict) else "NONE"
capital = obs.get("capital", 1.0) if isinstance(obs, dict) else 1.0
drawdown = obs.get("drawdown", 0.0) if isinstance(obs, dict) else 0.0
if holding != "NONE":
tx_note = f"(switching from {holding} costs ~{capital * 0.001:.4f} tx_cost)"
else:
tx_note = "(no current holding β first pick is free)"
portfolio_str = (
f"Portfolio: capital={capital:.4f} holding={holding} "
f"drawdown={drawdown:.1%} {tx_note}\n"
)
user_prompt = (
f"[Step {step_num}/{max_steps}] Sector: {sector.upper()} | Task: {task_id} | "
f"Term: {term.upper()}\n\n"
f"Stocks (same sector):\n{stocks_str}\n\n"
f"{history_str}"
f"{macro_str}"
f"{portfolio_str}"
f"{prev_str}"
f"Pick the stock with the strongest relative momentum signal.\n"
f"Available: {available} or NONE to skip.\n\n"
f"Which stock has the best setup? Respond with JSON."
)
return system_prompt, user_prompt
# ββ Main evaluation loop ββββββββββββββββββββββββββββββββββββββββββββββββββββ
def run_evaluation(env_url: str, n_episodes: int) -> None:
client = OpenAI(base_url=API_BASE_URL, api_key=HF_TOKEN)
for task_id in TASKS:
term = ENV_TERMS[task_id]
episode_results: List[Dict[str, Any]] = []
print(f"[START] task={task_id} env=IndicatorsEnv model={MODEL_NAME}", flush=True)
for i in range(n_episodes):
try:
# 1. Reset β 90s timeout (multi-stock fetches 3 yfinance calls)
reset_resp = requests.post(
f"{env_url}/reset",
params={"term": term},
timeout=90,
)
if reset_resp.status_code != 200:
print(f"[ERR] episode={i+1} reset HTTP {reset_resp.status_code}", flush=True)
continue
data = reset_resp.json()
obs = data.get("observation", {})
session_id = data.get("info", {}).get("session_id", "")
max_steps = data.get("info", {}).get("max_steps", 5)
available = obs.get("available_stocks", [])
done = False
step_num = 0
prev_info: Optional[Dict[str, Any]] = None
# 2. Multi-step loop β one episode = max_steps steps
while not done:
step_num += 1
# Signal history from observation (accumulated across steps)
signal_history = obs.get("signal_history", []) if isinstance(obs, dict) else []
available = obs.get("available_stocks", available) if isinstance(obs, dict) else available
# Build prompts
system_prompt, user_prompt = _build_prompt(
obs = obs if isinstance(obs, dict) else {},
step_num = step_num,
max_steps = max_steps,
term = term,
task_id = task_id,
signal_history= signal_history,
prev_info = prev_info,
)
# 3. LLM call
chat_completion = client.chat.completions.create(
model = MODEL_NAME,
messages = [
{"role": "system", "content": system_prompt},
{"role": "user", "content": user_prompt},
],
max_tokens = 128,
temperature = 0.7,
)
response = chat_completion.choices[0].message.content or ""
stock, direction, conviction = _parse_action(response, available)
# 4. Step environment
step_resp = requests.post(
f"{env_url}/step",
params={"session_id": session_id},
json={
"stock": stock,
"direction": direction,
"conviction": conviction,
},
timeout=30,
)
if step_resp.status_code != 200:
print(f"[ERR] episode={i+1} step={step_num} HTTP {step_resp.status_code}", flush=True)
break
step_data = step_resp.json()
reward = step_data.get("reward", 0.0)
done = step_data.get("done", True)
step_info = step_data.get("info", {})
ground_truth = step_info.get("ground_truth", "N/A")
obs = step_data.get("observation") or obs
# Store info for next step's prompt
prev_info = {
"chosen_stock": step_info.get("chosen_stock", stock),
"direction": direction,
"ground_truth": ground_truth,
"alpha_pct": step_info.get("alpha_pct", 0.0),
"reward": reward,
}
# Track for grader β key MUST be "predicted"
episode_results.append({
"predicted": direction,
"conviction": conviction,
"reward": reward,
"ground_truth": ground_truth,
})
# [STEP] log
print(
f"[STEP] step={step_num} stock={stock} action={direction} "
f"reward={reward:.4f} done={done} error=None",
flush=True,
)
except Exception as e:
print(f"[ERR] episode={i+1} {type(e).__name__}: {e}", flush=True)
continue
# 5. Finalize task β call grader
try:
grader_resp = requests.post(
f"{env_url}/grader",
json={"task_id": task_id, "episode_results": episode_results},
timeout=60,
)
final_score = (
grader_resp.json().get("score", 0.0)
if grader_resp.status_code == 200 else 0.0
)
except Exception as e:
print(f"[ERR] grader: {type(e).__name__}: {e}", flush=True)
final_score = 0.0
rewards_list = [ep["reward"] for ep in episode_results]
steps_taken = len(episode_results)
success = final_score > 0.0
print(
f"[END] success={success} steps={steps_taken} score={final_score:.4f} "
f"rewards={rewards_list}",
flush=True,
)
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="IndicatorsEnv v4.0 Inference Agent")
parser.add_argument("--env_url", default="http://localhost:7860", help="IndicatorsEnv server URL")
parser.add_argument("--n_episodes", type=int, default=5, help="Episodes per task")
args = parser.parse_args()
if not HF_TOKEN:
print("Error: HF_TOKEN must be set as an environment variable.")
exit(1)
run_evaluation(args.env_url, args.n_episodes)
|