cyberosa commited on
Commit
a75d7e4
·
1 Parent(s): 8f10206

updating weekly stats

Browse files
data/all_trades_profitability.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:78ca1c4b1ad00c95f94bdaecef627d6449547984d18e452f2db65fa194417a52
3
- size 2456352
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7bc0f6a578ad51a8243244fe2548cb2726dedc03a003a5103faed170353e5294
3
+ size 2350354
data/delivers.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:cfad460f3b035878c083a8a98988b0c623643ddf688b364d6269f45c194beae8
3
- size 561642110
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:630af4a00273b0f620531301da650491fac225a96becf6cd9103331d3a40e634
3
+ size 577925918
data/fpmmTrades.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:295b4f6839111251a764a5fcde484552daaa6b42c63e5753680a33311c53b4e5
3
- size 6484981
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb876c1221e2fc4bc493fec651cf167c5243b131bc932e52fc817450d9fdf954
3
+ size 6246723
data/fpmms.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c488af7d0ad3070526751daafce3de6c944f9be289503f885ec6a4d4336183b2
3
- size 338750
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f750f72d608999c43ac581b761f153e89d23ecca7aebd4a9b41bc044fb5e429e
3
+ size 341069
data/requests.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f6c5aa48864ff7eb8662d3ec1faff6e533d4067eadab72a16be233adf5df0216
3
- size 16857932
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b534581f7239aa57fa7895859c895f4cfff92f3372683bfc8188b72f8f3803a3
3
+ size 15857748
data/summary_profitability.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b82f7c4a487ae6b7d8daadda5454f4f8327b83ca85bd9d252d32a8d39105a526
3
- size 42145
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:42395ab29e85b1e4c0907132f30895400c20422287be4fb8921e1a884eac0738
3
+ size 42213
data/t_map.pkl CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2dc45f8d93c69a51da90edd37aacff70ef5b9cb2680201d0e76711e245d2b240
3
- size 9252439
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c180f7b0823819b45ea78c1956ebc4d33cc0d374ad528c9a86acb1797549d341
3
+ size 9548930
data/tools.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:bc017439308d15c93dda7c34cfb46b5ff4de1cbe3614dc2ff18fab7b50622e14
3
- size 562391192
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4dd77eb7642fb291caab50750842c1509fe121abe1fd873cb43d12643d781626
3
+ size 580056931
notebooks/analysis.ipynb CHANGED
@@ -10,6 +10,67 @@
10
  "import re"
11
  ]
12
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  {
14
  "cell_type": "code",
15
  "execution_count": 2,
 
10
  "import re"
11
  ]
12
  },
13
+ {
14
+ "cell_type": "code",
15
+ "execution_count": null,
16
+ "metadata": {},
17
+ "outputs": [],
18
+ "source": [
19
+ "import csv\n",
20
+ "import requests\n",
21
+ "hash = \"QmR8etyW3TPFadNtNrW54vfnFqmh8vBrMARWV76EmxCZyk\"\n",
22
+ "ipfs_address = \"https://gateway.autonolas.tech/ipfs/\"\n",
23
+ "\n",
24
+ "accuracy_link= ipfs_address + hash\n",
25
+ "response = requests.get(accuracy_link)\n",
26
+ "print(response)\n"
27
+ ]
28
+ },
29
+ {
30
+ "cell_type": "code",
31
+ "execution_count": 26,
32
+ "metadata": {},
33
+ "outputs": [
34
+ {
35
+ "name": "stdout",
36
+ "output_type": "stream",
37
+ "text": [
38
+ "headers = ['tool', 'tool_accuracy', 'total_requests', 'min', 'max']\n"
39
+ ]
40
+ }
41
+ ],
42
+ "source": [
43
+ "from io import StringIO\n",
44
+ "accuracy_store = {}\n",
45
+ "data = StringIO(response.text)\n",
46
+ "csv_reader = csv.reader(data, delimiter=',')\n",
47
+ "for row in csv_reader:\n",
48
+ " if row[0] == \"tool\":\n",
49
+ " print(f\"headers = {row}\")\n",
50
+ " continue\n",
51
+ " accuracy_store[row[0]] = [\n",
52
+ " row[2],\n",
53
+ " row[1],\n",
54
+ " ]"
55
+ ]
56
+ },
57
+ {
58
+ "cell_type": "code",
59
+ "execution_count": 27,
60
+ "metadata": {},
61
+ "outputs": [
62
+ {
63
+ "name": "stdout",
64
+ "output_type": "stream",
65
+ "text": [
66
+ "{'claude-prediction-offline': ['481', '57.380457380457386'], 'claude-prediction-online': ['1055', '61.137440758293835'], 'prediction-offline': ['4465', '67.41321388577828'], 'prediction-offline-sme': ['61', '70.49180327868852'], 'prediction-online': ['9490', '66.00632244467862'], 'prediction-online-sme': ['14642', '65.67408823931157'], 'prediction-request-rag': ['2691', '63.58231140839836'], 'prediction-request-rag-claude': ['7428', '65.64351103931072'], 'prediction-request-reasoning': ['17372', '67.11374625834677'], 'prediction-request-reasoning-claude': ['2470', '66.72064777327935'], 'prediction-url-cot-claude': ['1596', '61.904761904761905']}\n"
67
+ ]
68
+ }
69
+ ],
70
+ "source": [
71
+ "print(accuracy_store)"
72
+ ]
73
+ },
74
  {
75
  "cell_type": "code",
76
  "execution_count": 2,