diff options
| author | Bobby <[email protected]> | 2022-12-03 22:55:09 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-12-03 22:55:09 -0500 |
| commit | d2550bdbbdd36550380ea07d8335ade7802d0f29 (patch) | |
| tree | 02cc010a5094f26c6ef06e81b5f38cc22ab34c7f /src/windows/plotviewer.py | |
| parent | ecf0f94dad8147c4fe90622fbccbc2df355036be (diff) | |
| parent | 432685c4972870a8119996335f53c08838661b80 (diff) | |
| download | RedditEngagementPrediction-d2550bdbbdd36550380ea07d8335ade7802d0f29.tar.xz RedditEngagementPrediction-d2550bdbbdd36550380ea07d8335ade7802d0f29.zip | |
Merge pull request #14 from luciferreeves/main
Fixed Text Prediction
Diffstat (limited to 'src/windows/plotviewer.py')
| -rw-r--r-- | src/windows/plotviewer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/windows/plotviewer.py b/src/windows/plotviewer.py index da334b6..635befa 100644 --- a/src/windows/plotviewer.py +++ b/src/windows/plotviewer.py @@ -295,7 +295,7 @@ class PlotViewer(customtkinter.CTk): def predict(self): # child window to take input of the post - title, selftext, subreddit, day, hour, distinguished - pred_win = Predict(self) + pred_win = Predict(self, self.model.get()) self.wait_window(pred_win) def train_models(self): |
