diff --git a/semanticlabeling/__init__.py b/semanticlabeling/__init__.py index 78c6ee5..bfe5ec0 100644 --- a/semanticlabeling/__init__.py +++ b/semanticlabeling/__init__.py @@ -5,11 +5,18 @@ class ColumnType(Enum): Str = 'string' AtomicToken = 'atomic token' # must not contain white spaces + Categories = 'categories' Int = 'integer' Real = 'real' + Float = 'float' Boolean = 'boolean' Byte = 'byte' Date = 'date' DateTime = 'date time' DateTimeStamp = 'date time stamp' + Text = 'text' Time = 'time' + ID = 'ID' + Lat = 'lat' + Lon = 'lon' + Unknown = 'unknown'