-
4 tips to use ChatGPT style Financial Chatbot to facilitate your daily financial work
rockingdingo 2023-12-02 #Financial Chatbot #Stock Price #ChatGPTIn this blog, we are introducing how you can use financial chatbot and AI-assistant writer to help you facilitate daily financial work, such as getting realtime stock price quote from global markets (US: NYSE,NASDAQ; China: HKEX, Shanghai,Shenzhen, etc.), consulting investment advice, consensus ratings and target price of stocks from analysts of multiple organizations (Schwab.com, MarketBeats, Zacks.com) and compare them, finding the meaning of complicated financial terms such as CPI, Put Option, Sharpe Ratio. You can also use ChatGPT to act as personally financial assistant, track your portfolio's stock names and show realtime changes. For content generation, you can use the AI-Writer assistant to facilitate writing reports, which integrates many APIs and other ChatGPT style Large Language Model to automatically generate text contents such as market research, financial reports of listed companies, etc.
READ MORE -
3 steps to create Financial Chatbot powered by ChatGPT Part 1
rockingdingo 2023-11-12 #Financial Chatbot # ChatGPT # Stock PriceIn this blog, we will show you 3 easy steps to create your personal financial chatbot assistant powered by ChatGPT. ChatGPT is Large Language Model (LLM) based Artificial Intelligent service created by OpenAI company, who just released their latest Assistant API for chatbot creation. These AI assistants are very useful in financial industries. Common use cases include: Generating realtime stock price quotes, Analyzing financial data, Providing investment advices, generating summary of financial reports, etc. Keywords: Financial Chatbot, Financial ChatGPT, Chatbot Stock Price, Chatbot NYSE, Chatbot.
READ MORE -
Introduction to GPT (Generative Pre-trained Transformer) Models, GPT4,ChatGPT Equations and Latex Code
rockingdingo 2023-03-22 #gpt #gpt4 #chatgpt #gpt3In this blog, we will summarize the latex code of most fundamental equations of GPT (Generative Pre-trained Transformer) Models. This blog will cover many popular GPT models, including GPT1, GPT2, GPT3, GPT4, InstructGPT, ChatGPT, etc.
READ MORE -
Latex Code for Diffusion Models Equations
rockingdingo 2022-09-18 #Diffusion #VAE #GAN #Generative ModelsIn this blog, we will summarize the latex code of equations for Diffusion Models, which are among the top-performing generative models, including GAN, VAE and flow-based models. The basic idea of diffusion models are to inject random noise to the feature vector in the forward process as markov chain models, and in the reverse process gradualy reconstruct the feature vector for generation. See below blogpost as reference for more details: Weng, Lilian. (Jul 2021). What are diffusion models? Lilâ??Log. lilianweng.github.io/posts/2021-07-11-diffusion-models/
READ MORE -
Cheatsheet of Latex Code for Kernel Methods and Gaussian Process
rockingdingo 2022-07-11 #kernel #svm #gaussian process #gp #deep kernel learningIn this blog, we will summarize the latex code of most popular kernel methods and Gaussian Process models, including Support Vector Machine (SVM), Gaussian Process (GP) and Deep Kernel Learning(DKL).
READ MORE -
Tensorflow并行:多核(multicore),多线程(multi-thread)
rockingdingo 2019-10-01 #tensorflow #并行 #多核 #多线程 #parallelism #multicore利用tensorflow训练深度神经网络模型需要消耗很长时间,因为并行化计算就为提升运行速度提供了重要思路。Tensorflow提供了多种方法来使程序的并行运行,在使用这些方法时需要考虑的问题有:选取的计算设备是CPU还是GPU,每个CPU多少核的资源并行计算,构建图Graph时消耗资源如何分配等等问题。下面我们以Linux多核CPU的环境为例介绍几种常见方法来提升你的tensorflow程序的运行速度。
READ MORE