Dmitry Beresnev
commited on
Commit
·
5264534
1
Parent(s):
014e90f
add lin reg and markov chains to gitignore
Browse files- .gitignore +7 -1
- pyproject.toml +3 -0
- src/core/trend_analayzer/__init__.py +0 -0
.gitignore
CHANGED
|
@@ -20,4 +20,10 @@ src/financial_news_bot.egg-info/
|
|
| 20 |
# Ignore logs
|
| 21 |
logs/
|
| 22 |
# ML model files
|
| 23 |
-
ml_models/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
# Ignore logs
|
| 21 |
logs/
|
| 22 |
# ML model files
|
| 23 |
+
ml_models/
|
| 24 |
+
# Ignore hmm result files
|
| 25 |
+
hmm_results/
|
| 26 |
+
# Ignore linear regression (temporary)
|
| 27 |
+
src/core/linear_regression/
|
| 28 |
+
# Ignore markov chains (temporary)
|
| 29 |
+
src/core/markov_chains/
|
pyproject.toml
CHANGED
|
@@ -66,6 +66,9 @@ dependencies = [
|
|
| 66 |
"dotenv>=0.9.9",
|
| 67 |
"keras>=3.11.2",
|
| 68 |
"tensorflow>=2.20.0",
|
|
|
|
|
|
|
|
|
|
| 69 |
]
|
| 70 |
|
| 71 |
[build-system]
|
|
|
|
| 66 |
"dotenv>=0.9.9",
|
| 67 |
"keras>=3.11.2",
|
| 68 |
"tensorflow>=2.20.0",
|
| 69 |
+
"hmmlearn>=0.3.3",
|
| 70 |
+
"xgboost>=3.1.1",
|
| 71 |
+
"optuna>=4.5.0",
|
| 72 |
]
|
| 73 |
|
| 74 |
[build-system]
|
src/core/trend_analayzer/__init__.py
ADDED
|
File without changes
|