Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoiding uses of np.float because that has been removed from the latest numpy. #521

Merged
merged 2 commits into from
Mar 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -213,15 +213,15 @@ def init_coef(self, itype, X, y, s):
if itype == 0:
# clear by zeros
self.coef_ = np.zeros(self.n_sfv_ * self.n_features_,
dtype=np.float)
dtype=float)
elif itype == 1:
# at random
self.coef_ = np.random.randn(self.n_sfv_ * self.n_features_)

elif itype == 2:
# learned by standard LR
self.coef_ = np.empty(self.n_sfv_ * self.n_features_,
dtype=np.float)
dtype=float)
coef = self.coef_.reshape(self.n_sfv_, self.n_features_)

clr = LogisticRegression(C=self.C, penalty='l2',
Expand All @@ -232,7 +232,7 @@ def init_coef(self, itype, X, y, s):
elif itype == 3:
# learned by standard LR
self.coef_ = np.empty(self.n_sfv_ * self.n_features_,
dtype=np.float)
dtype=float)
coef = self.coef_.reshape(self.n_sfv_, self.n_features_)

for i in range(self.n_sfv_):
Expand Down Expand Up @@ -276,7 +276,7 @@ def fit(self, X, y, ns=N_S, itype=0, **kwargs):
# set instance variables
self.n_s_ = ns
self.n_sfv_ = np.max(s) + 1
self.c_s_ = np.array([np.sum(s == si).astype(np.float)
self.c_s_ = np.array([np.sum(s == si).astype(float)
for si in range(self.n_sfv_)])
self.n_features_ = X.shape[1]
self.n_samples_ = X.shape[0]
Expand Down
Loading