File tree Expand file tree Collapse file tree 3 files changed +30
-1
lines changed Expand file tree Collapse file tree 3 files changed +30
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Songbird Changelog
2
2
3
+ ## Version 1.0.3-dev
4
+
3
5
## Version 1.0.2
4
6
Added ability to set random seed for CLI and sets fixed random seeds for qiime2 [ #101 ] ( https://github.com/biocore/songbird/pull/101 )
5
7
Original file line number Diff line number Diff line change @@ -15,6 +15,33 @@ songbird multinomial \
15
15
--batch-size 3 \
16
16
--epochs 10000 \
17
17
--num-random-test-examples 5 \
18
+ --summary-dir summary1 \
19
+ --summary-interval 1
20
+
21
+
22
+ formula=" Depth+Temperature+Salinity+Oxygen"
23
+ songbird multinomial \
24
+ --input-biom $biom \
25
+ --metadata-file $mdfile \
26
+ --formula $formula \
27
+ --min-feature-count 10 \
28
+ --batch-size 3 \
29
+ --epochs 10000 \
30
+ --num-random-test-examples 5 \
31
+ --summary-dir summary2 \
32
+ --summary-interval 1
33
+
34
+
35
+ formula=" Depth+Temperature"
36
+ songbird multinomial \
37
+ --input-biom $biom \
38
+ --metadata-file $mdfile \
39
+ --formula $formula \
40
+ --min-feature-count 10 \
41
+ --batch-size 3 \
42
+ --epochs 10000 \
43
+ --num-random-test-examples 5 \
44
+ --summary-dir summary3 \
18
45
--summary-interval 1
19
46
20
47
# Usage: songbird multinomial [OPTIONS]
Original file line number Diff line number Diff line change 1
1
import warnings
2
2
warnings .filterwarnings ("ignore" , category = FutureWarning )
3
- __version__ = "1.0.3"
3
+ __version__ = "1.0.3-dev "
You can’t perform that action at this time.
0 commit comments