Skip to content

Commit 13eeebe

Browse files
committed
add description to getDataFrames
1 parent d077008 commit 13eeebe

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = edge-ml
3-
version = 0.2.1
3+
version = 0.2.2
44
author = KIT/TECO
55
autor_email = info@edge-ml.org
66
description = Python library of edge-ml.org: end-to-end machine learning for embedded devices

src/edgeml/edgeml.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,11 @@ def __extractLabels(dataset, labeling: str=None):
6767
return (labeling, labelSet, labelIds)
6868

6969
#
70-
# Returns a list of Pandas.DataFrames generated from the dataset
70+
# Returns a list of Pandas.DataFrames generated from the datasets in the project
71+
# Each dataframe corresponds to a single dataset in the project
72+
# For each dataset only with the given labeling labeled parts are included in the dataframes
73+
# If no labeling is provided, first labeling with a valid label on part of the dataset will be used for that dataset
74+
# In this case different datasets may have different labelings as a result in the returned list
7175
# @param {string} url - The url of the backend server
7276
# @param {string} key - The Device-Api-Key
7377
# @param {string} labeling - Labeling used to generate the dataframes

0 commit comments

Comments
 (0)