naturalness / partycrasher

Automated scalable crash bucketing
http://partycrasher.readthedocs.io/
GNU General Public License v3.0
15 stars 3 forks source link

Disable field length norms #82

Closed eddieantonio closed 8 years ago

ghost commented 8 years ago

This seems to dramatically decrease f-score by negatively impacting recall. It might not be the correct approach. For now I'm not going to merge it, here is the code to enable it again if we want to play with it more later.

In

            'mappings': {
                'crash': {
                    'properties': common_properties(self.thresholds),
                    'dynamic_templates': [
                      {
                        'data': {

add

                            'norms': {
                              'enabled': False
                            },