Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
macaon2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexis Nasr
macaon2
Commits
c81ac64d
Commit
c81ac64d
authored
8 years ago
by
Marjorie Armando
Browse files
Options
Downloads
Patches
Plain Diff
generate train and test files, generate cff, predict test's forms' classes
parent
d402d7ad
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
maca_morpho/src/maca_morpho_context.h
+41
-0
41 additions, 0 deletions
maca_morpho/src/maca_morpho_context.h
with
41 additions
and
0 deletions
maca_morpho/src/maca_morpho_context.h
0 → 100644
+
41
−
0
View file @
c81ac64d
#ifndef __MACA_MORPHO_CONTEXT__
#define __MACA_MORPHO_CONTEXT__
#include
"mcd.h"
#include
<stdlib.h>
#define DEFAULT_FPLM_FILENAME "fplm"
typedef
struct
{
int
help
;
int
verbose
;
int
debug_mode
;
int
fplm_test_percent
;
char
*
program_name
;
char
*
fplm_filename
;
char
*
language
;
char
*
maca_data_path
;
char
*
fm_filename
;
char
*
features_filename
;
char
*
cfw_filename
;
char
*
class_name
;
}
context
;
context
*
context_new
(
void
);
void
context_free
(
context
*
ctx
);
context
*
context_read_options
(
int
argc
,
char
*
argv
[]);
void
context_general_help_message
(
context
*
ctx
);
void
context_language_help_message
(
context
*
ctx
);
void
context_fplm_help_message
(
context
*
ctx
);
void
context_maca_data_path_help_message
(
context
*
ctx
);
void
context_features_filename_help_message
(
context
*
ctx
);
void
context_weights_matrix_filename_help_message
(
context
*
ctx
);
void
context_features_model_help_message
(
context
*
ctx
);
void
context_class_help_message
(
context
*
ctx
);
void
context_fplm_test_percent_help_message
(
context
*
ctx
);
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment