-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"EmptyPoisonAttacker": { | ||
}, | ||
"RandomPoisonAttack": { | ||
"n_edges_percent": ["n_edges_percent", "float", 0.1, {"min": 0.0001, "step": 0.01}, "?"] | ||
}, | ||
"MetaAttackFull":{ | ||
"lambda_": ["Lambda", "float", 0.5, {"min": 0, "max": 1, "step": 0.05}, "lambda coef - paper"], | ||
"train_iters": ["Train iters (surrogate)", "int", 200, {"min": 0, "step": 1}, "Trainig iterations for surrogate model"], | ||
"attack_structure": ["Attack structure", "bool", true, {}, "whether change graph structure with attack or not"], | ||
"attack_features": ["Attack features", "bool", false, {}, "whether change node features with attack or not"] | ||
}, | ||
"MetaAttackApprox":{ | ||
"lambda_": ["Lambda", "float", 0.5, {"min": 0, "max": 1, "step": 0.05}, "lambda coef - paper"], | ||
"train_iters": ["Train iters (surrogate)", "int", 200, {"min": 0, "step": 1}, "Trainig iterations for surrogate model"], | ||
"attack_structure": ["Attack structure", "bool", true, {}, "whether change graph structure with attack or not"], | ||
"attack_features": ["Attack features", "bool", false, {}, "whether change node features with attack or not"] | ||
} | ||
} | ||
|