Skip to content
Snippets Groups Projects
Commit 0922eac3 authored by bjje's avatar bjje
Browse files

Added simple test script

parent 2008c91f
No related branches found
No related tags found
No related merge requests found
"""
This is a helper function which can help you and the TAs debug your Python setup.
"""
import os
import sklearn
import numpy as np
import pathlib
import torch
print('------------------------------------------------------------------')
print('Path of this file {}'.format(os.path.abspath(__file__)))
print('Current working directory {}.'.format(pathlib.Path().resolve()))
print('')
print('The numpy version is{}.'.format(np.__version__))
print('The scikit-learn version is {}.'.format(sklearn.__version__))
print('The Torch version is{}.'.format(torch.__version__))
"""
Check that the course specific tools can be imported
"""
import dtuimldmtools
print('The dtuimldmtools package {}.'.format(dtuimldmtools))
print('------------------------------------------------------------------')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment