remote_code_model_with_dots / another_module.py
Rocketknight1's picture
Upload 14 files
6055811 verified
raw
history blame
334 Bytes
"""
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"