3ca64e59d66a3be1701ebf58cdf4c2a0320be2f8,deeplabcut/pose_estimation_tensorflow/evaluate.py,,evaluate_network,#,32

Before Change


    from deeplabcut.utils import auxiliaryfunctions, visualization
    import tensorflow as tf
    
    del os.environ["TF_CUDNN_USE_AUTOTUNE"] //was potentially set during training

    tf.reset_default_graph()
    os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" // 

After Change


    from deeplabcut.utils import auxiliaryfunctions, visualization
    import tensorflow as tf
    
    if "TF_CUDNN_USE_AUTOTUNE" in os.environ:
        del os.environ["TF_CUDNN_USE_AUTOTUNE"] //was potentially set during training
    

    tf.reset_default_graph()
    os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" // 
//    tf.logging.set_verbosity(tf.logging.WARN)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: AlexEMG/DeepLabCut
Commit Name: 3ca64e59d66a3be1701ebf58cdf4c2a0320be2f8
Time: 2018-11-13
Author: amathis@fas.harvard.edu
File Name: deeplabcut/pose_estimation_tensorflow/evaluate.py
Class Name:
Method Name: evaluate_network


Project Name: uber/ludwig
Commit Name: 7d1a31ecca3991064491f71afd4ae70fb78d5027
Time: 2020-09-08
Author: piero@uber.com
File Name: ludwig/predict.py
Class Name:
Method Name: predict


Project Name: AlexEMG/DeepLabCut
Commit Name: 3ca64e59d66a3be1701ebf58cdf4c2a0320be2f8
Time: 2018-11-13
Author: amathis@fas.harvard.edu
File Name: deeplabcut/pose_estimation_tensorflow/predict_videos.py
Class Name:
Method Name: analyze_videos