Spaces:
Build error
Build error
Update agent.json
Browse files- agent.json +50 -0
agent.json
CHANGED
|
@@ -81,6 +81,56 @@
|
|
| 81 |
"seaborn",
|
| 82 |
"plotly",
|
| 83 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 84 |
// Utility Libraries
|
| 85 |
"tqdm",
|
| 86 |
"argparse",
|
|
|
|
| 81 |
"seaborn",
|
| 82 |
"plotly",
|
| 83 |
|
| 84 |
+
// Utility Libraries
|
| 85 |
+
"tqdm",
|
| 86 |
+
"argparse",
|
| 87 |
+
"logging"
|
| 88 |
+
],
|
| 89 |
+
"additional_authorized_imports": [
|
| 90 |
+
"unicodedata",
|
| 91 |
+
"stat",
|
| 92 |
+
"datetime",
|
| 93 |
+
"random",
|
| 94 |
+
"pandas",
|
| 95 |
+
"numpy",
|
| 96 |
+
"itertools",
|
| 97 |
+
"math",
|
| 98 |
+
"statistics",
|
| 99 |
+
"queue",
|
| 100 |
+
"time",
|
| 101 |
+
"collections",
|
| 102 |
+
"re",
|
| 103 |
+
"os",
|
| 104 |
+
"sys",
|
| 105 |
+
"json",
|
| 106 |
+
"joblib",
|
| 107 |
+
"pickle",
|
| 108 |
+
"gzip",
|
| 109 |
+
"shutil",
|
| 110 |
+
"pathlib",
|
| 111 |
+
|
| 112 |
+
// Machine Learning & Deep Learning
|
| 113 |
+
"torch",
|
| 114 |
+
"torchvision",
|
| 115 |
+
"torchaudio",
|
| 116 |
+
"torch.nn",
|
| 117 |
+
"torch.optim",
|
| 118 |
+
"torch.utils.data",
|
| 119 |
+
"tensorflow",
|
| 120 |
+
"keras",
|
| 121 |
+
"sklearn",
|
| 122 |
+
"scipy",
|
| 123 |
+
"cv2", // OpenCV for image processing
|
| 124 |
+
"transformers", // Hugging Face Transformers
|
| 125 |
+
"datasets",
|
| 126 |
+
"tokenizers",
|
| 127 |
+
"sentencepiece",
|
| 128 |
+
|
| 129 |
+
// Visualization
|
| 130 |
+
"matplotlib.pyplot",
|
| 131 |
+
"seaborn",
|
| 132 |
+
"plotly",
|
| 133 |
+
|
| 134 |
// Utility Libraries
|
| 135 |
"tqdm",
|
| 136 |
"argparse",
|