Skip to content
View preetshah7's full-sized avatar
🎮
Playing Witcher 3
🎮
Playing Witcher 3
  • IIT Bombay
  • India
Block or Report

Block or report preetshah7

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. walmart_scarper walmart_scarper Public

    Scrape Walmart product reviews using Selenium & BeautifulSoup

    Python 1

  2. custom_model_save.rb custom_model_save.rb
    1
    class PositionalEmbedding(layers.Layer):
    2
        def __init__(self, sequence_length, output_dim, **kwargs):
    3
            super().__init__(**kwargs)
    4
            self.position_embeddings = layers.Embedding(
    5
                input_dim=sequence_length, output_dim=output_dim
  3. ActivityNet ActivityNet Public

    Forked from activitynet/ActivityNet

    This repository is intended to host tools and demos for ActivityNet

    Jupyter Notebook

  4. DeepFashion_Try_On DeepFashion_Try_On Public

    Forked from switchablenorms/DeepFashion_Try_On

    Official code for "Towards Photo-Realistic Virtual Try-On by Adaptively Generating↔Preserving Image Content",CVPR‘20 https://arxiv.org/abs/2003.05863

    Python

  5. efficient-compact-fire-detection-cnn efficient-compact-fire-detection-cnn Public

    Forked from NeelBhowmik/efficient-compact-fire-detection-cnn

    Real-time fire detection in image/video/webcam using a convolutional neural network (deep learning) - from our ICMLA 2020 paper (Thomson / Bhowmik / Breckon)

    Python

  6. Here's how you start using chromdriv... Here's how you start using chromdriver for Selenium on Brave
    1
    from selenium import webdriver
    2
    from selenium.webdriver.chrome.options import Options
    3
    # configuring chrome driver for brave browser
    4
    options = Options()
    5
    options.binary_location = "C:/Program Files/BraveSoftware/Brave-Browser/Application/brave.exe"