Update app.py
Browse files
app.py
CHANGED
@@ -128,43 +128,37 @@ def extract_full_paper_with_labels(pdf_path, progress=None):
|
|
128 |
"content": content
|
129 |
}
|
130 |
|
131 |
-
def
|
132 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
|
134 |
-
total_files = len(pdf_files)
|
135 |
-
print("π Starting PDF to Parquet Conversion Process")
|
136 |
-
|
137 |
-
for idx, pdf_file in enumerate(pdf_files):
|
138 |
if progress is not None:
|
139 |
-
progress(
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
try:
|
152 |
-
df.to_parquet(parquet_file, engine='pyarrow', index=False)
|
153 |
-
print(f"β
Parquet saved as: {parquet_file}")
|
154 |
-
except Exception as e:
|
155 |
-
print(f"β Parquet Conversion Failed: {str(e)}")
|
156 |
-
return None, f"β Parquet Conversion Failed: {str(e)}"
|
157 |
-
|
158 |
-
# β
Step 3: Upload Parquet (if selected)
|
159 |
-
if action_choice in ["Upload to Hugging Face", "Both"]:
|
160 |
-
try:
|
161 |
-
upload_message = upload_with_progress(parquet_file, dataset_repo_id, hf_token, progress)
|
162 |
-
except Exception as e:
|
163 |
-
print(f"β Upload Failed: {str(e)}")
|
164 |
-
upload_message = f"β Upload failed: {str(e)}"
|
165 |
-
|
166 |
-
print("π Process Completed")
|
167 |
-
return parquet_file, upload_message
|
168 |
|
169 |
# β
Gradio Interface
|
170 |
iface = gr.Interface(
|
|
|
128 |
"content": content
|
129 |
}
|
130 |
|
131 |
+
def upload_with_progress(file_path, repo_id, token, progress):
|
132 |
+
"""
|
133 |
+
Upload file to Hugging Face Dataset using upload_file() API method.
|
134 |
+
"""
|
135 |
+
print(f"π€ Starting upload of Parquet: {file_path}")
|
136 |
+
file_size = os.path.getsize(file_path)
|
137 |
+
|
138 |
+
api = HfApi()
|
139 |
+
|
140 |
+
try:
|
141 |
+
# Use upload_file() method from huggingface_hub
|
142 |
+
api.upload_file(
|
143 |
+
path_or_fileobj=file_path,
|
144 |
+
path_in_repo=os.path.basename(file_path),
|
145 |
+
repo_id=repo_id,
|
146 |
+
repo_type="dataset",
|
147 |
+
token=token
|
148 |
+
)
|
149 |
|
|
|
|
|
|
|
|
|
150 |
if progress is not None:
|
151 |
+
progress(1, desc="β
Upload Complete")
|
152 |
+
|
153 |
+
print(f"β
Successfully uploaded to {repo_id}")
|
154 |
+
return f"β
Successfully uploaded to {repo_id}"
|
155 |
+
|
156 |
+
except HfHubHTTPError as e:
|
157 |
+
print(f"β Upload failed: {e}")
|
158 |
+
return f"β Upload failed: {str(e)}"
|
159 |
+
except Exception as e:
|
160 |
+
print(f"β Unexpected error: {e}")
|
161 |
+
return f"β Unexpected error: {str(e)}"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
|
163 |
# β
Gradio Interface
|
164 |
iface = gr.Interface(
|