File size: 418 Bytes
01ae771 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import os
import sys
# Add the src directory to Python path
sys.path.append(os.path.join(os.path.dirname(__file__), 'src'))
from data.data_processor import DeepSeekDataProcessor
def main():
print("[+] Processing dataset into binary files...")
processor = DeepSeekDataProcessor()
processor.prepare_dataset()
print("[+] Data processing completed successfully!")
if __name__ == "__main__":
main()
|