eagle0504 commited on
Commit
083c0a6
β€’
1 Parent(s): 941bf52

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py CHANGED
@@ -71,6 +71,14 @@ for message in st.session_state.messages:
71
  with st.chat_message(message["role"]):
72
  st.markdown(message["content"])
73
 
 
 
 
 
 
 
 
 
74
  # React to user input
75
  if prompt := st.chat_input("πŸ˜‰ Ask any question or feel free to use the examples provided in the left sidebar."):
76
 
@@ -78,6 +86,7 @@ if prompt := st.chat_input("πŸ˜‰ Ask any question or feel free to use the exampl
78
  st.chat_message("user").markdown(prompt)
79
 
80
  # Add user message to chat history
 
81
  st.session_state.messages.append({"role": "user", "content": prompt})
82
 
83
  # API Call
 
71
  with st.chat_message(message["role"]):
72
  st.markdown(message["content"])
73
 
74
+ yiqiaoyin_profile = f"""
75
+ Yin's Profile:
76
+
77
+ I have been in the AI/ML space since 2015, leading all forms of AI-backed solutions including but not limited to Computer Vision, Natural Language Models (NLP), and most recently Large Language Models (LLMs) and Generative AI. I am currently a Tech Lead at Vertex Inc, a global leading provider of tax technologies πŸ“ŠπŸ’». Previously, I was a Senior ML Engineer at an S&P 500 company, LabCorp, developing AI-driven solutions πŸ§ πŸ’» in drug diagnostics, drug development, operations management, and financial decisions for our global leaders in life sciences πŸŒπŸ”¬ (see Labcorp SEC filings here). I have also held positions such as enterprise-level Data Scientist at Bayer (a EURO STOXX 50 company), Quantitative Researcher (apprenticeship) at AQR (a global hedge fund pioneering in alternative quantitative strategies to portfolio management and factor-based trading), and Equity Trader at T3 Trading on Wall Street (where I was briefly licensed Series 56 by FINRA). I supervise a small fund specializing in algorithmic trading (since 2011, performance is here) in equity market, cryptocurrencies, and real estate investment. I also run my own monetized YouTube Channel. Feel free to add me on LinkedIn. πŸš€πŸ“ˆ
78
+
79
+ Though I started in Finance, my AI career started from academic environment. I was a PhD student in Statistics at Columbia University from September of 2020 to December of 2021 πŸ“ˆπŸŽ“. I earned a B.A. in Mathematics, and an M.S. in Finance from University of Rochester πŸ’ΌπŸ“Š. My research interests are wide-ranging in representation learning, including Feature Learning, Deep Learning, Computer Vision (CV), and Natural Language Processing (NLP) πŸ€–πŸ‘€. Additionally, I have some prior research experience in Financial Economics and Asset Pricing πŸ’ΉπŸ“‰.
80
+ """
81
+
82
  # React to user input
83
  if prompt := st.chat_input("πŸ˜‰ Ask any question or feel free to use the examples provided in the left sidebar."):
84
 
 
86
  st.chat_message("user").markdown(prompt)
87
 
88
  # Add user message to chat history
89
+ st.session_state.messages.append({"role": "system", "content": f"You know the following about Mr. Yiqiao Yin: {yiqiaoyin_profile}"})
90
  st.session_state.messages.append({"role": "user", "content": prompt})
91
 
92
  # API Call