Gian-Carlo Pascutto
Gian-Carlo Pascutto
When browsing the demos on egui.rs, the font rendering is extremely fuzzy and text is hard to read. **To Reproduce** Browse to https://www.egui.rs using Firefox (Nightly) on Linux, using X11,...
I'm adapting https://github.com/gcp/rchesspgn to use this PGN viewer. One issue that I hit is that the amalgamated .js file in the dist/ dir defines 'use strict', but then tries to...
Continuing from #2997. I updated to Linux 5.16 release. ```rr record bin/pkeys``` + ```rr replay``` now gives (on rr master): ``` (rr) cont Continuing. [FATAL ../src/ReplaySession.cc:626:enter_syscall()] (task 43946 (rec:43943) at...
normalize_dimensions reconstructs the Space() to a normalized one but doesn't copy the user set prior, which as a result defaults back to "uniform".
This is defaulted (on GCC-like platforms): https://github.com/glinscott/leela-chess/blob/master/CMakeLists.txt#L72 Which is missing NDEBUG: https://github.com/glinscott/leela-chess/blob/master/CMakeLists.txt#L68 Now, the optimization flags in the default config are lowered a bit too, so I'm not sure this...
The display of NP / IF / TSS / FTP / Weight uses the cycling FTP (for the orange, adjustable display) even in run segments. Changing the FTP there also...
Peak Pace/HR/Power distances are currently shared among activities. It would be more useful if they were split between e.g. swim/run/bike. Specifically, I don't care about my mile time in the...
Calling Ranger21 with mostly default parameters: ``` optimizer = ranger21.Ranger21( net.parameters(), lr=0.001, num_epochs=50, weight_decay=1e-5, num_batches_per_epoch=len(train_loader) ) ``` Training seems fine for half a day with decent progress on all loss...
Add MES and PVRS information theory based acquisition functions, based on the papers and implementations in bayes-skopt (bask). Extend the gp_hedge to include Max-value Entropy Search. Change optimizer selections to...
``` self.db = rocksdb.DB("test.db", rocksdb.Options(max_open_files=100)) it = self.db.iteritems() it.seek_to_first() while True: next(it) ``` This will eventually use up all memory (for a large DB).