GithubHelp home page GithubHelp logo

kaggle's Introduction

Kaggle

Kaggle competition

how to use:

  1. download this repo into your local machine (this will create a folder named Kaggle in your working directory):

    git clone [email protected]:NxNiki/Kaggle.git
    
  2. set up conda environment (Conda is designed for managing system-level dependencies): it's recommended to use the project name as your environment name.

    conda create --name SpaceshipTitanic python=3.9
    conda activate SpaceshipTitanic
    
  3. go to the folder and create your folder for a specific project: use poetry to manage Python libraries ( Poetry is designed for managing Python-level dependencies.):

    # install poetry if you don't have it (will take a few minutes...):
    curl -sSL https://install.python-poetry.org | python -
    cd Kaggle
    # create project: it's recommended to use the project name as your environment name.
    poetry new SpaceshipTitanic
    cd SpaceshipTitanic
    
  4. Open the file named pyproject.toml and add your libraries:

    [tool.poetry]
    name = "spaceshiptitanic"
    version = "0.1.0"
    description = ""
    authors = ["NxNiki <[email protected]>"]
    readme = "README.md"
    
    [tool.poetry.dependencies]
    python = "^3.9"
    pandas = "^1.0"
    numpy = "^1.2"
    scikit-learn = "^1.3"
    
    [tool.poetry.dev-dependencies]
    matplotlib = "*"
    seaborn = "*"
    jupyter = "*"
    ipykernel = "*"
    
    
    
    [build-system]
    requires = ["poetry-core"]
    build-backend = "poetry.core.masonry.API"
    
    
    # update dependencies every time you change pyproject.toml:
    poetry update
    

kaggle's People

Contributors

nxniki avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.