Skip to content
View lneeraj97's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report lneeraj97

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. archived-portfolio archived-portfolio Public

    My portfolio site

    HTML

  2. keras-cnn keras-cnn Public

    A CNN for DR classification

    Python 2 1

  3. To package a conda environment (Requ... To package a conda environment (Requirement.txt and virtual environment)
    1
    # For Windows users# Note: <> denotes changes to be made
    2
    
                  
    3
    #Create a conda environment
    4
    conda create --name <environment-name> python=<version:2.7/3.5>
    5
    
                  
  4. Python documentation standards (Notes) Python documentation standards (Notes)
    1
    # PYTHON DOCUMENTATION GUIDE (NOTES)
    2
    ## IMPORT STATEMENTS
    3
    Imports should always be written at the top of the file, after any module comments and docstrings.<br>
    4
    Imports should be divided according to what is being imported. There are generally three groups:
    5
    1. Standard library imports (Python’s built-in modules)