添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

Add Data 的路径:/kaggle/input
git clone 的路径:/kaggle/working

一、Kaggle 账号注册

1.进入官网 Kaggle 点击 Register 进行账号注册
在这里插入图片描述
2.随便点一个方式注册,本人用的邮箱
在这里插入图片描述
3.点进去填写对应信息进行注册,点击 next 即可
在这里插入图片描述

二、Kaggle 创建项目

1.如果你看到是这个界面
在这里插入图片描述
2.如果你看到的是这个界面
在这里插入图片描述
Kaggle 新建 kernel 有两种方式,这个主要是编辑的环境:

编程语言目前只支持 python 和 R 两种

三、新建 Notebook

1.点击 create => New Notebook 新建 Notebook 如下:
在这里插入图片描述
注:命令行可以执行 Linux 命令

四、切换工作路径

当新建 Notebook 后路径均为:/kaggle/working

文件目录结果如下:

以下列出常用的路径以及文件查看方式:

import os
print(os.listdir("../")) # ['lib', 'input', 'working'] 
print(os.getcwd())  # 当前文件所在的路径 /kaggle/working
print(os.listdir(os.getcwd()))  # 在 /kaggle/working 文件夹下有两个隐藏文件['.ipynb_checkpoints', '__notebook_source__.ipynb']
print(os.listdir("../../")) # 
print(os.listdir("../input"))   # 查看自己导入的文件
print(os.listdir("../../kaggle"))

一、将本地项目上传到 Kaggle 并运行

举例说明:

方式 1:(我没有成功,谢邀)

1.本地有一个 KaggleTest 项目,先将项目进行压缩
在这里插入图片描述
2.包含了一个 main.py 和 test.py

def first_test() :
    print("Hello, world")
    print("Kaggle, very good!")

3.点击自定义上传 在这里插入图片描述
4.点击后显示如下,上传刚刚的压缩包,它会自动解压
在这里插入图片描述

5.如图就能看到加载好的项目啦,当然没有的话可以点击 Add Data,点击或搜索 Your Datasets 会显示你所有导入的项目
在这里插入图片描述

上传项目后如何正确运行项目

# This Python 3 environment comes with many helpful analytics libraries installed
# It is defined by the kaggle/python Docker image: https://github.com/kaggle/docker-python
# For example, here's several helpful packages to load
import numpy as np # linear algebra
import pandas as pd # data processing, CSV file I/O (e.g. pd.read_csv)
# Input data files are available in the read-only "../input/" directory
# For example, running this (by clicking run or pressing Shift+Enter) will list all files under the input directory
import os
for dirname, _, filenames in os.walk('/kaggle/input'):
    for filename in filenames:
        print(os.path.join(dirname, filename))
# You can write up to 20GB to the current directory (/kaggle/working/) that gets preserved as output when you create a version using "Save & Run All" 
# You can also write temporary files to /kaggle/temp/, but they won't be saved outside of the current session

1、当前的工作目录是在 kaggle/working 目录下,可以用如下代码查看:
在这里插入图片描述

import os 
print(os.getcwd())
print(os.listdir(os.getcwd()))
/kaggle/working
['__notebook_source__.ipynb', '.virtual_documents']

2、改变当前的工作目录

""" change working directory """
import os
if os.path.basename(os.getcwd()) == 'working':
    os.chdir('../input/vitcode') //
print('current working directory is {}'.format(os.getcwd()))
print(os.getcwd())
print(os.listdir(os.getcwd()))

方式 2 (一个一个传最为靠谱,别瞎折腾了)

%%writefile filename.py
%load mixmodel.py

记得最后进行项目保存
在这里插入图片描述

方式 3

方式 1 与 2 的结合

# import module we'll need to import our custom module
from shutil import copyfile
# copy our file into the working directory (make sure it has .py suffix)
copyfile(src = "../input/create-function/my_functions.py", dst = "../working/my_functions.py")
import shutil
shutil.copytree(r'../input/vitcode/vision_transformer', r'./visio_transformer')

在这里插入图片描述
notebook这种形式不允许 parser = argparse.ArgumentParser() 这种自动参数的形式
在这里插入图片描述

已解决selenium.common.exceptions.ElementNotInteractableException: Message: element not interactable 2023年3月5日 下午7:12 module must have its parameters and buffers on device cuda:0 (device_ids[0]) but found one of them 2022年4月28日 PyQt5可视化 7 饼图和柱状图实操案例 ④层叠柱状图和百分比柱状图及饼图的实现【超详解图文教程】 2023年3月28日 python FastAPI 如何解决并发和性能问题 2023年6月26日