Skip to content

Commit

Permalink
(#8) resolve issue with dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
SaintAngeLs committed Jan 14, 2025
1 parent 8cfa1c2 commit 03dc43c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 61 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def get_version():

def increment_version(version):
major, minor, patch = map(int, version.split("."))
patch += 1
patch += 2
return f"{major}.{minor}.{patch}"

current_version = get_version()
Expand Down
2 changes: 1 addition & 1 deletion src/FeatureFlex/feature_selector.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import torch.nn as nn
import numpy as np
import shap
from model_optimizer import ModelOptimizer
from .model_optimizer import ModelOptimizer
from sklearn.ensemble import RandomForestClassifier


Expand Down
Loading

0 comments on commit 03dc43c

Please sign in to comment.