03bebee4b08e6fb3d9a57af330e903ad9b08b77a,cleverhans/model.py,Model,get_logits,#Model#Any#,42

Before Change


        :return: A symbolic representation of the output logits (i.e., the
                 values fed as inputs to the softmax layer).
        
        return self.get_layer(x, "logits")

    def get_probs(self, x):
        
        :param x: A symbolic representation of the network input

After Change


        :return: A symbolic representation of the output logits (i.e., the
                 values fed as inputs to the softmax layer).
        
        return self.fprop(x, **kwargs)[self.O_LOGITS]

    def get_probs(self, x, **kwargs):
        
        :param x: A symbolic representation of the network input
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: tensorflow/cleverhans
Commit Name: 03bebee4b08e6fb3d9a57af330e903ad9b08b77a
Time: 2018-06-11
Author: dberth@google.com
File Name: cleverhans/model.py
Class Name: Model
Method Name: get_logits


Project Name: tensorflow/cleverhans
Commit Name: 03bebee4b08e6fb3d9a57af330e903ad9b08b77a
Time: 2018-06-11
Author: dberth@google.com
File Name: cleverhans/model.py
Class Name: Model
Method Name: get_probs


Project Name: tensorflow/cleverhans
Commit Name: f553bee58fdc98c7dd5875b2078afbe4cf361489
Time: 2017-06-21
Author: papernot@google.com
File Name: cleverhans/model.py
Class Name: Model
Method Name: fprop_layer