init
This commit is contained in:
2
tests/test_if_GPU.py
Normal file
2
tests/test_if_GPU.py
Normal file
@@ -0,0 +1,2 @@
|
||||
from tensorflow.python.client import device_lib
|
||||
print(device_lib.list_local_devices())
|
||||
11
tests/test_kaggle_download.py
Normal file
11
tests/test_kaggle_download.py
Normal file
@@ -0,0 +1,11 @@
|
||||
import os
|
||||
import sys
|
||||
|
||||
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
|
||||
|
||||
from datasets import Datasets
|
||||
|
||||
download_path = "./data" # Path where the dataset will be downloaded
|
||||
dataset_id = "mczielinski/bitcoin-historical-data"
|
||||
|
||||
Datasets.download_kaggle_dataset(dataset_id, download_path)
|
||||
Reference in New Issue
Block a user