eagle0504 commited on
Commit
8ed4bb7
β€’
1 Parent(s): 418ed18

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +37 -39
app.py CHANGED
@@ -30,7 +30,7 @@ class ChatBot:
30
  # Credit: Time
31
  def current_year():
32
  now = datetime.now()
33
- return now
34
 
35
 
36
  st.set_page_config(layout="wide")
@@ -60,7 +60,7 @@ with st.sidebar:
60
  st.success("Example: What is Yiqiao's view on stock market?")
61
 
62
  # Credit:
63
- current_year = current_year().year # This will print the current year
64
  st.markdown(
65
  f"""
66
  <h6 style='text-align: left;'>Copyright Β© 2010-{current_year} Present Yiqiao Yin</h6>
@@ -90,44 +90,42 @@ for message in st.session_state.messages:
90
  with st.chat_message(message["role"]):
91
  st.markdown(message["content"])
92
 
93
- time_now = current_year()
94
  yiqiaoyin_profile = f"""
95
- Yin's Profile:
96
-
97
- Full Name: Yiqiao Yin
98
- Pronoun: He/Him
99
- Current time: {time_now}
100
-
101
- Yiqiao has 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. He is currently a Tech Lead at Vertex Inc, a global leading provider of tax technologies πŸ“ŠπŸ’». Previously, he 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). He has 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). He supervises a small fund specializing in algorithmic trading (since 2011, performance is here) in equity market, cryptocurrencies, and real estate investment. He also runs his own monetized YouTube Channel. Feel free to add me on LinkedIn. πŸš€πŸ“ˆ
102
-
103
- Though he started in Finance, Yin's AI career started from academic environment. He was a PhD student in Statistics at Columbia University from September of 2020 to December of 2021 πŸ“ˆπŸŽ“. He earned a B.A. in Mathematics, and an M.S. in Finance from University of Rochester πŸ’ΌπŸ“Š. His research interests are wide-ranging in representation learning, including Feature Learning, Deep Learning, Computer Vision (CV), and Natural Language Processing (NLP) πŸ€–πŸ‘€. Additionally, he has some prior research experience in Financial Economics and Asset Pricing πŸ’ΉπŸ“‰.
104
-
105
- Google scholar: 'https://scholar.google.com/citations?hl=en&user=Ju6m_O4AAAAJ'
106
-
107
- Personal site: 'https://www.y-yin.io/'
108
-
109
- YouTube: 'https://www.youtube.com/@YiqiaoYin'
110
-
111
- LinkedIn: 'https://www.linkedin.com/in/yiqiaoyin'
112
-
113
- When Yiqiao was in PhD program at Columbia University, he investigated heavily in a domain known as dimension reduction and he focused on developing tools for scientists to understand the important features that affect the prediction outcome. He has multiple papers published on the topic known as I-score or Influence Score (Influence Measure) that is a non-parametric dimension reduction technique on supervised learning. The work gave him the foundation of statistical machine learning and experience of conducting independcent research.
114
-
115
- For more published work by Yiqiao, please check out the site 'https://www.y-yin.io/' under 'Research'.
116
-
117
- View about stock market: Yiqiao believed that stock market is mostly fairly efficient. Many research groups and companies are doing great things out there with advanced tools. However, market does get "noisy" once in a while and that breeds opportunity. Yiqiao personally trades off a momentum strategy and he has his own market timing algorithm. This app 'https://huggingface.co/spaces/eagle0504/technical-trader' demonstrates how Yiqiao times the entry point should he decides to enter a stock. This app 'https://huggingface.co/spaces/eagle0504/Momentum-Strategy-Screener' demonstrates how Yiqiao weighs the stocks in his portfolio.
118
-
119
- View about AI: Yiqiao has good faith in today's advancement of AI technology and is a big supporter of AI-backed technology to boost business operation and enhance corporate strategy. Many clients and companies Yiqiao worked with in the past led him to conclude that 'AI alone may falter and stray, but built around a corporate strategy, it paves the way.'
120
-
121
- Yiqiao built a series of AI-backed apps:
122
- - GPT-4o demo: 'https://huggingface.co/spaces/eagle0504/gpt-4o-demo'
123
- - Llama demo: 'https://huggingface.co/spaces/eagle0504/meta-llama'
124
- - Software-as-a-Service or SAAS demo: 'https://huggingface.co/spaces/eagle0504/saas-template'
125
- - Technical Trader (a timing strategy) demo: 'https://huggingface.co/spaces/eagle0504/stable-audio-demo'
126
- - Momentum Strategy (a trading algorithm) demo: 'https://huggingface.co/spaces/eagle0504/Momentum-Strategy-Screener'
127
- - Stable Audio demo: 'https://huggingface.co/spaces/eagle0504/stable-audio-demo'
128
- - Duel Agent Simulation (a chain of thoughts/abstraction) demo: 'https://huggingface.co/spaces/eagle0504/duel-agent-simulation'
129
- - Intelligent Document Processing demo: 'https://huggingface.co/spaces/eagle0504/IDP-Demo'
130
-
131
  """
132
 
133
  # React to user input
 
30
  # Credit: Time
31
  def current_year():
32
  now = datetime.now()
33
+ return now.year
34
 
35
 
36
  st.set_page_config(layout="wide")
 
60
  st.success("Example: What is Yiqiao's view on stock market?")
61
 
62
  # Credit:
63
+ current_year = current_year() # This will print the current year
64
  st.markdown(
65
  f"""
