Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
sanjin7
/
ctr-ll4
like
0
Text Classification
Transformers
PyTorch
full_model
custom_code
Model card
Files
Files and versions
xet
Community
Deploy
Use this model
main
ctr-ll4
/
src
/
utils
/
enum.py
sanjin7
Upload src/ with huggingface_hub
cea4a4b
about 3 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
144 Bytes
from
enum
import
EnumMeta
from
typing
import
Any
def
get_enum_values
(
_enum: EnumMeta
) ->
list
[
Any
]:
return
[item.value
for
item
in
_enum]