ml-dash 0.5.6__tar.gz → 0.5.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: ml-dash
3
- Version: 0.5.6
3
+ Version: 0.5.7
4
4
  Summary: ML experiment tracking and data storage
5
5
  Keywords: machine-learning,experiment-tracking,mlops,data-storage
6
6
  Author: Ge Yang, Tom Tao
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "ml-dash"
3
- version = "0.5.6"
3
+ version = "0.5.7"
4
4
  description = "ML experiment tracking and data storage"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.9"
@@ -69,7 +69,7 @@ class FileBuilder:
69
69
  Raises:
70
70
  RuntimeError: If experiment is not open or write-protected
71
71
  ValueError: If file_path not provided or file doesn't exist
72
- ValueError: If file size exceeds 5GB limit
72
+ ValueError: If file size exceeds 100GB limit
73
73
 
74
74
  Examples:
75
75
  result = experiment.files(file_path="./model.pt", prefix="/models").save()
@@ -91,11 +91,11 @@ class FileBuilder:
91
91
  if not file_path.is_file():
92
92
  raise ValueError(f"Path is not a file: {self._file_path}")
93
93
 
94
- # Check file size (max 5GB)
94
+ # Check file size (max 100GB)
95
95
  file_size = file_path.stat().st_size
96
- MAX_FILE_SIZE = 5 * 1024 * 1024 * 1024 # 5GB in bytes
96
+ MAX_FILE_SIZE = 100 * 1024 * 1024 * 1024 # 100GB in bytes
97
97
  if file_size > MAX_FILE_SIZE:
98
- raise ValueError(f"File size ({file_size} bytes) exceeds 5GB limit")
98
+ raise ValueError(f"File size ({file_size} bytes) exceeds 100GB limit")
99
99
 
100
100
  # Compute checksum
101
101
  checksum = compute_sha256(str(file_path))
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes