Skip to content

Commit

Permalink
🐛fix leading space in docs string
Browse files Browse the repository at this point in the history
  • Loading branch information
lalmei committed Jan 29, 2021
1 parent 806b910 commit 1b285aa
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions src/whylogs/app/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@
import datetime
import hashlib
import json
from pathlib import Path
from typing import List, Optional, Dict, Union, Callable, AnyStr
from typing.io import IO
from pathlib import Path


from tqdm import tqdm
import numpy as np
import pandas as pd
from typing.io import IO


from whylogs.app.writers import Writer
from whylogs.core import DatasetProfile, TrackImage, METADATA_DEFAULT_ATTRIBUTES, TrackBB
Expand Down Expand Up @@ -363,9 +365,10 @@ def log_image(self,

def log_local_dataset(self, root_dir, folder_feature_name="folder_feature", image_feature_transforms=None):
"""
Log a local folder dataset
It will log data from the files, along with structure file data like metadata, and magic numbers.
If the folder has single layer for children folders, this will pick up folder names as a segmented feature
Log a local folder dataset
It will log data from the files, along with structure file data like
metadata, and magic numbers. If the folder has single layer for children
folders, this will pick up folder names as a segmented feature
Args:
root_dir (str): directory where dataset is located.
Expand Down Expand Up @@ -410,9 +413,8 @@ def log_annotation(self, annotation_data):
Log structured annotation data ie. JSON like structures
Args:
annotation_data (TYPE): Description
annotation_data (Dict or List): Description
Returns:
TYPE: Description
Expand Down

0 comments on commit 1b285aa

Please sign in to comment.