Skip to content
This repository was archived by the owner on Nov 15, 2021. It is now read-only.
This repository was archived by the owner on Nov 15, 2021. It is now read-only.

preprocess 구현하기  #26

@eubinean

Description

@eubinean

What?

전처리 로직 구현하기. TODO 표기된 부분만 구현하면 된다!

def augment(df: pd.DataFrame) -> pd.DataFrame:
# TODO implement augmentation.
return df
def parse(df: pd.DataFrame) -> pd.DataFrame:
"""
parse <em> ...</em> to [WISDOM].
:param df:
:return:
"""
# TODO: implement parsing
return df
def normalise(df: pd.DataFrame) -> pd.DataFrame:
"""
1. normalise the emoticons.
2. normalise the spacings.
3. normalise grammatical errors.
:param df:
:return:
"""
# TODO: implement normalisation
return df
def upsample(df: pd.DataFrame) -> pd.DataFrame:
# TODO: implement upsampling
return df

Why?

...

To-do's

Metadata

Metadata

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions