Connaissances Informatiques >> programmation >> Programmation Python >> Content
  Derniers articles
  • Comment faire pour intégrer VBS en …
  • Python CGI Exemples 
  • Comment rejoindre les listes en Pyth…
  • Comment copier eBooks avec Python 
  • Comment Loop Through une liste de fi…
  • Comment faire pour modifier autocuei…
  • Comment s'assurer un index existe en…
  • L' utilisation de la fonction Python…
  • Comment faire une variable globale d…
  • Comment exécuter Python à partir d…
  •   Programmation Python
  • C /C + + Programming

  • Computer Programming Languages

  • Delphi Programming

  • Programmation Java

  • Programmation JavaScript

  • PHP /MySQL Programmation

  • programmation Perl

  • Programmation Python

  • Ruby Programming

  • Visual Basics programmation
  •  
    Programmation Python

    Comment utiliser Scikit-Learn en Python [Tutoriel complet]

    1. Installation

    ```

    pip installer scikit-learn

    ```

    2. Données

    ```

    à partir de sklearn.datasets, importez load_iris

    iris =charge_iris()

    print(iris.data.shape) # (150, 4)

    print(iris.cible) # [0 0 0 ... 1 1 1]

    ```

    3. Fractionner les données

    ```

    depuis sklearn.model_selection importer train_test_split

    X_train, X_test, y_train, y_test =train_test_split(iris.data, iris.target, test_size=0.25)

    ```

    4. Créer un modèle

    ```

    à partir de sklearn.tree importer DecisionTreeClassifier

    clf =DécisionTreeClassifier()

    ```

    5. Formation

    ```

    clf.fit(X_train, y_train)

    ```

    6. Prédiction

    ```

    y_pred =clf.predict(X_test)

    ```

    7. Précision

    ```

    à partir de sklearn.metrics, importez précision_score

    score =précision_score (y_test, y_pred)

    imprimer(score) # 0,96

    ```

     
    Article précédent:
    Article suivant:
    Articles recommandés
  • Comment démarrer un script comme un processus séparé en Python 
  • Comment Calculer la règle Simpson utilisant Python 
  • Comment définir votre chemin Python 
  • Comment convertir une chaîne à une liste 
  • Comment faire pour exécuter trois boucles en Python 
  • Comment faire pour installer pyinotify dans Python 2.7 
  • Comment lire et écrire des fichiers dans Python 
  • Comment graphique avec le logiciel pour Python 
  • Comment convertir une chaîne en URL en Python 
  • Comment lier Python pour Apache 
  • Connaissances Informatiques © http://www.ordinateur.cc