tra-algorithm 1.0.0__tar.gz → 1.0.1__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.1}/PKG-INFO +3 -3
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.1}/README.md +2 -2
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.1}/tra_algorithm/version.py +2 -1
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.1/tra_algorithm.egg-info}/PKG-INFO +3 -3
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.1}/LICENSE +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.1}/MANIFEST.in +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.1}/docs/CHANGELOG.md +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.1}/docs/README.md +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.1}/docs/examples/basic_usage.py +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.1}/pyproject.toml +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.1}/requirements.txt +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.1}/setup.cfg +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.1}/setup.py +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.1}/tests/__init__.py +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.1}/tests/test_core.py +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.1}/tests/test_utils.py +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.1}/tra_algorithm/__init__.py +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.1}/tra_algorithm/core.py +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.1}/tra_algorithm/examples.py +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.1}/tra_algorithm/utils.py +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.1}/tra_algorithm.egg-info/SOURCES.txt +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.1}/tra_algorithm.egg-info/dependency_links.txt +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.1}/tra_algorithm.egg-info/not-zip-safe +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.1}/tra_algorithm.egg-info/requires.txt +0 -0
- {tra_algorithm-1.0.0 → tra_algorithm-1.0.1}/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.1
|
|
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
|
|
|
@@ -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
|
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
"""Version information for TRA Algorithm package."""
|
|
2
2
|
|
|
3
|
-
__version__ = "1.0.
|
|
3
|
+
__version__ = "1.0.1"
|
|
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",
|
|
9
10
|
# Future versions will be added here
|
|
10
11
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tra-algorithm
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
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
|
|
|
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
|