This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
(2_291_675, 10) | |
βββββββββββββββ¬βββββββββββββββββββββββββββββββββ¬βββββββ¬ββββββββ¬βββββββββββββββββββββββββββββ | |
β col β type β null β uniq β median β | |
βββββββββββββββͺβββββββββββββββββββββββββββββββββͺβββββββͺββββββββͺβββββββββββββββββββββββββββββ‘ | |
β offer_id β Null β all β 0 β null β | |
β task_id β Int64 β 0 β all β 1.14557e+08 β | |
β external_id β Int64 β 0 β all β 1.96216e+08 β | |
β call_type β Null β all β 0 β null β | |
β call_source β String β 0 β 1 β call_tracker β |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
ββββββββββββ¬βββββββββββ¬βββββββββββ¬ββββββββββββββ¬ββββββββββββββ¬ββββββββ¬ββββββββ¬ββββββββββββ¬βββββββββ¬ββββββββ¬ββββββββ¬ββββββββββββ¬βββββββββ¬ββββββββββββ | |
β new_data β old_data β balanced β auc_w_no β auc_w_yes β w_no β w_no β w_no β w_no β w_yes β w_yes β w_yes β w_yes β threshold β | |
β β β β β β auc β f1 β precision β recall β auc β f1 β precision β recall β β | |
ββββββββββββͺβββββββββββͺβββββββββββͺββββββββββββββͺββββββββββββββͺββββββββͺββββββββͺββββββββββββͺβββββββββͺββββββββͺββββββββͺββββββββββββͺβββββββββͺββββββββββββ‘ | |
β false β true β false β β β 0.827 β 0.214 β 0.597 β 0.131 β 0.704 β 0.015 β 0.597 β 0.007 β 0.896 β | |
β true β false β false β ββββββββββ β ββββββββββ β 0.886 β 0.574 β 0.603 β 0.548 β 0.823 β 0.174 β 0.609 β 0.101 β 0.440 β | |
β true β false β true β βββββββββ β βββββββββ β 0.878 β 0.557 β 0.600 β 0.519 β 0.811 β 0.121 β 0.655 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import tiktoken | |
import requests | |
# Configuration | |
DEEPSEEK_API_KEY = os.getenv("DEEPSEEK_API_KEY") | |
MODEL = "deepseek-chat" | |
ENCODING = tiktoken.get_encoding( | |
"cl100k_base" | |
) # DeepSeek uses similar tokenization |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"instruments": [ | |
{ | |
"figi": "BBG000FXW512", | |
"ticker": "PKI", | |
"classCode": "SPBXM", | |
"isin": "US7140461093", | |
"lot": 1, | |
"currency": "usd", | |
"shortEnabledFlag": false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name dense_tinkoff_terminal | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Denser Tinkoff investment terminal | |
// @author NikolayXHD | |
// @match https://www.tinkoff.ru/invest-terminal/* | |
// @grant none | |
// ==/UserScript== |