File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,24 @@ report.plot_scores()
38
38
report.plot_features(ntop = 10 )
39
39
```
40
40
41
+ ### Note for Windows
42
+ Windows and Linux multiprocessing are performed differently.
43
+ To run polyssifier in Windows, an extra line of code must be added.
44
+ The below example is for classification, but the same addition must also be made for regression.
45
+
46
+ ``` python
47
+ from polyssifier import poly
48
+ # Load data
49
+ data = np.load(" /path/to/data.npy" )
50
+ label = np.load(" /path/to/labels.npy" )
51
+ # Run analysis
52
+ if name == ' __main__' :
53
+ report = poly(data,label, n_folds = 8 )
54
+ # Plot results
55
+ report.plot_scores()
56
+ report.plot_features(ntop = 10 )
57
+ ```
58
+
41
59
### In the terminal
42
60
``` bash
43
61
poly data.npy label.npy --concurrency 10
You can’t perform that action at this time.
0 commit comments