dragon-ml-toolbox 1.4.7__tar.gz → 1.4.8__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.

Potentially problematic release.


This version of dragon-ml-toolbox might be problematic. Click here for more details.

Files changed (24) hide show
  1. {dragon_ml_toolbox-1.4.7/dragon_ml_toolbox.egg-info → dragon_ml_toolbox-1.4.8}/PKG-INFO +1 -1
  2. {dragon_ml_toolbox-1.4.7 → dragon_ml_toolbox-1.4.8/dragon_ml_toolbox.egg-info}/PKG-INFO +1 -1
  3. {dragon_ml_toolbox-1.4.7 → dragon_ml_toolbox-1.4.8}/ml_tools/MICE_imputation.py +1 -1
  4. {dragon_ml_toolbox-1.4.7 → dragon_ml_toolbox-1.4.8}/ml_tools/data_exploration.py +1 -1
  5. {dragon_ml_toolbox-1.4.7 → dragon_ml_toolbox-1.4.8}/ml_tools/ensemble_learning.py +0 -1
  6. {dragon_ml_toolbox-1.4.7 → dragon_ml_toolbox-1.4.8}/ml_tools/handle_excel.py +1 -1
  7. {dragon_ml_toolbox-1.4.7 → dragon_ml_toolbox-1.4.8}/ml_tools/logger.py +1 -1
  8. {dragon_ml_toolbox-1.4.7 → dragon_ml_toolbox-1.4.8}/ml_tools/particle_swarm_optimization.py +0 -1
  9. {dragon_ml_toolbox-1.4.7 → dragon_ml_toolbox-1.4.8}/pyproject.toml +1 -1
  10. {dragon_ml_toolbox-1.4.7 → dragon_ml_toolbox-1.4.8}/LICENSE +0 -0
  11. {dragon_ml_toolbox-1.4.7 → dragon_ml_toolbox-1.4.8}/LICENSE-THIRD-PARTY.md +0 -0
  12. {dragon_ml_toolbox-1.4.7 → dragon_ml_toolbox-1.4.8}/README.md +0 -0
  13. {dragon_ml_toolbox-1.4.7 → dragon_ml_toolbox-1.4.8}/dragon_ml_toolbox.egg-info/SOURCES.txt +0 -0
  14. {dragon_ml_toolbox-1.4.7 → dragon_ml_toolbox-1.4.8}/dragon_ml_toolbox.egg-info/dependency_links.txt +0 -0
  15. {dragon_ml_toolbox-1.4.7 → dragon_ml_toolbox-1.4.8}/dragon_ml_toolbox.egg-info/requires.txt +0 -0
  16. {dragon_ml_toolbox-1.4.7 → dragon_ml_toolbox-1.4.8}/dragon_ml_toolbox.egg-info/top_level.txt +0 -0
  17. {dragon_ml_toolbox-1.4.7 → dragon_ml_toolbox-1.4.8}/ml_tools/VIF_factor.py +0 -0
  18. {dragon_ml_toolbox-1.4.7 → dragon_ml_toolbox-1.4.8}/ml_tools/__init__.py +0 -0
  19. {dragon_ml_toolbox-1.4.7 → dragon_ml_toolbox-1.4.8}/ml_tools/datasetmaster.py +0 -0
  20. {dragon_ml_toolbox-1.4.7 → dragon_ml_toolbox-1.4.8}/ml_tools/pytorch_models.py +0 -0
  21. {dragon_ml_toolbox-1.4.7 → dragon_ml_toolbox-1.4.8}/ml_tools/trainer.py +0 -0
  22. {dragon_ml_toolbox-1.4.7 → dragon_ml_toolbox-1.4.8}/ml_tools/utilities.py +0 -0
  23. {dragon_ml_toolbox-1.4.7 → dragon_ml_toolbox-1.4.8}/ml_tools/vision_helpers.py +0 -0
  24. {dragon_ml_toolbox-1.4.7 → dragon_ml_toolbox-1.4.8}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dragon-ml-toolbox
3
- Version: 1.4.7
3
+ Version: 1.4.8
4
4
  Summary: A collection of tools for data science and machine learning projects
5
5
  Author-email: Karl Loza <luigiloza@gmail.com>
6
6
  License-Expression: MIT
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dragon-ml-toolbox
3
- Version: 1.4.7
3
+ Version: 1.4.8
4
4
  Summary: A collection of tools for data science and machine learning projects
5
5
  Author-email: Karl Loza <luigiloza@gmail.com>
6
6
  License-Expression: MIT
@@ -3,7 +3,7 @@ import miceforest as mf
3
3
  import os
4
4
  import matplotlib.pyplot as plt
5
5
  import numpy as np
6
- from ml_tools.utilities import load_dataframe, list_csv_paths, sanitize_filename, _script_info, merge_dataframes, save_dataframe, threshold_binary_values
6
+ from .utilities import load_dataframe, list_csv_paths, sanitize_filename, _script_info, merge_dataframes, save_dataframe, threshold_binary_values
7
7
  from plotnine import ggplot, labs, theme, element_blank # type: ignore
8
8
  from typing import Optional
9
9
 
@@ -7,7 +7,7 @@ from IPython.display import clear_output
7
7
  import time
8
8
  from typing import Union, Literal, Dict, Tuple, List
9
9
  import os
10
- from ml_tools.utilities import sanitize_filename, _script_info
10
+ from .utilities import sanitize_filename, _script_info
11
11
  import re
12
12
 
13
13
 
@@ -7,7 +7,6 @@ from matplotlib import rcdefaults
7
7
 
8
8
  import os
9
9
  from typing import Literal, Union, Optional, Iterator, Tuple
10
- import joblib
11
10
 
12
11
  from imblearn.over_sampling import ADASYN, SMOTE, RandomOverSampler
13
12
  from imblearn.under_sampling import RandomUnderSampler
@@ -2,7 +2,7 @@ import os
2
2
  from openpyxl import load_workbook, Workbook
3
3
  import pandas as pd
4
4
  from typing import List, Optional
5
- from utilities import _script_info, sanitize_filename
5
+ from .utilities import _script_info, sanitize_filename
6
6
 
7
7
 
8
8
  __all__ = [
@@ -5,7 +5,7 @@ import pandas as pd
5
5
  from openpyxl.styles import Font, PatternFill
6
6
  import traceback
7
7
  import json
8
- from ml_tools.utilities import sanitize_filename, _script_info
8
+ from .utilities import sanitize_filename, _script_info
9
9
 
10
10
 
11
11
  __all__ = [
@@ -1,6 +1,5 @@
1
1
  import numpy as np
2
2
  import os
3
- import joblib
4
3
  import xgboost as xgb
5
4
  import lightgbm as lgb
6
5
  from sklearn.ensemble import HistGradientBoostingClassifier, HistGradientBoostingRegressor
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "dragon-ml-toolbox"
3
- version = "1.4.7"
3
+ version = "1.4.8"
4
4
  description = "A collection of tools for data science and machine learning projects"
5
5
  authors = [
6
6
  { name = "Karl Loza", email = "luigiloza@gmail.com" }