fakedev9999
fakedev9999
``` opt_dis_adapt = optim.Adam(discriminator.parameters(), lr=args.uda_lr, betas=(0.9, 0.999), weight_decay=0) uda_solver.solve(epoch, discriminator, opt_dis_adapt) ``` In lines 305, 306 in `utils.py`, > UnboundLocalError: local variable 'discriminator' referenced before assignment occurs. Instead of `discriminator`,...
While experimenting via configuration files, I found a bug. The code couldn't properly set the arguments as the configuration file intends. Starting from L177 in train.py, the code should be...
As written in [Google C++ Style Guide: Use of const](https://google.github.io/styleguide/cppguide.html#Use_of_const), indicating the variables that are not changed with `const` keyword makes easier for people to understand how the variable is...
IMO, as what I've suggested in this comment, https://github.com/kroma-network/tachyon/pull/206#discussion_r1433621456. ```c++ template Evals CoeffToExtendedPart(const Domain* domain, const Poly& poly, const F& zeta, ``` this kind of code would be more correct...
https://github.com/kroma-network/tachyon/pull/107#discussion_r1371712489 Above comment is valid since the naming seems inappropriate. But it is out of scope of #107, so will be fixed in later PR.
There are several tests prepared but yet not implemented since extra-agenda transaction related features are under development. After all features need for these tests are implemented, the tests should be...
A member who delegated its governance voting power cannot be an author for an agenda commit. Currently, the logic to check such condition in CSV is missing. Let's add it.
Currently, there are no tests for the commits themselves for CSV. The tests are usually about the sequence of commits, but not about the commits themselves. This might lead to...
As a side effect of #454, when a delegatee is expelled, the delegator's voting power will remain dangling without explicit undelegation. Requiring explicit delegation for delegator after the block where...
In simperby, we only use lowercases for first words of error messages. But, it's missing in the [dev guide](https://github.com/postech-dao/simperby/blob/main/docs/dev.md), so we should add it.