MCPcopy Index your code
hub / github.com/pytorch/pytorch / field_names

Method field_names

caffe2/python/schema.py:440–444  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

438 return list(self.fields.items())
439
440 def field_names(self):
441 names = []
442 for name, field in self.fields.items():
443 names += [_join_field_name(name, f) for f in field.field_names()]
444 return names
445
446 def field_types(self):
447 types = []

Callers 4

testFromColumnListMethod · 0.95
test_dataset_opsMethod · 0.95

Calls 3

_join_field_nameFunction · 0.85
itemsMethod · 0.45
field_namesMethod · 0.45

Tested by 4

testFromColumnListMethod · 0.76
test_dataset_opsMethod · 0.76