Commit f29baf89 authored by Dr.李's avatar Dr.李

typo fixed

parent 6ac8766d
......@@ -28,7 +28,7 @@ from alphamind.model.linearmodel import ConstLinearModel
from alphamind.model.loader import load_model
from alphamind.model.data_preparing import fetch_data_package
from alphamind.execution.nativeexecutor import NativeExecutor
from alphamind.execution.naiveexecutor import NaiveExecutor
from alphamind.execution.thresholdexecutor import ThresholdExecutor
from alphamind.utilities import alpha_logger
......@@ -55,7 +55,7 @@ __all__ = [
'LinearRegression',
'ConstLinearModel',
'load_model',
'NativeExecutor',
'NaiveExecutor',
'ThresholdExecutor',
'alpha_logger'
]
\ No newline at end of file
......@@ -9,7 +9,7 @@ import pandas as pd
from alphamind.execution.baseexecutor import ExecutorBase
class NativeExecutor(ExecutorBase):
class NaiveExecutor(ExecutorBase):
def __init__(self):
super().__init__()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment