Last active
          July 24, 2018 17:58 
        
      - 
      
- 
        Save WittmannF/50a9a313bbe992e793a34d9c7aba7c51 to your computer and use it in GitHub Desktop. 
    Table with some equivalents between Sklearn and TFLearn
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
    | Task | Sklearn | TFLearn | |
|---|---|---|---|
| Train a classifier | .fit(X) | .fit(X) | |
| Get the accuracy score | .score(X, y) | .evaluate(X, y) | |
| Predict classes | .predict(X) | .predict_label(X) | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment