forked from winstonwzhang/TMJPI
-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit a30bab9
Showing
1 changed file
with
32 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,32 @@ | ||
Usage Information: | ||
|
||
DSCI_train | ||
Input: | ||
- path to folder containing 4 .csv or .xlsx files. Number of rows in each file must be the same. These are the training patient features. | ||
- .csv or .xlsx file containing Articular Fossa features. Name of file must contain either "af" or "Articular" substrings. | ||
- .csv or .xlsx file containing Biological features. Name of file must contain either "bl" or "Biological" substrings. | ||
- .csv or .xlsx file containing Clinical features. Name of file must contain either "cl" or "Clinical" substrings. | ||
- .csv or .xlsx file containing Condyle Trabecular features. Name of file must contain either "ct" or "Condyle" substrings. | ||
|
||
Output: | ||
- file named "LUPI_model.mat" that contains the best performing ensemble of models trained from the input features. | ||
|
||
Example usage: | ||
./DSCI_train [Path to folder containing 4 .csv or .xlsx files] | ||
|
||
|
||
|
||
DSCI_predict | ||
Input: | ||
- path to folder containing 4 .csv or .xlsx files. Number of rows in each file must be the same. These are the testing patient features. | ||
- .csv or .xlsx file containing Articular Fossa features. Name of file must contain either "af" or "Articular" substrings. | ||
- .csv or .xlsx file containing Biological features. Name of file must contain either "bl" or "Biological" substrings. | ||
- .csv or .xlsx file containing Clinical features. Name of file must contain either "cl" or "Clinical" substrings. | ||
- .csv or .xlsx file containing Condyle Trabecular features. Name of file must contain either "ct" or "Condyle" substrings. | ||
- path to previously trained "LUPI_model.mat" file. | ||
|
||
Output: | ||
- file named "LUPI_pred.mat" that contains the prediction (either 1 or 0 for OA or non-OA) for each testing patient. | ||
|
||
Example usage: | ||
./DSCI_predict [Path to folder containing 4 .csv or .xlsx files] [Path to model file "LUPI_model.mat"] |