Displaying 3 results from an estimated 3 matches for "input_dir".
Did you mean:
input_dev
2009 Aug 20
3
[PATCH ovirt-node-image] fixes for edit-livecd
Patch set fixes issues with image size increase when using edit-livecd
Also address issue with ext4 root fs
2009 Aug 03
0
[PATCH node-image] Fix edit-livecd to re-create ext2 filesystem each time
...t "df | grep $mp > /dev/null 2>&1 && umount -v $mp"
}
+# Create new ext2 filesystem and copy contents of one into the other
+# Size of ext2 filesystem is same as original size unless size parameter
+# is passed in
+create_ext2fs() {
+ local input_file=$1
+ local input_dir=$2
+ local output_file=$3
+ local output_dir=$4
+ local size_mb=$5
+
+ local size=
+ if [[ -n "$size_mb" ]]; then
+ size=$(( $size_mb * 1024 ))
+ fi
+
+ echo ">>> Mounting old ext3fs"
+ mnt "-t ext2 $input_file -o ro,loop" $input...
2013 Nov 15
1
Inconsistent results between caret+kernlab versions
I'm using caret to assess classifier performance (and it's great!). However, I've found that my results differ between R2.* and R3.* - reported accuracies are reduced dramatically. I suspect that a code change to kernlab ksvm may be responsible (see version 5.16-24 here: http://cran.r-project.org/web/packages/caret/news.html). I get very different results between caret_5.15-61 +