nonzeroexit commited on
Commit
848033d
·
verified ·
1 Parent(s): 3a814dc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -15,7 +15,7 @@ def extract_features(sequence):
15
 
16
 
17
  # Normalize with pre-trained scaler (avoid fitting new data)
18
- normalized_features = scaler.transform([aac])
19
 
20
  return normalized_features
21
 
 
15
 
16
 
17
  # Normalize with pre-trained scaler (avoid fitting new data)
18
+ normalized_features = scaler.fit_transform([aac])
19
 
20
  return normalized_features
21