将数据从GoogleColab上传到Github或kaggle

时间:2018-05-27 09:32:52

标签: github github-api google-colaboratory kaggle

有没有办法将google colab中的本地文件存储中的一些数据上传到github或kaggle个人资料帐户?

1 个答案:

答案 0 :(得分:0)

由于您的问题似乎是开放式的,我会尽可能地回答。如果您正在考虑更具体的数据类型,请添加一个具体示例。

一种方法是简单地使用git命令行工具。

github_repo = example_repo
file_to_sync = 'some_path/some_file'
!git clone https://github.com/user/$github_repo
!cp $file_to_sync $github_repo
!cd $github_repo && git add $file_to_sync && git commit -m "file added"
!cd $github_repo && git push