Skip to content

Commit 8cb2a91

Browse files
author
nik
committed
Fix missed imports & working dummy_model example
1 parent 47b522b commit 8cb2a91

File tree

4 files changed

+6
-412
lines changed

4 files changed

+6
-412
lines changed

label_studio_ml/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
from .model import LabelStudioMLBase
2+
13
# Package name
24
package_name = 'label-studio-ml'
35

46
# Package version
5-
__version__ = '1.0.0'
7+
__version__ = '1.0.0'

label_studio_ml/examples/dummy_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import random
22

3-
from label_studio.ml import LabelStudioMLBase
3+
from label_studio_ml import LabelStudioMLBase
44

55

66
class DummyModel(LabelStudioMLBase):

0 commit comments

Comments
 (0)