Skip to content
View pinatics's full-sized avatar

Highlights

  • Pro

Block or report pinatics

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 Loading

  1. datacution datacution Public

    Variational Autoencoder (VAE) Analysis on German Credit Dataset Using Google Colab

    Jupyter Notebook

  2. neo4j-analyzer.py neo4j-analyzer.py
    1
    from neo4j import GraphDatabase
    2
    import logging
    3
    import pandas as pd
    4
    
                  
    5
    # Configure logging
  3. json-analyzer.py json-analyzer.py
    1
    import json
    2
    import logging
    3
    import pandas as pd
    4
    from datetime import datetime
    5
    from collections import Counter
  4. mysql-analyzer.py mysql-analyzer.py
    1
    import mysql.connector
    2
    import re
    3
    import logging
    4
    import pandas as pd
    5
    from ddlparse.ddlparse import DdlParse
  5. postgres-analyzer.py postgres-analyzer.py
    1
    import psycopg2
    2
    import re
    3
    import logging
    4
    import pandas as pd
    5
    from ddlparse.ddlparse import DdlParse
  6. ner-with-transformers.py ner-with-transformers.py
    1
    import torch
    2
    from transformers import BertTokenizer, BertForTokenClassification
    3
    from transformers import pipeline
    4
    import nltk
    5
    from nltk.tokenize import sent_tokenize