Skip to content
View mikky1996's full-sized avatar

Block or report mikky1996

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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 Loading

  1. SocialNetworkAnalysis SocialNetworkAnalysis Public

    Theory and software for extracting features out of the text information from the walls of social network users for grouping them by their interests.

    Jupyter Notebook

  2. Timeseries_prediction Timeseries_prediction Public

    Quick Notes about TS predictions

    Jupyter Notebook

  3. cython_shift.pyx cython_shift.pyx
    1
    import numpy as np
    2
    cimport numpy as np
    3
    cimport cython
    4
    
                  
    5
    @cython.boundscheck(False)  # Deactivate bounds checking
  4. exmpl_airflow_dag.py exmpl_airflow_dag.py
    1
    from airflow import DAG
    2
    from airflow.operators.python_operator import PythonOperator
    3
    from airflow.operators.bash_operator import BashOperator
    4
    
                  
    5
    import logging # Log to Ariflow logger
  5. Bing.py Bing.py
    1
    #-----------------------------------------
    2
    subscription_key = "3de6def7ddaf445181c1114609969eed"
    3
    assert subscription_key
    4
    search_url = "https://api.cognitive.microsoft.com/bing/v7.0/search"
    5
    #-----------------------------------------