10 lines
272 B
Python
10 lines
272 B
Python
#!/root/venvs/train/bin/python
|
|
"""
|
|
Command-line utility for fine-tuning DeepSeek models using Unsloth.
|
|
Always trains from a base model to create a new fine-tuned model.
|
|
"""
|
|
import sys
|
|
from train.unsloth_deepseek import main
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main()) |