Skip to content
This repository was archived by the owner on Nov 8, 2022. It is now read-only.

Commit 23519bd

Browse files
author
Izsak, Peter
committed
* Added Transformer base model
* Added Sequence classifier (Transformer) * Added GLUE loaders and procedure * Added Token classification (Transformer)
1 parent 1fbcb90 commit 23519bd

22 files changed

+2353
-266
lines changed

doc/source/conf.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616
# ******************************************************************************
17+
# flake8: noqa
1718
import os
1819
import sys
1920

@@ -131,7 +132,7 @@
131132

132133

133134
# -- Options for HTML output ----------------------------------------------
134-
import sphinx_rtd_theme
135+
import sphinx_rtd_theme # noqa: E402
135136

136137
# The theme to use for HTML and HTML Help pages. See the documentation for
137138
# a list of builtin themes.

nlp_architect/api/base.py

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# ******************************************************************************
2+
# Copyright 2017-2019 Intel Corporation
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
# ******************************************************************************
16+
import logging
17+
from typing import Union, List, Dict
18+
19+
logger = logging.getLogger(__name__)
20+
21+
22+
class ModelAPI:
23+
""" Base class for a model API implementation
24+
Implementing classes must provide a default model and/or a path to a model
25+
26+
Args:
27+
model_path (str): path to a trained model
28+
29+
run method must return
30+
"""
31+
default_model = None # pre-trained model from library
32+
33+
def __init__(self, model_path: str = None):
34+
if model_path is not None:
35+
self.load_model(model_path)
36+
elif self.default_model is not None:
37+
# get default model and load it
38+
# TODO: implement model integration
39+
raise NotImplementedError
40+
else:
41+
logger.error("Not model provided or not pre-trained model configured")
42+
43+
def load_model(self, model_path: str):
44+
raise NotImplementedError
45+
46+
def run(self, inputs: Union[str, List[str]]) -> Dict:
47+
raise NotImplementedError
48+
49+
def __call__(self, inputs: Union[str, List[str]]):
50+
return self.run(inputs)

nlp_architect/cli/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import argparse
1717

1818
# register all procedures by importing
19-
import nlp_architect.procedures
19+
import nlp_architect.procedures # noqa: F401
2020
from nlp_architect.cli.cli_commands import (cli_process_cmd, cli_run_cmd,
2121
cli_serve_cmd, cli_solution_cmd,
2222
cli_train_cmd)

nlp_architect/cmd.py

-251
This file was deleted.

0 commit comments

Comments
 (0)