tra-algorithm 1.0.0__tar.gz → 1.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {tra_algorithm-1.0.0/tra_algorithm.egg-info → tra_algorithm-1.0.2}/PKG-INFO +10 -10
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.2}/README.md +9 -9
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.2}/tra_algorithm/version.py +3 -1
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.2/tra_algorithm.egg-info}/PKG-INFO +10 -10
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.2}/LICENSE +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.2}/MANIFEST.in +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.2}/docs/CHANGELOG.md +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.2}/docs/README.md +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.2}/docs/examples/basic_usage.py +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.2}/pyproject.toml +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.2}/requirements.txt +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.2}/setup.cfg +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.2}/setup.py +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.2}/tests/__init__.py +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.2}/tests/test_core.py +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.2}/tests/test_utils.py +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.2}/tra_algorithm/__init__.py +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.2}/tra_algorithm/core.py +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.2}/tra_algorithm/examples.py +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.2}/tra_algorithm/utils.py +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.2}/tra_algorithm.egg-info/SOURCES.txt +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.2}/tra_algorithm.egg-info/dependency_links.txt +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.2}/tra_algorithm.egg-info/not-zip-safe +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.2}/tra_algorithm.egg-info/requires.txt +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.2}/tra_algorithm.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tra-algorithm
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: Track/Rail Algorithm (TRA) - A novel machine learning algorithm for dynamic model selection
|
|
5
5
|
Home-page: https://github.com/eswaroy/tra_algorithm
|
|
6
6
|
Author: Dasari Ranga Eswar
|
|
@@ -73,8 +73,8 @@ pip install tra-algorithm
|
|
|
73
73
|
For development installation:
|
|
74
74
|
|
|
75
75
|
```bash
|
|
76
|
-
git clone https://github.com/
|
|
77
|
-
cd
|
|
76
|
+
git clone https://github.com/eswaroy/tra_algorithm.git
|
|
77
|
+
cd tra_algorithm
|
|
78
78
|
pip install -e ".[dev]"
|
|
79
79
|
```
|
|
80
80
|
|
|
@@ -88,7 +88,7 @@ from sklearn.datasets import make_classification
|
|
|
88
88
|
from sklearn.model_selection import train_test_split
|
|
89
89
|
|
|
90
90
|
# Create sample data
|
|
91
|
-
X, y = make_classification(n_samples=1000, n_features=20, n_classes=3, random_state=42)
|
|
91
|
+
X, y = make_classification(n_samples=1000, n_features=20, n_classes=3, n_informative=3, random_state=42)
|
|
92
92
|
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)
|
|
93
93
|
|
|
94
94
|
# Initialize and train TRA
|
|
@@ -272,17 +272,17 @@ If you use TRA Algorithm in your research, please cite:
|
|
|
272
272
|
```bibtex
|
|
273
273
|
@software{tra_algorithm,
|
|
274
274
|
title={TRA Algorithm: Track/Rail Algorithm for Dynamic Ensemble Learning},
|
|
275
|
-
author={
|
|
276
|
-
year={
|
|
277
|
-
url={https://github.com/
|
|
275
|
+
author={Dasari Ranga Eswar},
|
|
276
|
+
year={2025},
|
|
277
|
+
url={https://github.com/eswaroy/tra_algorithm}
|
|
278
278
|
}
|
|
279
279
|
```
|
|
280
280
|
|
|
281
281
|
## Support
|
|
282
282
|
|
|
283
|
-
- 📧 Email:
|
|
284
|
-
- 🐛 Issues: [GitHub Issues](https://github.com/
|
|
285
|
-
- 💬 Discussions: [GitHub Discussions](https://github.com/
|
|
283
|
+
- 📧 Email: rangaeswar890@gmail.com
|
|
284
|
+
- 🐛 Issues: [GitHub Issues](https://github.com/eswaroy/tra_algorithm/issues)
|
|
285
|
+
- 💬 Discussions: [GitHub Discussions](https://github.com/eswaroy/tra_algorithm/discussions)
|
|
286
286
|
|
|
287
287
|
## Acknowledgments
|
|
288
288
|
|
|
@@ -31,8 +31,8 @@ pip install tra-algorithm
|
|
|
31
31
|
For development installation:
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
|
-
git clone https://github.com/
|
|
35
|
-
cd
|
|
34
|
+
git clone https://github.com/eswaroy/tra_algorithm.git
|
|
35
|
+
cd tra_algorithm
|
|
36
36
|
pip install -e ".[dev]"
|
|
37
37
|
```
|
|
38
38
|
|
|
@@ -46,7 +46,7 @@ from sklearn.datasets import make_classification
|
|
|
46
46
|
from sklearn.model_selection import train_test_split
|
|
47
47
|
|
|
48
48
|
# Create sample data
|
|
49
|
-
X, y = make_classification(n_samples=1000, n_features=20, n_classes=3, random_state=42)
|
|
49
|
+
X, y = make_classification(n_samples=1000, n_features=20, n_classes=3, n_informative=3, random_state=42)
|
|
50
50
|
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)
|
|
51
51
|
|
|
52
52
|
# Initialize and train TRA
|
|
@@ -230,17 +230,17 @@ If you use TRA Algorithm in your research, please cite:
|
|
|
230
230
|
```bibtex
|
|
231
231
|
@software{tra_algorithm,
|
|
232
232
|
title={TRA Algorithm: Track/Rail Algorithm for Dynamic Ensemble Learning},
|
|
233
|
-
author={
|
|
234
|
-
year={
|
|
235
|
-
url={https://github.com/
|
|
233
|
+
author={Dasari Ranga Eswar},
|
|
234
|
+
year={2025},
|
|
235
|
+
url={https://github.com/eswaroy/tra_algorithm}
|
|
236
236
|
}
|
|
237
237
|
```
|
|
238
238
|
|
|
239
239
|
## Support
|
|
240
240
|
|
|
241
|
-
- 📧 Email:
|
|
242
|
-
- 🐛 Issues: [GitHub Issues](https://github.com/
|
|
243
|
-
- 💬 Discussions: [GitHub Discussions](https://github.com/
|
|
241
|
+
- 📧 Email: rangaeswar890@gmail.com
|
|
242
|
+
- 🐛 Issues: [GitHub Issues](https://github.com/eswaroy/tra_algorithm/issues)
|
|
243
|
+
- 💬 Discussions: [GitHub Discussions](https://github.com/eswaroy/tra_algorithm/discussions)
|
|
244
244
|
|
|
245
245
|
## Acknowledgments
|
|
246
246
|
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
"""Version information for TRA Algorithm package."""
|
|
2
2
|
|
|
3
|
-
__version__ = "1.0.
|
|
3
|
+
__version__ = "1.0.2"
|
|
4
4
|
__version_info__ = tuple(int(i) for i in __version__.split('.'))
|
|
5
5
|
|
|
6
6
|
# Version history
|
|
7
7
|
VERSION_HISTORY = {
|
|
8
8
|
"1.0.0": "Initial release with OptimizedTRA algorithm",
|
|
9
|
+
"1.0.1": "README and documentation update",
|
|
10
|
+
"1.0.2": "README and install instructions update",
|
|
9
11
|
# Future versions will be added here
|
|
10
12
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tra-algorithm
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: Track/Rail Algorithm (TRA) - A novel machine learning algorithm for dynamic model selection
|
|
5
5
|
Home-page: https://github.com/eswaroy/tra_algorithm
|
|
6
6
|
Author: Dasari Ranga Eswar
|
|
@@ -73,8 +73,8 @@ pip install tra-algorithm
|
|
|
73
73
|
For development installation:
|
|
74
74
|
|
|
75
75
|
```bash
|
|
76
|
-
git clone https://github.com/
|
|
77
|
-
cd
|
|
76
|
+
git clone https://github.com/eswaroy/tra_algorithm.git
|
|
77
|
+
cd tra_algorithm
|
|
78
78
|
pip install -e ".[dev]"
|
|
79
79
|
```
|
|
80
80
|
|
|
@@ -88,7 +88,7 @@ from sklearn.datasets import make_classification
|
|
|
88
88
|
from sklearn.model_selection import train_test_split
|
|
89
89
|
|
|
90
90
|
# Create sample data
|
|
91
|
-
X, y = make_classification(n_samples=1000, n_features=20, n_classes=3, random_state=42)
|
|
91
|
+
X, y = make_classification(n_samples=1000, n_features=20, n_classes=3, n_informative=3, random_state=42)
|
|
92
92
|
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)
|
|
93
93
|
|
|
94
94
|
# Initialize and train TRA
|
|
@@ -272,17 +272,17 @@ If you use TRA Algorithm in your research, please cite:
|
|
|
272
272
|
```bibtex
|
|
273
273
|
@software{tra_algorithm,
|
|
274
274
|
title={TRA Algorithm: Track/Rail Algorithm for Dynamic Ensemble Learning},
|
|
275
|
-
author={
|
|
276
|
-
year={
|
|
277
|
-
url={https://github.com/
|
|
275
|
+
author={Dasari Ranga Eswar},
|
|
276
|
+
year={2025},
|
|
277
|
+
url={https://github.com/eswaroy/tra_algorithm}
|
|
278
278
|
}
|
|
279
279
|
```
|
|
280
280
|
|
|
281
281
|
## Support
|
|
282
282
|
|
|
283
|
-
- 📧 Email:
|
|
284
|
-
- 🐛 Issues: [GitHub Issues](https://github.com/
|
|
285
|
-
- 💬 Discussions: [GitHub Discussions](https://github.com/
|
|
283
|
+
- 📧 Email: rangaeswar890@gmail.com
|
|
284
|
+
- 🐛 Issues: [GitHub Issues](https://github.com/eswaroy/tra_algorithm/issues)
|
|
285
|
+
- 💬 Discussions: [GitHub Discussions](https://github.com/eswaroy/tra_algorithm/discussions)
|
|
286
286
|
|
|
287
287
|
## Acknowledgments
|
|
288
288
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|