You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I love snorkel.labeling.filter_unlabeled_dataframe(). I want a pyspark equivalent: snorkel.labeling.filter_unlabeled_spark_rdd or snorkel.labeling.filter_unlabeled_spark_dataframe.
Describe the solution you'd like
Implement the same filtering for pyspark.sql.DataFrames or pyspark.RDDs.
Describe alternatives you've considered
I am just implementing this myself at the moment. I don't see an alternative to this function.
Additional context
The numpy.ndarray in for example L_train returned by SparkLFApplier may have to be serialized into something else so Spark can use it. SparkLFApplier could then optionally return this format, if it makes that easier.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I love
snorkel.labeling.filter_unlabeled_dataframe()
. I want a pyspark equivalent:snorkel.labeling.filter_unlabeled_spark_rdd
orsnorkel.labeling.filter_unlabeled_spark_dataframe
.Describe the solution you'd like
Implement the same filtering for
pyspark.sql.DataFrame
s orpyspark.RDD
s.Describe alternatives you've considered
I am just implementing this myself at the moment. I don't see an alternative to this function.
Additional context
The
numpy.ndarray
in for exampleL_train
returned bySparkLFApplier
may have to be serialized into something else so Spark can use it.SparkLFApplier
could then optionally return this format, if it makes that easier.The text was updated successfully, but these errors were encountered: