Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
A
alpha-mind
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dr.李
alpha-mind
Commits
f57d5587
Commit
f57d5587
authored
Jul 09, 2018
by
wegamekinglc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added svr model to api
parent
1fe4765e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
api.py
alphamind/api.py
+2
-0
__init__.py
alphamind/model/__init__.py
+3
-0
No files found.
alphamind/api.py
View file @
f57d5587
...
...
@@ -43,6 +43,7 @@ from alphamind.model import RandomForestClassifier
from
alphamind.model
import
XGBRegressor
from
alphamind.model
import
XGBClassifier
from
alphamind.model
import
XGBTrainer
from
alphamind.model
import
NvSVRModel
from
alphamind.model
import
load_model
from
alphamind.model.data_preparing
import
fetch_data_package
from
alphamind.model.data_preparing
import
fetch_train_phase
...
...
@@ -104,6 +105,7 @@ __all__ = [
'XGBRegressor'
,
'XGBClassifier'
,
'XGBTrainer'
,
'NvSVRModel'
,
'load_model'
,
'NaiveExecutor'
,
'ThresholdExecutor'
,
...
...
alphamind/model/__init__.py
View file @
f57d5587
...
...
@@ -16,6 +16,8 @@ from alphamind.model.treemodel import XGBRegressor
from
alphamind.model.treemodel
import
XGBClassifier
from
alphamind.model.treemodel
import
XGBTrainer
from
alphamind.model.svm
import
NvSVRModel
from
alphamind.model.loader
import
load_model
...
...
@@ -28,4 +30,5 @@ __all__ = ['LinearRegression',
'XGBRegressor'
,
'XGBClassifier'
,
'XGBTrainer'
,
'NvSVRModel'
,
'load_model'
]
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment