test-model_v1.0 / another_module.py
August4293's picture
Upload folder using huggingface_hub
4c2a353 verified
raw
history blame contribute delete
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"