初始化项目,由ModelHub XC社区提供模型

Model: Rustamshry/StockDirection-GGUF
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-05-06 10:20:18 +08:00
commit 4d6ccba6fa
3 changed files with 99 additions and 0 deletions

60
README.md Normal file
View File

@@ -0,0 +1,60 @@
---
tags:
- sft
- unsloth
- finance
license: apache-2.0
datasets:
- atahanuz/stock_prediction
language:
- en
base_model:
- unsloth/Qwen3-0.6B
pipeline_tag: text-generation
---
# Model Card for StockDirection-6K
## Model Details
GGUF version of https://huggingface.co/khazarai/StockDirection
StockDirection is a fine-tuned language model for binary stock movement prediction.
The model is trained to predict whether the next days stock price of Akbank (AKBNK), traded on Borsa Istanbul (BIST), will move UP or DOWN, based on the daily percentage changes from the last four days and the current day.
- Input: A formatted prompt describing the last 5 days of daily percentage price changes.
- Output: A simple categorical prediction — "UP" or "DOWN".
This model was fine-tuned on a dataset of 6,300 labeled rows of AKBNK stock data.
## Uses
### Direct Use
- Educational purposes: Demonstrating how LLMs can be fine-tuned for financial classification tasks.
- Research: Exploring text-based sequence learning for stock direction prediction.
- Proof of concept: Serving as an example for stock price direction prediction using natural language prompts.
⚠️ Not for financial advice or live trading decisions.
## Training Data
- Dataset: [atahanuz/stock_prediction](https://huggingface.co/datasets/atahanuz/stock_prediction)
- Size: 6,355 labeled examples.
- Structure: Each sample contains past 5 daily percentage changes and the target label (UP/DOWN).
Example:
```vbnet
Question: You are an assistant that predicts whether a stock will go up or down in the next day
based on the daily percentage price changes of the last:
4 days ago: nan
3 days ago: 0.00
2 days ago: 2.22
1 day ago: -2.17
today: -2.22
Predict whether the next day's price will go up or down.
Simply write your prediction as UP or DOWN.
Answer: DOWN
```