-
-
Notifications
You must be signed in to change notification settings - Fork 216
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
3,078 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file added
BIN
+38 KB
Stock Prediction Bank Negara/Images/Screenshot from 2024-01-16 03-55-49.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+110 KB
Stock Prediction Bank Negara/Images/Screenshot from 2024-01-16 03-56-07.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,756 changes: 1,756 additions & 0 deletions
1,756
Stock Prediction Bank Negara/Model/Bank stock prediction.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
|
||
|
||
|
||
**BANK Negara Stock Prediction** | ||
|
||
|
||
|
||
**GOAL** | ||
|
||
|
||
To predict a the closing price of the bank stock prices from the dataset. | ||
|
||
|
||
**DATASET** | ||
|
||
|
||
|
||
https://www.kaggle.com/datasets/caesarmario/bank-negara-indonesia-stock-historical-price | ||
|
||
|
||
|
||
**DESCRIPTION** | ||
|
||
|
||
|
||
The main aim of the project is to make a model that helps to predict the closing price of the bank. | ||
|
||
|
||
**WORK DONE** | ||
|
||
* Analyzed the data and found insights such as correlation, missing values etc. | ||
* Selected the columns that have high correlation than other columns to be used as features. (Refer : `eda-banknote-dataset`) | ||
* Next trained model with algorithms with default parameters: | ||
* Logistic Regression | ||
* Linear SVR | ||
* Lasso | ||
* Ridge | ||
* Decision Tree | ||
* Random Forest | ||
* XGBoost | ||
* In this Linear SVR and performed the best with 90% accuracy. | ||
|
||
|
||
**MODELS USED** | ||
|
||
1. Logistic Regression : Logistic regression is easier to implement, interpret, and very efficient to train. It is **very fast at classifying unknown records**. | ||
2. Linear SVM : SVM performs well on classification problems when size of dataset is not too large. | ||
3. Random Forest : It **provides higher accuracy through cross validation**. Random forest classifier will handle the missing values and maintain the accuracy of a large proportion of data. If there are more trees, it won't allow over-fitting trees in the model. | ||
4. XGBoost : XGBoost is **a library for developing fast and high performance gradient boosting tree models**. XGBoost achieves the best performance on a range of difficult machine learning tasks. | ||
5. LightGBM : Light GBM is prefixed as Light because of its high speed. Light GBM can handle the large size of data and takes lower memory to run. it is so popular is because **it focuses on accuracy of results**. | ||
|
||
**LIBRARIES NEEDED** | ||
|
||
* Numpy | ||
* Pandas | ||
* Matplotlib | ||
* scikit-learn | ||
* xgboost | ||
* seaborn | ||
|
||
|
||
|
||
**CONCLUSION** | ||
|
||
|
||
|
||
We investigated the data, checking for data unbalancing, visualizing the features, and understanding the relationship between different features. We then investigated two predictive models. The data was split into two parts, a train set, a test set. For the first five base models, we only used the train and test set. | ||
|
||
We started with SVR, Decision Tree, Lasso, Ridge, Random Forrest Regressor and XGBoost Regressor for which we obtained an highest accuracy of 90%, when predicting the target for the test set. | ||
|
||
|
||
|
||
**CONTRIBUTION BY** | ||
|
||
*Pawas Pandey* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pandas | ||
matplotlib | ||
numpy | ||
sklearn | ||
seaborn |