tbdavid2019 commited on
Commit
a4dd97b
·
1 Parent(s): 53beba1

說明文件

Browse files
Files changed (1) hide show
  1. README.md +66 -0
README.md CHANGED
@@ -11,3 +11,69 @@ short_description: 股市潛力股預測, 使用Chronos-bolt
11
  ---
12
 
13
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  ---
12
 
13
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
14
+
15
+
16
+ # 股市潛力股預測系統 - 使用 Chronos-Bolt
17
+
18
+ ## 簡介
19
+ 本專案旨在提供一個基於 Chronos-Bolt 模型的股市潛力股預測系統。該系統透過 Gradio 圖形介面,讓使用者可以選擇股市指數及時間範圍,預測未來股價的潛力,並推薦前 10 名潛力股。
20
+
21
+ ## 功能特色
22
+ - **支援多種指數**:包含台灣 50、中型 100、S&P 精簡 50、NASDAQ 精簡 50、賽城半導體 SOX、道瓊 DJI 等。
23
+ - **客製化時間範圍**:提供 3 個月、6 個月、9 個月及 1 年的選項。
24
+ - **直覺化介面**:透過 Gradio 界面,顯示潛力股清單及相關數據(如現價、預測最高價等)。
25
+ - **高準確率預測**:整合 Chronos-Bolt 模型進行時序數據預測。
26
+
27
+ ## 使用技術
28
+ - **Python 套件**:Pandas、Requests、Yahoo Finance、AutoGluon TimeSeries 模組、Gradio。
29
+ - **時序數據預測模型**:Chronos-Bolt。
30
+
31
+ ## 如何運行
32
+ ### 環境設定
33
+ 1. 安裝 Python 3.8 以上版本。
34
+ 2. 安裝必要套件:
35
+ ```bash
36
+ pip install pandas requests yfinance autogluon gradio
37
+ ```
38
+
39
+ ### 啟動應用程式
40
+ 1. 下載專案代碼。
41
+ 2. 執行以下指令以啟動 Gradio 介面:
42
+ ```bash
43
+ python app.py
44
+ ```
45
+ 3. 使用瀏覽器打開提供的本地端網址,即可開始使用。
46
+
47
+ ---
48
+
49
+ # Stock Market Potential Stock Prediction System - Powered by Chronos-Bolt
50
+
51
+ ## Overview
52
+ This project provides a stock market potential stock prediction system powered by the Chronos-Bolt model. Using a Gradio interface, users can select stock indices and time ranges to predict future stock price potential and recommend the top 10 potential stocks.
53
+
54
+ ## Key Features
55
+ - **Multiple Index Support**: Includes Taiwan 50, Mid-Cap 100, S&P Simplified 50, NASDAQ Simplified 50, SOX, and DJI indices.
56
+ - **Customizable Time Range**: Options for 3 months, 6 months, 9 months, and 1 year.
57
+ - **Intuitive Interface**: Gradio-based interface displays potential stocks and relevant data (e.g., current price, highest predicted price).
58
+ - **Accurate Predictions**: Integrates the Chronos-Bolt model for time-series data forecasting.
59
+
60
+ ## Technology Stack
61
+ - **Python Libraries**: Pandas, Requests, Yahoo Finance, AutoGluon TimeSeries, Gradio.
62
+ - **Time-Series Forecasting Model**: Chronos-Bolt.
63
+
64
+ ## How to Run
65
+ ### Environment Setup
66
+ 1. Install Python 3.8 or above.
67
+ 2. Install required packages:
68
+ ```bash
69
+ pip install pandas requests yfinance autogluon gradio
70
+ ```
71
+
72
+ ### Launch Application
73
+ 1. Download the project code.
74
+ 2. Start the Gradio interface by running:
75
+ ```bash
76
+ python app.py
77
+ ```
78
+ 3. Open the provided local URL in your browser to use the system.
79
+