66
  <h6 style='text-align: left;'>Copyright Β© 2010-{current_year} Present Yiqiao Yin</h6>
 
90
  with st.chat_message(message["role"]):
91
  st.markdown(message["content"])
92
 
 
93
  yiqiaoyin_profile = f"""
94
+ Yin's Profile:
95
+
96
+ Full Name: Yiqiao Yin
97
+ Pronoun: He/Him
98
+ Current time: {current_year}
99
+
100
+ Yiqiao has 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. He is currently a Tech Lead at Vertex Inc, a global leading provider of tax technologies πŸ“ŠπŸ’». Previously, he 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). He has 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). He supervises a small fund specializing in algorithmic trading (since 2011, performance is here) in equity market, cryptocurrencies, and real estate investment. He also runs his own monetized YouTube Channel. Feel free to add me on LinkedIn. πŸš€πŸ“ˆ
101
+
102
+ Though he started in Finance, Yin's AI career started from academic environment. He was a PhD student in Statistics at Columbia University from September of 2020 to December of 2021 πŸ“ˆπŸŽ“. He earned a B.A. in Mathematics, and an M.S. in Finance from University of Rochester πŸ’ΌπŸ“Š. His research interests are wide-ranging in representation learning, including Feature Learning, Deep Learning, Computer Vision (CV), and Natural Language Processing (NLP) πŸ€–πŸ‘€. Additionally, he has some prior research experience in Financial Economics and Asset Pricing πŸ’ΉπŸ“‰.
103
+
104
+ Google scholar: 'https://scholar.google.com/citations?hl=en&user=Ju6m_O4AAAAJ'
105
+
106
+ Personal site: 'https://www.y-yin.io/'
107
+
108
+ YouTube: 'https://www.youtube.com/@YiqiaoYin'
109
+
110
+ LinkedIn: 'https://www.linkedin.com/in/yiqiaoyin'
111
+
112
+ When Yiqiao was in PhD program at Columbia University, he investigated heavily in a domain known as dimension reduction and he focused on developing tools for scientists to understand the important features that affect the prediction outcome. He has multiple papers published on the topic known as I-score or Influence Score (Influence Measure) that is a non-parametric dimension reduction technique on supervised learning. The work gave him the foundation of statistical machine learning and experience of conducting independcent research.
113
+
114
+ For more published work by Yiqiao, please check out the site 'https://www.y-yin.io/' under 'Research'.
115
+
116
+ View about stock market: Yiqiao believed that stock market is mostly fairly efficient. Many research groups and companies are doing great things out there with advanced tools. However, market does get "noisy" once in a while and that breeds opportunity. Yiqiao personally trades off a momentum strategy and he has his own market timing algorithm. This app 'https://huggingface.co/spaces/eagle0504/technical-trader' demonstrates how Yiqiao times the entry point should he decides to enter a stock. This app 'https://huggingface.co/spaces/eagle0504/Momentum-Strategy-Screener' demonstrates how Yiqiao weighs the stocks in his portfolio.
117
+
118
+ View about AI: Yiqiao has good faith in today's advancement of AI technology and is a big supporter of AI-backed technology to boost business operation and enhance corporate strategy. Many clients and companies Yiqiao worked with in the past led him to conclude that 'AI alone may falter and stray, but built around a corporate strategy, it paves the way.'
119
+
120
+ Yiqiao built a series of AI-backed apps:
121
+ - GPT-4o demo: 'https://huggingface.co/spaces/eagle0504/gpt-4o-demo'
122
+ - Llama demo: 'https://huggingface.co/spaces/eagle0504/meta-llama'
123
+ - Software-as-a-Service or SAAS demo: 'https://huggingface.co/spaces/eagle0504/saas-template'
124
+ - Technical Trader (a timing strategy) demo: 'https://huggingface.co/spaces/eagle0504/stable-audio-demo'
125
+ - Momentum Strategy (a trading algorithm) demo: 'https://huggingface.co/spaces/eagle0504/Momentum-Strategy-Screener'
126
+ - Stable Audio demo: 'https://huggingface.co/spaces/eagle0504/stable-audio-demo'
127
+ - Duel Agent Simulation (a chain of thoughts/abstraction) demo: 'https://huggingface.co/spaces/eagle0504/duel-agent-simulation'
128
+ - Intelligent Document Processing demo: 'https://huggingface.co/spaces/eagle0504/IDP-Demo'
 
129
  """
130
 
131
  # React to user input