Skip to content
Snippets Groups Projects
Commit 8ae1b5cb authored by Nicolas Barthes's avatar Nicolas Barthes
Browse files

fixed datasets folder into Report/

parent dea6c67b
No related branches found
No related tags found
No related merge requests found
* # git ignore tous les fichiers
!.gitignore # sauf celui-ci
\ No newline at end of file
...@@ -305,7 +305,7 @@ elif labels: ...@@ -305,7 +305,7 @@ elif labels:
#### Strategy 1 #### Strategy 1
case 'random': case 'random':
selection_number = scores.number_input('How many samples per cluster?', selection_number = scores.number_input('How many samples per cluster?',
min_value = 1, step=1, value = 3) min_value = 1, step=1, value = round(n_samples*0.1))
s = np.array(labels)[np.where(np.array(labels) !='Non clustered')[0]] s = np.array(labels)[np.where(np.array(labels) !='Non clustered')[0]]
for i in np.unique(s): for i in np.unique(s):
C = np.where(np.array(labels) == i)[0] C = np.where(np.array(labels) == i)[0]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment