This commit is contained in:
Simon Moisy
2025-03-13 15:21:06 +08:00
parent ed67968cc2
commit 302be95ce7
13 changed files with 690 additions and 0 deletions

2
tests/test_if_GPU.py Normal file
View File

@@ -0,0 +1,2 @@
from tensorflow.python.client import device_lib
print(device_lib.list_local_devices())

View 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)