-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/fabriziocosta/GraphEmbed
- Loading branch information
Showing
1 changed file
with
11 additions
and
6 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 |
---|---|---|
|
@@ -45,7 +45,7 @@ You can change the strength of the belief in the supervised information. Values | |
|
||
To set a desired separation strength use -c, to specify the number of neighbors use -k: | ||
|
||
```./graph_embed -i example/prot_expression.csv -t example/target.csv --correlation_transformation -c 5 -k 4``` | ||
```./graph_embed -i example/prot_expression.csv -t example/target.csv --normalization --feature_selection --correlation_transformation -c .8 -k 5 -d 1 -z 8 -l 3 --random_state 2``` | ||
|
||
|
||
## Output | ||
|
@@ -67,15 +67,17 @@ log The program execution log file | |
## Help | ||
|
||
``` | ||
Version: 2.2 | ||
Version: 2.3 | ||
Author: Fabrizio Costa [[email protected]] | ||
Usage: | ||
graph_embed -i <file> -t <file> [-o NAME] | ||
[-c N, --class_confidence=N] [-k N] [-d N] [-z N] [-l N] | ||
[--correlation_transformation] | ||
[--min_threshold=N] [--max_threshold=N] | ||
[--display] [--figure_size=N] [--cmap_name=NAME] [--verbose] | ||
[--correlation_transformation] [--normalization] | ||
[--feature_selection] | ||
[--min_threshold=N] [--max_threshold=N] [--random_state=N] | ||
[--display] [--figure_size=N] [--cmap_name=NAME] | ||
[--verbose] | ||
graph_embed (-h | --help) | ||
graph_embed --version | ||
|
@@ -94,9 +96,12 @@ Options: | |
neighbors of a different class [default: 5] | ||
-l N Number of mutual nearest neighbors that | ||
define outlier instances [default: 3] | ||
--normalization Convert data matrix to normalized matrix. | ||
--feature_selection Select most discriminative features. | ||
--correlation_transformation Convert data matrix to corr coeff matrix. | ||
--min_threshold=N Min num instances per class [default: 5] | ||
--max_threshold=N Max num instances per class [default: 200] | ||
--max_threshold=N Max num instances per class [default: 300] | ||
--random_state=N Random seed [default: 1] | ||
--display Display graphs on terminal. | ||
--figure_size=N Figure size [default: 15]. | ||
--cmap_name=NAME Color scheme [default: gist_ncar]. | ||
|