Finance-Analyst-AI / src /data /preprocess.py
Khawaja Ibrahim Salim
Initial commit for Hugging Face deployment
7c8c4c9
Raw
History Blame Contribute Delete
263 Bytes
def format_finance(example):
return {
"text": f"""
Instruction: You are a financial analyst. Analyze and explain clearly.
Input: {example.get('question', example.get('input', ''))}
Response: {example.get('answer', example.get('output', ''))}
"""
}