-
Notifications
You must be signed in to change notification settings - Fork 12
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
1 parent
f4117e4
commit bd06be9
Showing
10 changed files
with
28 additions
and
64 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
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
24 changes: 6 additions & 18 deletions
24
data_extractor/code/model_pipeline/model_pipeline/__init__.py
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 |
---|---|---|
@@ -1,21 +1,9 @@ | ||
from .config_farm_train import ( | ||
FileConfig, | ||
InferConfig, | ||
MLFlowConfig, | ||
ModelConfig, | ||
ProcessorConfig, | ||
TokenizerConfig, | ||
TrainingConfig, | ||
) | ||
from .config_qa_farm_train import ( | ||
QAFileConfig, | ||
QAInferConfig, | ||
QAMLFlowConfig, | ||
QAModelConfig, | ||
QAProcessorConfig, | ||
QATokenizerConfig, | ||
QATrainingConfig, | ||
) | ||
from .config_farm_train import (FileConfig, InferConfig, MLFlowConfig, | ||
ModelConfig, ProcessorConfig, TokenizerConfig, | ||
TrainingConfig) | ||
from .config_qa_farm_train import (QAFileConfig, QAInferConfig, QAMLFlowConfig, | ||
QAModelConfig, QAProcessorConfig, | ||
QATokenizerConfig, QATrainingConfig) | ||
from .farm_trainer import FARMTrainer | ||
from .qa_farm_trainer import QAFARMTrainer | ||
from .trainer_optuna import TrainerOptuna |
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
11 changes: 2 additions & 9 deletions
11
data_extractor/code/model_pipeline/model_pipeline/optuna_hyp.py
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
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 |
---|---|---|
|
@@ -11,7 +11,6 @@ | |
|
||
import config | ||
import pandas as pd | ||
|
||
# TODO: | ||
from globals import * | ||
from HTMLDirectory import * | ||
|
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 |
---|---|---|
@@ -1,7 +1,6 @@ | ||
import shutil | ||
import sys | ||
import traceback | ||
|
||
# types | ||
import typing | ||
from pathlib import Path | ||
|
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
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
import shutil | ||
|
||
# types | ||
import typing | ||
from pathlib import Path | ||
|
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