Skip to content
View debonx's full-sized avatar
🍕
Food processing
🍕
Food processing
Block or Report

Block or report debonx

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Luhn's algorithm implementation for ... Luhn's algorithm implementation for credit card sequence validation.
    1
    #include <cs50.h>
    2
    #include <stdio.h>
    3
    #include <stdlib.h>
    4
    #include <string.h>
    5
    
                  
  2. Naive Bayes classifier in Python Naive Bayes classifier in Python
    1
    #Import datasets and libraries
    2
    from sklearn.datasets import fetch_20newsgroups
    3
    from sklearn.naive_bayes import MultinomialNB
    4
    from sklearn.feature_extraction.text import CountVectorizer
    5
    
                  
  3. Example of Supervised Machine Learni... Example of Supervised Machine Learning with Support Vector Classifier from sklearn.
    1
    from sklearn.svm import SVC
    2
    from graph import points, labels
    3
    
                  
    4
    # Create SVC classifier (linear decision boundary)
    5
    classifier = SVC(kernel = 'linear')
  4. Example of Unsupervised Machine Lear... Example of Unsupervised Machine Learning with KMeans (sklearn).
    1
    import matplotlib.pyplot as plt
    2
    from sklearn import datasets
    3
    
                  
    4
    # From sklearn.cluster, import Kmeans class
    5
    from sklearn.cluster import KMeans
  5. Using Python and sklearn to create a... Using Python and sklearn to create a Breast Cancer Classifier and predict malignant or benign tumours, based on features list.
    1
    # Importing breast cancer data and features.
    2
    # Importing training model, classifier and matplotlib
    3
    
                  
    4
    import codecademylib3_seaborn
    5
    from sklearn.datasets import load_breast_cancer
  6. kleeia.com kleeia.com Public

    A nice journey to build a marketplace for artisans with WordPress and WooCommerce, between 2015 and 2018. ALPHA Exhibitor at WebSummit 2016 and 2017 editions.

    HTML 2