gpt4 book ai didi

import - 如何在 google Colaboratory 中导入 .py?

转载 作者:行者123 更新时间:2023-12-03 14:49:52 30 4
gpt4 key购买 nike

我想简化代码。所以我做了一个 utils.py ,但 Google Colaboratory 目录是“/content”我阅读了其他问题。但这不是我的解决方案

In Google's Colab notebook, How do I call a function from a Python file?

%%writefile example.py
def f():
print 'This is a function defined in a Python source file.'
# Bring the file into the local Python environment.
execfile('example.py')
f()
This is a function defined in a Python source file.

看起来就像只是使用 def()。
使用这个,我总是在单元格中编写代码。

但我想要这个代码
import example.py
example.f()

最佳答案

也许你想要一个样本:

!wget https://raw.githubusercontent.com/tensorflow/models/master/samples/core/get_started/iris_data.py -P local_modules -nc

import sys
sys.path.append('local_modules')

import iris_data
iris_data.load_data()

关于import - 如何在 google Colaboratory 中导入 .py?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49048437/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com