File size: 334 Bytes
6055811 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
"""
Another module that is imported relatively.
This demonstrates the bug with relative imports in models with dots in their names.
"""
import torch
def custom_function(x):
"""A simple function that just returns the input unchanged."""
return x
def another_helper():
"""Another helper function."""
return "helper"
|