Tyler Burns commited on
Commit
aab8e56
1 Parent(s): bac21e8

setting seed

Browse files
Files changed (2) hide show
  1. app.py +3 -0
  2. flycheck_app.py +3 -0
app.py CHANGED
@@ -9,6 +9,9 @@ import plotly.express as px
9
  import re
10
  import sklearn.cluster as cluster
11
 
 
 
 
12
  # The search bar
13
  keywords = st.text_input('Enter your search', 'How to use ChatGPT')
14
 
 
9
  import re
10
  import sklearn.cluster as cluster
11
 
12
+ # Set a seed
13
+ np.random.seed(42)
14
+
15
  # The search bar
16
  keywords = st.text_input('Enter your search', 'How to use ChatGPT')
17
 
flycheck_app.py CHANGED
@@ -9,6 +9,9 @@ import plotly.express as px
9
  import re
10
  import sklearn.cluster as cluster
11
 
 
 
 
12
  # The search bar
13
  keywords = st.text_input('Enter your search', 'How to use ChatGPT')
14
 
 
9
  import re
10
  import sklearn.cluster as cluster
11
 
12
+ # Set a seed
13
+
14
+
15
  # The search bar
16
  keywords = st.text_input('Enter your search', 'How to use ChatGPT')
17