Skip to content

Commit 74f7241

Browse files
committed
added cuda flag for GPU prediction
Signed-off-by: Zethson <[email protected]>
1 parent 0aa639d commit 74f7241

File tree

7 files changed

+23
-7
lines changed

7 files changed

+23
-7
lines changed

.cookietemple.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ full_name: Lukas Heumos
1313
1414
project_name: lcep-package
1515
project_short_description: Python package for lcep.
16-
version: 1.1.0
16+
version: 1.2.0
1717
license: MIT
1818
command_line_interface: Click
1919
testing_library: pytest

CHANGELOG.rst

+13
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ Changelog
44

55
This project adheres to `Semantic Versioning <https://semver.org/>`_.
66

7+
1.2.0 (2020-08-28)
8+
------------------
9+
10+
**Added**
11+
12+
* Added flag --cuda and --no-cuda to enable and disable GPU prediction
13+
14+
**Fixed**
15+
16+
**Dependencies**
17+
18+
**Deprecated**
19+
720

821
1.1.0 (2020-08-28)
922
------------------

cookietemple.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.1.0
2+
current_version = 1.2.0
33

44
[bumpversion_files_whitelisted]
55
setup_file = setup.py

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@
5353
# the built documents.
5454
#
5555
# The short X.Y version.
56-
version = '1.1.0'
56+
version = '1.2.0'
5757
# The full version, including alpha/beta/rc tags.
58-
release = '1.1.0'
58+
release = '1.2.0'
5959

6060
# The language for content autogenerated by Sphinx. Refer to documentation
6161
# for a list of supported languages.

lcep_package/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
__author__ = """Lukas Heumos"""
44
__email__ = '[email protected]'
5-
__version__ = '1.1.0'
5+
__version__ = '1.2.0'

lcep_package/cli.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@
1515
@click.command()
1616
@click.option('-i', '--input', required=True, type=str, help='Path to data file to predict.')
1717
@click.option('-m', '--model', type=str, help='Path to an already trained XGBoost model. If not passed a default model will be loaded.')
18+
@click.option('-c/-nc', '--cuda/--no-cuda', type=bool, default=False, help='Whether to enable cuda or not')
1819
@click.option('-o', '--output', type=str, help='Path to write the output to')
19-
def main(input: str, model: str, output: str):
20+
def main(input: str, model: str, cuda: bool, output: str):
2021
"""Console script for lcep-package."""
2122
print(r"""[bold blue]
2223
██  ██████ ███████ ██████ 
@@ -32,6 +33,8 @@ def main(input: str, model: str, output: str):
3233
model = get_xgboost_model(f'{WD}/models/model_28.08.2020_v1.xgb')
3334
else:
3435
model = get_xgboost_model(model)
36+
if cuda:
37+
model.set_param({'predictor': 'gpu_predictor'})
3538
print('[bold blue] Parsing data')
3639
data_to_predict = read_data_to_predict(input)
3740
print('[bold blue] Performing predictions')

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,6 @@ def walker(base, *paths):
7272
test_suite='tests',
7373
tests_require=test_requirements,
7474
url='https://github.com/mlf-core/lcep-package',
75-
version='1.1.0',
75+
version='1.2.0',
7676
zip_safe=False,
7777
)

0 commit comments

Comments
 (0)