We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AnonymizedFaker
In order to work directly with an sdtype (eg: 'job' as sdtype), it would be usefull to have the following two utility functions in AnonymizedFaker:
sdtype
is_faker_function
True
False
faker
get_provider_name
provider_name
With the following functions we would be able to support wider range of sdtypes.
sdtypes
from rdt.transformers.pii.utilis import get_provider_name, is_faker_function is_faker_function('job') True get_provider_name('job') job get_provider_name('lexify'): BaseProvider
By adding this two features we will be able to remove faker dependency from https://github.com/sdv-dev/SDV
The text was updated successfully, but these errors were encountered:
pvk-developer
Successfully merging a pull request may close this issue.
Problem Description
In order to work directly with an
sdtype
(eg: 'job' as sdtype), it would be usefull to have the following two utility functions inAnonymizedFaker
:is_faker_function
: A function that returnsTrue
orFalse
whether or not the providedsdtype
is considered afaker
function.get_provider_name
: A function that returns theprovider_name
for the givensdtype
.With the following functions we would be able to support wider range of
sdtypes
.Expected behavior
Additional context
By adding this two features we will be able to remove
faker
dependency from https://github.com/sdv-dev/SDVThe text was updated successfully, but these errors were encountered: