Skip to content

Commit

Permalink
Doc improvements. v0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ppizarror committed Nov 18, 2024
1 parent a6d75c8 commit 04e691d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions MLStructFP/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
# Basic information
__author__ = 'Pablo Pizarro R.'
__description__ = 'Machine learning structural floor plan dataset'
__keywords__ = ['ml', 'ai', 'floor plan', 'architectural', 'dataset', 'cnn']
__email__ = '[email protected]'
__version__ = '0.7.0'
__keywords__ = ['ml', 'ai', 'floor plan', 'architectural', 'dataset', 'cnn']
__license__ = 'MIT'
__version__ = '0.7.1'

# URL
__url__ = 'https://github.com/MLSTRUCT/MLSTRUCT-FP'
Expand Down
2 changes: 1 addition & 1 deletion MLStructFP/db/_c_point.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
MLSTRUCT-FP - DB - CPOINT
Point component.
Point component (wall joints).
"""

__all__ = ['Point']
Expand Down
2 changes: 1 addition & 1 deletion MLStructFP/db/_c_rect.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
MLSTRUCT-FP - DB - CRECT
Rectangle component.
Rectangle component (wall segment).
"""

__all__ = ['Rect']
Expand Down
5 changes: 3 additions & 2 deletions MLStructFP/db/_floor.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@ class Floor(object):
project_id: int
project_label: str

def __init__(self, floor_id: int, image_path: str, image_scale: NumberType, project_id: int,
project_label: str = '', category: int = 0, category_name: str = '', elevation: bool = False) -> None:
def __init__(self, floor_id: int, image_path: str, image_scale: NumberType,
project_id: int, project_label: str = '', category: int = 0, category_name: str = '',
elevation: bool = False) -> None:
"""
Constructor.
Expand Down

0 comments on commit 04e691d

Please sign in to comment.