search for: sdbn

Displaying 3 results from an estimated 3 matches for "sdbn".

Did you mean: sdb
2017 Jul 11
2
Click Model Implementation
...odel to enable the implementation of DBN click model as its subclass and more click models classes in the future. DBN model can be implemented as two classes, simplified DBN model class (SDBM) amd the normal DBN class (DBN). Also, as discussed during the meeting earlier, I would be focusing on the SDBN class first. And I was wondering if it'd be recommended to open a small PR with the implementation of the base class as soon as it's ready or just a single PR later complete with the implementation of SDBN model? Thanks, Vivek -------------- next part -------------- An HTML attachment was...
2017 Jul 16
2
Click Model Implementation
> So I think you should go ahead with SDBN, and not worry about the class > hierarchy. Okay, I'll start with the implementation of SDBN class. > What sort of performance constraints are there on the implementation? > Which language are you proposing building this in? Only major performance constraint would be on the training...
2007 Sep 20
8
How are alternate superblocks repaired?
...ck at 32768, Group descriptors at 32769-32773 Given: FS blocksize=4096; primary superblock at=0; 1st alternative superblock at=32768 and size of superblock=1024 <=== Is this correct??? To copy the 1st backup superblock (assuming it is clean) to fix primary superblock: # dd if=/dev/sdb2 of=/dev/sdbn bs=1024 skip=32768 count=1 To copy the primary superblock (assuming it is clean) to fix the 1st backup superblock: # dd if=/dev/sdb2 of=/dev/sdbn bs=1024 seek=32768 count=1 I am leary of using the dd commands to effect the repairs to the alternate superblocks - will they work or hose the filesyst...