{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/Users/satoc/miniforge3/envs/gradio/lib/python3.12/site-packages/sentence_transformers/cross_encoder/CrossEncoder.py:13: TqdmExperimentalWarning: Using `tqdm.autonotebook.tqdm` in notebook mode. Use `tqdm.tqdm` instead to force console mode (e.g. in jupyter console)\n", " from tqdm.autonotebook import tqdm, trange\n" ] } ], "source": [ "from OpenAITools.JRCTTools import DfPostProcess, get_matched_df\n", "from sentence_transformers import SentenceTransformer, util\n", "import pandas as pd" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/Users/satoc/miniforge3/envs/gradio/lib/python3.12/site-packages/transformers/tokenization_utils_base.py:1617: FutureWarning: `clean_up_tokenization_spaces` was not set. It will be set to `True` by default. This behavior will be deprecated in transformers v4.45, and will be then set to `False` by default. For more details check this issue: https://github.com/huggingface/transformers/issues/31884\n", " warnings.warn(\n" ] } ], "source": [ "exclusive_words = [\"triple negative\", \"double positive\",\"Malignant\",\"recurrent\",\"IDH wild-type\", \"High-Grade\", \"Low-grade\"]\n", "csv_loc = '../ClinicalTrialCSV/JRCT20241215Cancer.csv'\n", "df = pd.read_csv(csv_loc, index_col=0)\n", "# モデルのロード\n", "model = SentenceTransformer('pritamdeka/S-PubMedBert-MS-MARCO')\n" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "#processed_df = DfPostProcess(exclusive_words, model, csv_loc=csv_loc)\n", "processed_df = DfPostProcess(exclusive_words, model, dataframe=df)" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "processed_df.to_csv(\"../ClinicalTrialCSV/JRCT20241215CancerPost.csv\")" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [], "source": [ "def get_matched_df(basedf, query, model, threshold=0.5):\n", " # queryをベクトル化(テンソル化)しCPUへ移動\n", " query_vec = model.encode(query, convert_to_tensor=True).cpu()\n", "\n", " matched_indices = []\n", " for idx, target_vec_str in enumerate(basedf['TargetVec']):\n", " # CSVから読み込んだ時点でTargetVecはPythonリストを文字列化したものになっているため、\n", " # ここでliteral_evalでリストに戻します。\n", " if isinstance(target_vec_str, str):\n", " # target_vec_strは\"[[...], [...]]\"のようなリスト形式\n", " target_list = ast.literal_eval(target_vec_str) # リストに変換\n", " target_vecs = torch.tensor(target_list) # リストからTensorへ\n", " else:\n", " # 万が一既にTensorの場合はそのまま使用\n", " target_vecs = target_vec_str\n", "\n", " # 必要であればCPUへ移動(通常はすでにCPU上のはず)\n", " \"\"\"if target_vecs[0].is_cuda:\n", " target_vecs = target_vecs.cpu()\"\"\"\n", "\n", " # コサイン類似度を計算\n", " cosine_scores = util.cos_sim(query_vec, target_vecs).squeeze()\n", "\n", " # thresholdを超えるスコアが1つでもあればマッチと判断\n", " if (cosine_scores >= threshold).any():\n", " matched_indices.append(idx)\n", "\n", " # 条件を満たした行を抽出\n", " matched_df = basedf.iloc[matched_indices]\n", " return matched_df" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[[-0.12602144479751587,\n", " -0.7141546607017517,\n", " -0.4860573410987854,\n", " -0.6787610650062561,\n", " -0.5019499659538269,\n", " -0.13430769741535187,\n", " -0.6577554941177368,\n", " 0.6076976656913757,\n", " 0.12889647483825684,\n", " 0.46750736236572266,\n", " 0.018368367105722427,\n", " 0.43061959743499756,\n", " 0.1905517727136612,\n", " -0.32873567938804626,\n", " -0.43094030022621155,\n", " -0.21434563398361206,\n", " 0.07665695995092392,\n", " 0.27581971883773804,\n", " 0.5334398150444031,\n", " 0.1360682100057602,\n", " 0.42274555563926697,\n", " 0.310781329870224,\n", " -0.09085263311862946,\n", " -0.13402250409126282,\n", " -0.7091479301452637,\n", " 0.3295823633670807,\n", " -0.017893081530928612,\n", " 0.14529234170913696,\n", " 0.33790770173072815,\n", " -0.5387213230133057,\n", " 0.1965356171131134,\n", " 0.43226656317710876,\n", " 0.08384066075086594,\n", " 1.2179083824157715,\n", " -0.1406896710395813,\n", " -0.19285115599632263,\n", " 0.2328663468360901,\n", " -0.2901802659034729,\n", " 0.21684598922729492,\n", " 0.08382049202919006,\n", " 0.8460990190505981,\n", " -0.24980926513671875,\n", " 0.25551164150238037,\n", " 0.2103319764137268,\n", " 0.15624524652957916,\n", " 0.22409290075302124,\n", " 0.40557602047920227,\n", " -0.3770213723182678,\n", " 0.20077230036258698,\n", " -0.6148147583007812,\n", " -0.09054853767156601,\n", " -0.21558518707752228,\n", " 0.660815954208374,\n", " 0.5446515083312988,\n", " -0.4986187517642975,\n", " -0.2815835773944855,\n", " 0.1792205423116684,\n", " 0.22410951554775238,\n", " -0.7459888458251953,\n", " 0.1693430244922638,\n", " -0.016773631796240807,\n", " 0.6000563502311707,\n", " 0.06864045560359955,\n", " 0.2390291392803192,\n", " 0.12970894575119019,\n", " 0.2297009378671646,\n", " -0.4995357096195221,\n", " -0.33177852630615234,\n", " -0.4573627710342407,\n", " -0.06518586724996567,\n", " 0.03891660273075104,\n", " 0.17271095514297485,\n", " 0.12027536332607269,\n", " -0.10431554913520813,\n", " 0.19360071420669556,\n", " -0.33982399106025696,\n", " -0.00645984522998333,\n", " -0.3594757318496704,\n", " -0.11395157873630524,\n", " -0.18740680813789368,\n", " -0.2704046666622162,\n", " 0.12293929606676102,\n", " -0.09605947136878967,\n", " -0.10634169727563858,\n", " -0.06050420552492142,\n", " -0.2133704572916031,\n", " 0.30162614583969116,\n", " 0.04430658370256424,\n", " 0.09314816445112228,\n", " 0.1548132449388504,\n", " -0.02835201285779476,\n", " 0.039710190147161484,\n", " -0.44119298458099365,\n", " -0.2537086009979248,\n", " 0.2379680722951889,\n", " -0.17252890765666962,\n", " 0.3960283100605011,\n", " -0.17634695768356323,\n", " -0.08040083199739456,\n", " -0.1298833042383194,\n", " 0.04181212559342384,\n", " 0.09067272394895554,\n", " 0.038354337215423584,\n", " 0.18320509791374207,\n", " -0.5645931959152222,\n", " -0.5657212734222412,\n", " 0.14629441499710083,\n", " -0.30270087718963623,\n", " -0.6864641904830933,\n", " 0.04715975746512413,\n", " -0.3644023537635803,\n", " -0.32979172468185425,\n", " 0.1014089584350586,\n", " -0.526332676410675,\n", " -0.013059106655418873,\n", " -0.28596898913383484,\n", " 0.05446254834532738,\n", " -0.25270017981529236,\n", " -0.19637764990329742,\n", " 0.47938019037246704,\n", " 0.1177106574177742,\n", " -0.3588416278362274,\n", " 0.22560517489910126,\n", " -0.005159219726920128,\n", " 0.11563891917467117,\n", " 0.0043479506857693195,\n", " 0.3798690438270569,\n", " -0.1336328685283661,\n", " 0.401653915643692,\n", " 0.1997891366481781,\n", " 0.04152151569724083,\n", " -0.06718429923057556,\n", " -0.26847168803215027,\n", " -0.12703749537467957,\n", " -0.4307255744934082,\n", " 0.1849222481250763,\n", " 0.21112705767154694,\n", " -0.14073066413402557,\n", " 0.1918361783027649,\n", " -0.06121741980314255,\n", " -0.01670803874731064,\n", " -0.0723605677485466,\n", " -0.4453851878643036,\n", " -0.0702662318944931,\n", " -0.03498619794845581,\n", " -0.03536796197295189,\n", " -0.11984459310770035,\n", " -0.09918621182441711,\n", " -0.5489485859870911,\n", " 0.02854590304195881,\n", " -0.6871364116668701,\n", " -0.5113005042076111,\n", " 0.47055870294570923,\n", " -0.2758708596229553,\n", " 0.04426101595163345,\n", " 0.06668119877576828,\n", " 0.1975831538438797,\n", " -0.05194515734910965,\n", " -0.014332271181046963,\n", " 0.34682825207710266,\n", " 0.830260157585144,\n", " -0.0906871035695076,\n", " 0.19789999723434448,\n", " -0.458773672580719,\n", " -0.11396896839141846,\n", " 0.1294064223766327,\n", " -0.08783095329999924,\n", " -0.2488825023174286,\n", " -0.07718512415885925,\n", " 0.00714835524559021,\n", " -0.10039379447698593,\n", " -0.28280022740364075,\n", " 0.07932525873184204,\n", " -0.4092657268047333,\n", " 0.1945122927427292,\n", " -0.7011146545410156,\n", " 0.04783907160162926,\n", " 0.2724194824695587,\n", " -0.19740448892116547,\n", " -0.11292748898267746,\n", " 0.04419387876987457,\n", " -1.2466992139816284,\n", " 0.0545806884765625,\n", " -0.285482257604599,\n", " 0.20300622284412384,\n", " -0.27049651741981506,\n", " 0.30075809359550476,\n", " 0.17970803380012512,\n", " 0.13615088164806366,\n", " -0.03503970801830292,\n", " 0.3314637541770935,\n", " -0.12426257133483887,\n", " 0.2102392613887787,\n", " 0.4342147409915924,\n", " 0.06444328278303146,\n", " 0.10012660175561905,\n", " 0.38557788729667664,\n", " 0.5523271560668945,\n", " 0.05513232201337814,\n", " 0.003449599025771022,\n", " -0.5921303629875183,\n", " 0.21603728830814362,\n", " 0.12925566732883453,\n", " 0.43849560618400574,\n", " 0.1070593073964119,\n", " 0.2530350089073181,\n", " -0.29785165190696716,\n", " 0.017411328852176666,\n", " 0.10014281421899796,\n", " -0.2432931810617447,\n", " -0.04419923201203346,\n", " 0.11925174295902252,\n", " -0.5888891220092773,\n", " -0.22216542065143585,\n", " -0.19013060629367828,\n", " 0.19721995294094086,\n", " -0.22614914178848267,\n", " -0.1556583046913147,\n", " 0.4855418801307678,\n", " 0.23194153606891632,\n", " -0.022312866523861885,\n", " 0.14078770577907562,\n", " 0.1696862131357193,\n", " -0.3648751974105835,\n", " 0.0754263773560524,\n", " 0.08876100927591324,\n", " -0.25089913606643677,\n", " 0.07604232430458069,\n", " -0.40176573395729065,\n", " -0.283502459526062,\n", " 0.1998007446527481,\n", " -0.6933411359786987,\n", " 0.5429620742797852,\n", " 0.46431881189346313,\n", " -0.1672714650630951,\n", " -0.2780211269855499,\n", " -0.6028540730476379,\n", " 0.025176597759127617,\n", " -0.31208255887031555,\n", " 0.2623409032821655,\n", " -0.28749552369117737,\n", " -0.42228177189826965,\n", " -0.5806496739387512,\n", " 0.0467679463326931,\n", " 0.18168124556541443,\n", " 0.2843245267868042,\n", " 0.15282505750656128,\n", " 1.0263004302978516,\n", " 0.19057077169418335,\n", " 0.3111707270145416,\n", " -0.20582912862300873,\n", " -0.09190928936004639,\n", " 0.32176291942596436,\n", " 0.01169245783239603,\n", " -0.30767062306404114,\n", " 0.15014736354351044,\n", " -0.11223019659519196,\n", " -0.3615647554397583,\n", " 0.1490207016468048,\n", " -0.288573294878006,\n", " -0.23007450997829437,\n", " -0.19590577483177185,\n", " 0.34845107793807983,\n", " 0.33362528681755066,\n", " -0.4242759943008423,\n", " 0.1223439872264862,\n", " 0.138687863945961,\n", " -0.26181715726852417,\n", " -0.18719792366027832,\n", " 0.2683289051055908,\n", " -0.36537885665893555,\n", " 0.4969222843647003,\n", " 0.5520139336585999,\n", " -0.3807309865951538,\n", " -0.5320466160774231,\n", " -0.428510457277298,\n", " -0.17233173549175262,\n", " -0.45984601974487305,\n", " 0.16499164700508118,\n", " -0.96857750415802,\n", " -0.06510382890701294,\n", " -0.25435128808021545,\n", " 0.11488322168588638,\n", " 0.050752513110637665,\n", " 0.13854660093784332,\n", " 0.13035327196121216,\n", " 0.13104279339313507,\n", " -0.16508759558200836,\n", " -0.31847965717315674,\n", " -0.6493499279022217,\n", " 0.16290873289108276,\n", " 0.13201597332954407,\n", " -0.36207315325737,\n", " 0.3510308861732483,\n", " 0.18211208283901215,\n", " 0.006193806882947683,\n", " 0.02034868486225605,\n", " 0.2610360383987427,\n", " 0.08036158978939056,\n", " -0.06207280606031418,\n", " -0.1869772970676422,\n", " -0.07909541577100754,\n", " -0.3966165781021118,\n", " -0.22777584195137024,\n", " 0.12282141298055649,\n", " 0.31047964096069336,\n", " 0.25585898756980896,\n", " 0.9724617004394531,\n", " -0.1868322640657425,\n", " -0.48708289861679077,\n", " 0.044405996799468994,\n", " 0.8022868037223816,\n", " -0.2681969106197357,\n", " -0.05838184803724289,\n", " -0.09741927683353424,\n", " -1.1750959157943726,\n", " -0.23988325893878937,\n", " -0.2250550091266632,\n", " -0.20485372841358185,\n", " -0.2177574634552002,\n", " 0.04695509374141693,\n", " -0.017833106219768524,\n", " -0.004558755084872246,\n", " -0.1409299522638321,\n", " -0.4174005091190338,\n", " 0.1863528937101364,\n", " 0.42617613077163696,\n", " -0.04078112170100212,\n", " 0.1566355973482132,\n", " -0.21063385903835297,\n", " -0.08970245718955994,\n", " -0.03911541402339935,\n", " -0.2710658311843872,\n", " -0.4018775522708893,\n", " 0.011371608823537827,\n", " 0.12112695723772049,\n", " 0.4758349061012268,\n", " 0.13304799795150757,\n", " 0.0671299546957016,\n", " -0.4526594877243042,\n", " 0.48682913184165955,\n", " -0.3403550982475281,\n", " -0.1615578979253769,\n", " 0.39011895656585693,\n", " -0.3032895624637604,\n", " -0.597567617893219,\n", " 0.43292319774627686,\n", " -0.18735116720199585,\n", " 0.06438340246677399,\n", " 0.28467050194740295,\n", " 0.132755845785141,\n", " -0.13792654871940613,\n", " -0.44805780053138733,\n", " -0.056477613747119904,\n", " 0.5293381810188293,\n", " 0.6345031261444092,\n", " 0.5352311730384827,\n", " -0.40237200260162354,\n", " 0.3529936969280243,\n", " 0.5364596843719482,\n", " -0.23888863623142242,\n", " 0.3601911962032318,\n", " 0.01700914092361927,\n", " 0.07204718887805939,\n", " -0.19037729501724243,\n", " 0.24906820058822632,\n", " 0.31772956252098083,\n", " -0.4152489900588989,\n", " 0.2575426697731018,\n", " -0.013344109058380127,\n", " 0.15195627510547638,\n", " -0.05490539222955704,\n", " -0.14369237422943115,\n", " 0.45117247104644775,\n", " 0.16562730073928833,\n", " -0.2515348196029663,\n", " -0.3636992871761322,\n", " 0.5099271535873413,\n", " -0.23936790227890015,\n", " -0.36827754974365234,\n", " 0.2266562283039093,\n", " -0.03396214544773102,\n", " 0.21759441494941711,\n", " -0.10454607754945755,\n", " -0.1942852884531021,\n", " -0.16547748446464539,\n", " 0.06321174651384354,\n", " 0.8520941734313965,\n", " -0.010652079246938229,\n", " -0.2622360587120056,\n", " 0.10559138655662537,\n", " -0.22415775060653687,\n", " -0.28376129269599915,\n", " 0.7073342800140381,\n", " -0.18223486840724945,\n", " -0.2636104226112366,\n", " 0.39141833782196045,\n", " -0.4653652012348175,\n", " 0.19876977801322937,\n", " 0.16182416677474976,\n", " -0.17091339826583862,\n", " -0.026396654546260834,\n", " -0.047233641147613525,\n", " 0.08662894368171692,\n", " 0.22704461216926575,\n", " -0.3040776252746582,\n", " 0.17515778541564941,\n", " 0.313981294631958,\n", " -0.2190503180027008,\n", " 0.11662120372056961,\n", " 0.30494627356529236,\n", " 0.11921829730272293,\n", " -0.29367896914482117,\n", " -0.19361670315265656,\n", " 0.2056964486837387,\n", " 0.28309500217437744,\n", " -0.2080502212047577,\n", " 0.2720191776752472,\n", " -0.18716448545455933,\n", " -0.3920838534832001,\n", " 0.7225678563117981,\n", " 0.4177919626235962,\n", " 0.7789713740348816,\n", " 0.41907012462615967,\n", " -11.641731262207031,\n", " 0.3660218119621277,\n", " 0.5530075430870056,\n", " -0.16211949288845062,\n", " -0.05637197941541672,\n", " 0.22002443671226501,\n", " 0.23758891224861145,\n", " -0.47760412096977234,\n", " 0.19608861207962036,\n", " -0.259152889251709,\n", " -0.43364423513412476,\n", " -0.25423362851142883,\n", " -0.05357019603252411,\n", " 0.12492852658033371,\n", " -0.15426324307918549,\n", " -0.007385904435068369,\n", " 0.06343364715576172,\n", " -0.8095794320106506,\n", " 0.19390791654586792,\n", " -0.08980251103639603,\n", " 0.3759259581565857,\n", " 0.011823058128356934,\n", " -0.08320900797843933,\n", " 0.17621400952339172,\n", " -0.36094775795936584,\n", " -0.27691423892974854,\n", " 0.20501713454723358,\n", " 0.20407667756080627,\n", " 0.27105948328971863,\n", " 0.1331809163093567,\n", " -0.052927978336811066,\n", " 0.03757071495056152,\n", " -0.3216475248336792,\n", " 0.03687451779842377,\n", " -0.32478830218315125,\n", " -0.39639824628829956,\n", " -0.08463717997074127,\n", " 0.003661362687125802,\n", " 0.16066569089889526,\n", " -0.0451054573059082,\n", " -0.46703222393989563,\n", " 0.03154708817601204,\n", " -0.3668876886367798,\n", " 0.22743283212184906,\n", " 0.24960078299045563,\n", " 0.6049240827560425,\n", " 0.6655563116073608,\n", " 0.9040587544441223,\n", " 0.13431811332702637,\n", " 0.22309833765029907,\n", " 0.030080832540988922,\n", " -0.7836287021636963,\n", " 0.17607314884662628,\n", " -0.6450658440589905,\n", " 0.3657878637313843,\n", " 0.12382756173610687,\n", " 0.6386221647262573,\n", " -0.9202437996864319,\n", " 0.06069759652018547,\n", " -0.5555225014686584,\n", " -0.22793759405612946,\n", " 0.5118421912193298,\n", " -0.001684104441665113,\n", " 0.23792573809623718,\n", " -0.30380621552467346,\n", " -0.10223044455051422,\n", " 0.2398999035358429,\n", " 0.00042391609167680144,\n", " 0.18785013258457184,\n", " -0.10286397486925125,\n", " 0.2314961701631546,\n", " -0.2988714873790741,\n", " 0.6257789134979248,\n", " 0.2241252213716507,\n", " -0.8578519821166992,\n", " 0.1720920354127884,\n", " 0.23349176347255707,\n", " -0.1295863389968872,\n", " 1.5785470008850098,\n", " 0.05885341390967369,\n", " -0.13793013989925385,\n", " 0.06914228945970535,\n", " 0.0008069131872616708,\n", " -0.75132155418396,\n", " -0.44711220264434814,\n", " 0.13937492668628693,\n", " 0.057183682918548584,\n", " 0.41267135739326477,\n", " 0.0033610595855861902,\n", " 0.4132635295391083,\n", " -0.18512599170207977,\n", " -0.4599449336528778,\n", " -0.06225401908159256,\n", " 0.051035862416028976,\n", " 0.1492413878440857,\n", " 0.6035064458847046,\n", " -0.7949504256248474,\n", " -0.04336424171924591,\n", " 0.040069565176963806,\n", " 0.10059989988803864,\n", " -0.5937477946281433,\n", " 0.017200792208313942,\n", " -0.21330690383911133,\n", " -0.4625603258609772,\n", " 0.49063703417778015,\n", " -0.03941044956445694,\n", " 0.26431310176849365,\n", " -0.3457089960575104,\n", " -0.29630887508392334,\n", " 0.2616633176803589,\n", " -0.47394976019859314,\n", " 0.20047037303447723,\n", " 0.26562023162841797,\n", " 0.038273975253105164,\n", " -0.10693095624446869,\n", " 0.06388095021247864,\n", " 0.21666431427001953,\n", " 0.5651407837867737,\n", " -0.617942750453949,\n", " -0.3628433048725128,\n", " -0.16021524369716644,\n", " 0.2522251307964325,\n", " 0.1426587700843811,\n", " 0.1527710258960724,\n", " -0.38561126589775085,\n", " 0.3938286006450653,\n", " -0.6636739373207092,\n", " -0.024683451279997826,\n", " 0.04174550995230675,\n", " 0.20186032354831696,\n", " 0.2848939895629883,\n", " 0.10539589822292328,\n", " 0.14261603355407715,\n", " 0.2575880289077759,\n", " -0.37592369318008423,\n", " -0.5571041107177734,\n", " -0.7221404314041138,\n", " -0.28993210196495056,\n", " 0.16914679110050201,\n", " -0.3400459587574005,\n", " -0.059686362743377686,\n", " -0.17866116762161255,\n", " -0.17740628123283386,\n", " -0.017083436250686646,\n", " 0.30778852105140686,\n", " -0.15124095976352692,\n", " 0.5517131090164185,\n", " 0.24106137454509735,\n", " -0.15253561735153198,\n", " -0.03405691683292389,\n", " -0.17470857501029968,\n", " -0.307629257440567,\n", " -0.08136006444692612,\n", " 0.07343447208404541,\n", " -0.03699152544140816,\n", " -0.60802161693573,\n", " -0.3886663615703583,\n", " 0.019294461235404015,\n", " 0.05182376131415367,\n", " 0.2529626190662384,\n", " 0.12911827862262726,\n", " 0.006090935785323381,\n", " -0.143777534365654,\n", " -0.16727063059806824,\n", " 0.4231288731098175,\n", " 0.3111613094806671,\n", " -0.008014354854822159,\n", " -0.1578742414712906,\n", " -0.3802776336669922,\n", " 0.026808248832821846,\n", " 0.00902531947940588,\n", " 0.20443004369735718,\n", " 0.45525598526000977,\n", " -0.15057595074176788,\n", " -0.320708692073822,\n", " -0.22298690676689148,\n", " -0.3138014078140259,\n", " 0.9430319666862488,\n", " -0.09270063042640686,\n", " -0.5397879481315613,\n", " 0.15933360159397125,\n", " 0.5853502750396729,\n", " -0.1411401331424713,\n", " -0.16852116584777832,\n", " 0.041057661175727844,\n", " 0.04863010346889496,\n", " -0.28179752826690674,\n", " -0.4492214024066925,\n", " 0.44329798221588135,\n", " 0.09168578684329987,\n", " 0.1944640427827835,\n", " 0.5672486424446106,\n", " 0.06213292106986046,\n", " -0.17098897695541382,\n", " 0.49922192096710205,\n", " 0.1532013714313507,\n", " -0.521971583366394,\n", " -0.04557052627205849,\n", " -0.566899836063385,\n", " 0.13631096482276917,\n", " 0.2048439383506775,\n", " -0.08758935332298279,\n", " 0.44949638843536377,\n", " 0.11763448268175125,\n", " -0.07289949804544449,\n", " 0.05881036818027496,\n", " 0.0875275582075119,\n", " 0.9216785430908203,\n", " 0.0036582748871296644,\n", " 0.17673027515411377,\n", " 0.4978952407836914,\n", " 0.18155363202095032,\n", " -0.26638272404670715,\n", " 0.4387916028499603,\n", " 0.27743399143218994,\n", " 0.3531687557697296,\n", " 0.3635578155517578,\n", " -0.2282429039478302,\n", " -0.25657063722610474,\n", " -0.20252855122089386,\n", " 0.18979160487651825,\n", " 0.5512166619300842,\n", " -0.5728986263275146,\n", " -0.6579872369766235,\n", " -0.13151712715625763,\n", " 0.5779194831848145,\n", " -0.24567089974880219,\n", " 0.3982071876525879,\n", " -0.1831027865409851,\n", " 0.3432382345199585,\n", " 0.5585726499557495,\n", " -0.7810022830963135,\n", " -0.03768403083086014,\n", " 0.04190274700522423,\n", " 0.17182129621505737,\n", " -0.08290223032236099,\n", " -0.3106067478656769,\n", " -0.02757103368639946,\n", " -0.20305363833904266,\n", " -0.17085212469100952,\n", " 0.44926583766937256,\n", " 0.2651204466819763,\n", " -0.7063924074172974,\n", " 0.0040161218494176865,\n", " 0.538738489151001,\n", " -0.7175710201263428,\n", " 0.00266255927272141,\n", " -0.367984414100647,\n", " 0.1352824717760086,\n", " 0.4294840097427368,\n", " 0.012930288910865784,\n", " -0.1591913104057312,\n", " 0.029734637588262558,\n", " -0.26147210597991943,\n", " -0.5985291004180908,\n", " 0.16545331478118896,\n", " 0.7523907423019409,\n", " -0.11937597393989563,\n", " 0.29320940375328064,\n", " -0.1285240352153778,\n", " -0.3446337878704071,\n", " -0.3038196265697479,\n", " -0.6602084636688232,\n", " -0.17042358219623566,\n", " -0.03485802188515663,\n", " -0.038960982114076614,\n", " -0.04650453105568886,\n", " -0.11615480482578278,\n", " -0.2969321608543396,\n", " 0.4172949194908142,\n", " -0.23840096592903137,\n", " 0.549351692199707,\n", " 0.48940181732177734,\n", " 0.40984830260276794,\n", " 0.032258838415145874,\n", " -0.02910117246210575,\n", " -0.26369336247444153,\n", " -0.026652680709958076,\n", " 0.06347940862178802,\n", " 0.556433379650116,\n", " -0.2075355052947998,\n", " -0.5438015460968018,\n", " 0.26629185676574707,\n", " -0.012004186399281025,\n", " -0.45762553811073303,\n", " 0.08487716317176819,\n", " -0.6645241975784302,\n", " 0.24914710223674774,\n", " -0.003804960288107395,\n", " -0.11379166692495346,\n", " 0.26097190380096436,\n", " 0.23348967730998993,\n", " 0.11794446408748627,\n", " -0.3582167625427246,\n", " 0.35632628202438354,\n", " 0.33869490027427673,\n", " -0.004989998880773783,\n", " 0.5828813314437866,\n", " 0.013686640188097954,\n", " 0.27335697412490845,\n", " -0.08144529908895493,\n", " 0.3100639581680298,\n", " -0.9879754185676575,\n", " -0.16503331065177917,\n", " -0.15192830562591553,\n", " -0.10439898073673248,\n", " -0.3457978367805481,\n", " -0.2984788715839386,\n", " 0.3824712038040161,\n", " 0.3030012249946594,\n", " 0.6237614750862122,\n", " 0.3150714337825775,\n", " -0.25217998027801514,\n", " -0.8148496150970459,\n", " -0.2404962182044983,\n", " 0.028981877490878105,\n", " 0.18406447768211365,\n", " -0.2693490982055664,\n", " 0.09202884137630463,\n", " -0.13908571004867554,\n", " 0.5293334126472473,\n", " -0.6449658870697021,\n", " -0.42141273617744446,\n", " 0.1133817583322525,\n", " 0.2779797315597534,\n", " -0.29404231905937195,\n", " 0.7621667385101318,\n", " -0.27009135484695435,\n", " 0.01250946894288063,\n", " 0.1036948561668396,\n", " 0.177698016166687,\n", " 0.2230219841003418,\n", " 0.6738936901092529,\n", " 0.08511170744895935,\n", " -0.7695906758308411,\n", " -0.09056327491998672,\n", " -0.017167508602142334,\n", " -0.2241983413696289,\n", " 0.20083363354206085,\n", " -0.5374873280525208,\n", " 0.19177475571632385,\n", " 0.2337803840637207,\n", " 0.6204757690429688,\n", " 0.4827491044998169],\n", " [-0.0648207738995552,\n", " -0.5601714849472046,\n", " -0.7288309931755066,\n", " -0.5139883756637573,\n", " -0.4731457531452179,\n", " -0.28251105546951294,\n", " -0.637114405632019,\n", " 0.3680819272994995,\n", " 0.045674167573451996,\n", " 0.6082571148872375,\n", " 0.3300197124481201,\n", " 0.5521803498268127,\n", " 0.06800225377082825,\n", " 0.306252658367157,\n", " -0.5155851244926453,\n", " -0.09731762856245041,\n", " -0.018736526370048523,\n", " 0.16821962594985962,\n", " 0.07122861593961716,\n", " 0.40810292959213257,\n", " 0.6084005832672119,\n", " 0.4005392789840698,\n", " 0.025223687291145325,\n", " 0.29978662729263306,\n", " -0.41458040475845337,\n", " 0.4650879502296448,\n", " -0.2117035835981369,\n", " 0.12217026203870773,\n", " -0.055797163397073746,\n", " -0.5042157173156738,\n", " 0.037849001586437225,\n", " 0.41748836636543274,\n", " 0.019253989681601524,\n", " 0.8930042386054993,\n", " -0.2438955157995224,\n", " -0.1834959238767624,\n", " 0.16205483675003052,\n", " -0.11209163069725037,\n", " 0.3852382302284241,\n", " -0.4638136029243469,\n", " 0.5172094106674194,\n", " 0.037708789110183716,\n", " 0.11516875773668289,\n", " 0.3036099672317505,\n", " 0.48244917392730713,\n", " 0.1837286651134491,\n", " 0.5318113565444946,\n", " -0.6997917890548706,\n", " 0.05923162400722504,\n", " -0.5341982841491699,\n", " -0.2732718586921692,\n", " -0.08089789748191833,\n", " 0.2940991520881653,\n", " 0.22292102873325348,\n", " -0.5785672664642334,\n", " -0.32521000504493713,\n", " 0.10255138576030731,\n", " 0.33704066276550293,\n", " -0.841282844543457,\n", " 0.14152061939239502,\n", " -0.3370279371738434,\n", " 0.49215564131736755,\n", " 0.0914132297039032,\n", " 0.12332753092050552,\n", " -0.1110205352306366,\n", " 0.41455915570259094,\n", " -0.009024033322930336,\n", " -0.029561961069703102,\n", " -0.373939573764801,\n", " -0.1807539314031601,\n", " 0.03587811067700386,\n", " -0.06871557235717773,\n", " 0.17617470026016235,\n", " -0.41548997163772583,\n", " 0.33639347553253174,\n", " -0.23223456740379333,\n", " 0.5465441346168518,\n", " -0.34286656975746155,\n", " -0.6612752079963684,\n", " -0.2320355474948883,\n", " 0.07182411849498749,\n", " 0.3852163553237915,\n", " -0.2342645674943924,\n", " 0.16110815107822418,\n", " -0.2423216700553894,\n", " 0.03703731298446655,\n", " 0.19558677077293396,\n", " 0.2644686698913574,\n", " 0.1460569053888321,\n", " -0.15462523698806763,\n", " 0.44600820541381836,\n", " 0.26356780529022217,\n", " -0.3230559825897217,\n", " -0.38004231452941895,\n", " 0.3209015130996704,\n", " 0.1794116497039795,\n", " 0.17752106487751007,\n", " 0.09836413711309433,\n", " -0.1797885298728943,\n", " -0.253633975982666,\n", " 0.046680301427841187,\n", " 0.057394400238990784,\n", " -0.03841375559568405,\n", " 0.24965603649616241,\n", " -0.6948146820068359,\n", " -0.4154902696609497,\n", " 0.0656731128692627,\n", " 0.11332261562347412,\n", " -0.8106739521026611,\n", " -0.34622541069984436,\n", " -0.21989001333713531,\n", " -0.4824276268482208,\n", " 0.4051637351512909,\n", " -0.45185530185699463,\n", " -0.0946708470582962,\n", " -0.05469135195016861,\n", " -0.06589457392692566,\n", " 0.09993898868560791,\n", " -0.34284570813179016,\n", " 0.49983060359954834,\n", " 0.0033212900161743164,\n", " -0.4304232597351074,\n", " 0.07889989018440247,\n", " -0.007459308952093124,\n", " 0.4239715039730072,\n", " -0.25756675004959106,\n", " 0.31488096714019775,\n", " -0.1677330583333969,\n", " 0.045180223882198334,\n", " 0.2772008180618286,\n", " 0.15235473215579987,\n", " -0.01372990570962429,\n", " -0.6354173421859741,\n", " -0.18613581359386444,\n", " 0.23087207973003387,\n", " 0.09513431042432785,\n", " 0.16636204719543457,\n", " -0.43349266052246094,\n", " -0.2332514226436615,\n", " -0.18484531342983246,\n", " 0.14579933881759644,\n", " 0.09585676342248917,\n", " -0.09921260178089142,\n", " 0.03247637301683426,\n", " 0.10520228743553162,\n", " -0.11674012243747711,\n", " -0.15933912992477417,\n", " -0.0646573007106781,\n", " -0.6095514297485352,\n", " -0.2394079566001892,\n", " -0.4380556344985962,\n", " -0.6490615010261536,\n", " -0.1216881275177002,\n", " -0.10711225122213364,\n", " 0.005344092845916748,\n", " -0.07490742951631546,\n", " 0.49208566546440125,\n", " 0.06548193097114563,\n", " -0.3599317669868469,\n", " 0.2353283166885376,\n", " 0.775847315788269,\n", " 0.25445646047592163,\n", " 0.5107861757278442,\n", " -0.6225501298904419,\n", " -0.01086548250168562,\n", " 0.21795065701007843,\n", " -0.12066733837127686,\n", " -0.030595697462558746,\n", " -0.18923433125019073,\n", " 0.15062354505062103,\n", " -0.030235039070248604,\n", " -0.40581798553466797,\n", " 0.08334098756313324,\n", " -0.5997238755226135,\n", " -0.058350011706352234,\n", " -0.8276466727256775,\n", " 0.02780280075967312,\n", " -0.07400233298540115,\n", " -0.08103956282138824,\n", " 0.07881395518779755,\n", " 0.12619081139564514,\n", " -1.8515106439590454,\n", " 0.255576491355896,\n", " -0.23254168033599854,\n", " -0.14251506328582764,\n", " -0.2413632869720459,\n", " 0.5213344693183899,\n", " 0.05684032291173935,\n", " 0.4777739644050598,\n", " 0.1354936957359314,\n", " -0.03192663937807083,\n", " -0.18077749013900757,\n", " 0.012649256736040115,\n", " 0.1781580150127411,\n", " 0.04796797037124634,\n", " 0.4883567988872528,\n", " 0.5344078540802002,\n", " 0.07517336308956146,\n", " 0.08413839340209961,\n", " 0.31767338514328003,\n", " -0.743497371673584,\n", " 0.17360059916973114,\n", " -0.22620046138763428,\n", " 0.22686609625816345,\n", " 0.36993861198425293,\n", " 0.35775822401046753,\n", " -0.06123759597539902,\n", " 0.010145988315343857,\n", " 0.11476285010576248,\n", " 0.07592245936393738,\n", " -0.21769657731056213,\n", " -0.3001062273979187,\n", " -0.25711023807525635,\n", " 0.13648103177547455,\n", " 0.03000476025044918,\n", " 0.8125519156455994,\n", " -0.152043879032135,\n", " 0.04189813882112503,\n", " 0.5781794786453247,\n", " 0.03763951361179352,\n", " -0.08327850699424744,\n", " -0.12445957958698273,\n", " 0.1949543058872223,\n", " -0.3381288945674896,\n", " -0.2722013294696808,\n", " 0.4955138862133026,\n", " -0.3355175852775574,\n", " 0.07248717546463013,\n", " -0.4575760066509247,\n", " -0.31398797035217285,\n", " -0.0008178539574146271,\n", " -0.8956255912780762,\n", " 0.27715617418289185,\n", " 0.4035504460334778,\n", " -0.22540199756622314,\n", " -0.2852040231227875,\n", " -0.03450009226799011,\n", " 0.33577316999435425,\n", " -0.3088703453540802,\n", " 0.22889649868011475,\n", " -0.4270733892917633,\n", " -0.5053249001502991,\n", " -0.757560133934021,\n", " 0.16323056817054749,\n", " 0.010226674377918243,\n", " 0.2734118103981018,\n", " -0.1591734141111374,\n", " 0.981870174407959,\n", " 0.6131259202957153,\n", " 0.5586094856262207,\n", " -0.12946833670139313,\n", " -0.31953078508377075,\n", " 0.560726523399353,\n", " -0.0866241380572319,\n", " -0.3244170546531677,\n", " -0.02256407029926777,\n", " -0.11558128893375397,\n", " -0.21292121708393097,\n", " 0.34426623582839966,\n", " -0.2670328617095947,\n", " -0.24119582772254944,\n", " 0.052858199924230576,\n", " 0.5299605131149292,\n", " 0.6631982326507568,\n", " -0.42634499073028564,\n", " 0.6780688762664795,\n", " 0.2936837077140808,\n", " -0.3862270712852478,\n", " -0.07484430074691772,\n", " 0.1535547971725464,\n", " -0.2611032724380493,\n", " 0.27674567699432373,\n", " -0.059578921645879745,\n", " -0.8115700483322144,\n", " -0.6202974319458008,\n", " -0.3042308986186981,\n", " 0.188609778881073,\n", " -0.33004552125930786,\n", " 0.19185827672481537,\n", " -0.853655993938446,\n", " -0.4640299379825592,\n", " 0.11844523996114731,\n", " -0.1921979784965515,\n", " -0.06618788093328476,\n", " -0.39657968282699585,\n", " 0.1034577339887619,\n", " 0.21126484870910645,\n", " -0.148246169090271,\n", " -0.2692546248435974,\n", " -0.8055323362350464,\n", " -0.062444817274808884,\n", " 0.11359157413244247,\n", " -0.13458779454231262,\n", " 0.44756215810775757,\n", " 0.41652458906173706,\n", " 0.015673615038394928,\n", " 0.3474903702735901,\n", " -0.021153444424271584,\n", " 0.03428415209054947,\n", " -0.18457946181297302,\n", " 0.006560284644365311,\n", " -0.20493485033512115,\n", " 0.171548992395401,\n", " -0.23722919821739197,\n", " 0.32418501377105713,\n", " 0.1796925663948059,\n", " 0.0831204354763031,\n", " 1.0461218357086182,\n", " -0.44392696022987366,\n", " -0.6576195359230042,\n", " -0.01919076219201088,\n", " 0.9212107062339783,\n", " -0.29571494460105896,\n", " -0.18320304155349731,\n", " -0.13580387830734253,\n", " -1.132625699043274,\n", " -0.35940423607826233,\n", " -0.4618679881095886,\n", " -0.28561869263648987,\n", " -0.4031994640827179,\n", " 0.16965016722679138,\n", " -0.21715861558914185,\n", " -0.08229604363441467,\n", " -0.32676589488983154,\n", " -0.3232302665710449,\n", " 0.24049870669841766,\n", " 0.6021530628204346,\n", " 0.04347743093967438,\n", " -0.209060400724411,\n", " -0.16313791275024414,\n", " 0.06496522575616837,\n", " 0.03967851400375366,\n", " -0.40864652395248413,\n", " -0.33976274728775024,\n", " -0.046027202159166336,\n", " -0.005188635550439358,\n", " 0.058880776166915894,\n", " 0.0321168527007103,\n", " -0.1447698175907135,\n", " 0.06925049424171448,\n", " 0.6364021897315979,\n", " -0.5102192163467407,\n", " -0.45495641231536865,\n", " 0.03499821200966835,\n", " -0.278734028339386,\n", " -0.10810155421495438,\n", " 0.15126237273216248,\n", " -0.6254886984825134,\n", " 0.06641495227813721,\n", " 0.20479699969291687,\n", " 0.09947545826435089,\n", " -0.046382784843444824,\n", " -0.16405516862869263,\n", " -0.20540368556976318,\n", " 0.7233040928840637,\n", " 0.4036218523979187,\n", " 0.21826907992362976,\n", " -0.37668341398239136,\n", " 0.5499210953712463,\n", " 0.4996236264705658,\n", " -0.9802402257919312,\n", " 0.18088358640670776,\n", " -0.13211362063884735,\n", " -0.19271007180213928,\n", " 0.12388142943382263,\n", " 0.3094484508037567,\n", " 0.1659678816795349,\n", " -0.366643488407135,\n", " 0.07096423208713531,\n", " -0.15936002135276794,\n", " 0.31332695484161377,\n", " -0.19862031936645508,\n", " -0.17975430190563202,\n", " 0.18212074041366577,\n", " 0.05612201243638992,\n", " 0.18402206897735596,\n", " -0.40293896198272705,\n", " 0.30953249335289,\n", " -0.27336716651916504,\n", " -0.6357355117797852,\n", " -0.03547372668981552,\n", " 0.047501325607299805,\n", " -0.08326595276594162,\n", " -0.22636382281780243,\n", " -0.37057560682296753,\n", " -0.27068036794662476,\n", " 0.4042843282222748,\n", " 0.5013402700424194,\n", " 0.20244529843330383,\n", " -0.3212963044643402,\n", " 0.19525206089019775,\n", " 0.1234760656952858,\n", " -0.1585262417793274,\n", " 0.2271120548248291,\n", " -0.1468270719051361,\n", " -0.38590526580810547,\n", " 0.432914674282074,\n", " -0.05158238857984543,\n", " 0.2372186928987503,\n", " 0.6058276295661926,\n", " -0.3005836606025696,\n", " -0.2626449167728424,\n", " 0.039258815348148346,\n", " -0.03686431422829628,\n", " 0.24807152152061462,\n", " -0.2818634510040283,\n", " 0.2577167749404907,\n", " 0.029732175171375275,\n", " -0.04551811143755913,\n", " -0.06772096455097198,\n", " -0.3636494576931,\n", " 0.612147331237793,\n", " -0.09285692870616913,\n", " -0.0957474410533905,\n", " -0.5014721155166626,\n", " -0.022913319990038872,\n", " -0.1571536511182785,\n", " 0.38392674922943115,\n", " -0.19102169573307037,\n", " -0.178020641207695,\n", " 0.3653925657272339,\n", " 0.38549429178237915,\n", " 0.49311503767967224,\n", " 0.27068066596984863,\n", " -11.438440322875977,\n", " 0.265405535697937,\n", " 0.6868913769721985,\n", " -0.47423380613327026,\n", " -0.02113715186715126,\n", " 0.22601419687271118,\n", " 0.08371030539274216,\n", " -0.1378926932811737,\n", " 0.05923555791378021,\n", " -0.15881142020225525,\n", " -0.31119203567504883,\n", " 0.03607290983200073,\n", " 0.10358021408319473,\n", " 0.2742474377155304,\n", " -0.39641568064689636,\n", " -0.19558432698249817,\n", " 0.04090259224176407,\n", " -0.9703243970870972,\n", " 0.12681318819522858,\n", " 0.06491967290639877,\n", " 0.8553196787834167,\n", " -0.12866777181625366,\n", " 0.25796207785606384,\n", " 0.337567001581192,\n", " -0.29014015197753906,\n", " -0.36393624544143677,\n", " -0.2707810401916504,\n", " -0.08124517649412155,\n", " 0.026068065315485,\n", " 0.3546096384525299,\n", " -0.040593840181827545,\n", " 0.21715696156024933,\n", " 0.12802958488464355,\n", " 0.10805999487638474,\n", " -0.1963319480419159,\n", " -0.4844217896461487,\n", " -0.2525525689125061,\n", " -0.07286226749420166,\n", " 0.16315433382987976,\n", " 0.010944589972496033,\n", " -0.12852692604064941,\n", " 0.07498784363269806,\n", " -0.4273608922958374,\n", " 0.5708109140396118,\n", " 0.30974268913269043,\n", " 0.5141735076904297,\n", " 1.400611400604248,\n", " 0.5714818239212036,\n", " 0.08540098369121552,\n", " -0.2631087005138397,\n", " -0.08227705210447311,\n", " -0.975861132144928,\n", " 0.2231377363204956,\n", " -0.6155647039413452,\n", " 0.05882048234343529,\n", " 0.045945532619953156,\n", " 0.7060705423355103,\n", " -0.45815882086753845,\n", " -0.3684438467025757,\n", " -0.024645671248435974,\n", " -0.21441614627838135,\n", " 0.0889449343085289,\n", " -0.08071427792310715,\n", " 0.24810537695884705,\n", " -0.1880117803812027,\n", " 0.0005564335733652115,\n", " 0.3779721260070801,\n", " -0.4376388192176819,\n", " -0.013606859371066093,\n", " -0.012510553002357483,\n", " -0.1893647462129593,\n", " -0.09841714799404144,\n", " 0.026030059903860092,\n", " 0.3332041800022125,\n", " -0.32220393419265747,\n", " 0.2432144582271576,\n", " -0.05701013281941414,\n", " -0.15700644254684448,\n", " 1.1199297904968262,\n", " 0.1361091285943985,\n", " -0.23364485800266266,\n", " 0.3050157427787781,\n", " -0.11909164488315582,\n", " -0.08420044928789139,\n", " -0.7593413591384888,\n", " -0.32534050941467285,\n", " -0.02736438438296318,\n", " 0.23913171887397766,\n", " 0.6435930728912354,\n", " 0.5005511045455933,\n", " -0.17646817862987518,\n", " -0.47160661220550537,\n", " -0.06511819362640381,\n", " 0.17870119214057922,\n", " 0.299577534198761,\n", " 0.7200746536254883,\n", " -0.6301978230476379,\n", " 0.2990838289260864,\n", " 0.11465991288423538,\n", " -0.06254388391971588,\n", " -0.4227169156074524,\n", " -0.2667514681816101,\n", " -0.2950814366340637,\n", " -0.4849179983139038,\n", " 0.1882718801498413,\n", " -0.047298070043325424,\n", " -0.08788923919200897,\n", " -0.07749020308256149,\n", " 0.07980240881443024,\n", " 0.1676902323961258,\n", " -0.43001675605773926,\n", " 0.10876041650772095,\n", " 0.31447896361351013,\n", " 0.21034005284309387,\n", " -0.35815557837486267,\n", " 0.08125007152557373,\n", " 0.35249337553977966,\n", " 0.7837635278701782,\n", " -0.19917169213294983,\n", " -0.5146862268447876,\n", " -0.23403358459472656,\n", " -0.11862634122371674,\n", " 0.5254921317100525,\n", " 0.2999652624130249,\n", " -0.29253557324409485,\n", " 0.20723821222782135,\n", " -0.620477557182312,\n", " -0.09542164951562881,\n", " -0.30094778537750244,\n", " 0.25948548316955566,\n", " 0.6408584117889404,\n", " -0.06120781600475311,\n", " 0.2342914342880249,\n", " 0.5121847987174988,\n", " -0.39649030566215515,\n", " -0.43187931180000305,\n", " -0.7640522718429565,\n", " 0.10868971049785614,\n", " -0.08106020838022232,\n", " -0.47930338978767395,\n", " 0.06537271291017532,\n", " -0.045851580798625946,\n", " -0.08188006281852722,\n", " -0.2261401116847992,\n", " 0.3529761731624603,\n", " -0.03479409217834473,\n", " 0.4194261133670807,\n", " 0.3706766963005066,\n", " 0.06349517405033112,\n", " 0.12139858305454254,\n", " -0.1318378746509552,\n", " -0.2584220767021179,\n", " -0.25302600860595703,\n", " -0.33064478635787964,\n", " -0.37714534997940063,\n", " -0.33775410056114197,\n", " -0.23941975831985474,\n", " 0.10932222008705139,\n", " 0.20073655247688293,\n", " -0.5071535110473633,\n", " 0.22392942011356354,\n", " 0.1010560542345047,\n", " -0.06148980185389519,\n", " 0.044548794627189636,\n", " 0.2454114854335785,\n", " 0.27230435609817505,\n", " 0.05290666222572327,\n", " -0.43692275881767273,\n", " -0.035133183002471924,\n", " -0.10074728727340698,\n", " 0.17913556098937988,\n", " 0.292396605014801,\n", " -0.09999293088912964,\n", " -0.13579578697681427,\n", " -0.5724308490753174,\n", " -0.21040667593479156,\n", " -0.015836264938116074,\n", " 1.3064208030700684,\n", " -0.241350919008255,\n", " -0.07703058421611786,\n", " -0.10136708617210388,\n", " 0.19711162149906158,\n", " -0.3450890779495239,\n", " -0.011513306759297848,\n", " 0.024603920057415962,\n", " 0.16431620717048645,\n", " -0.10188685357570648,\n", " -0.09061741828918457,\n", " 0.4485245645046234,\n", " -0.02197575382888317,\n", " 0.4040101170539856,\n", " 0.4373551905155182,\n", " 0.05429357290267944,\n", " -0.24955637753009796,\n", " 0.09778079390525818,\n", " -0.023112528026103973,\n", " -0.2564523220062256,\n", " -0.04881411790847778,\n", " -0.3872672915458679,\n", " -0.18996059894561768,\n", " 0.2313660830259323,\n", " -0.3196879029273987,\n", " 0.01194029301404953,\n", " -0.30296480655670166,\n", " 0.05421692878007889,\n", " -0.03408701717853546,\n", " 0.22841864824295044,\n", " 1.578257441520691,\n", " -0.11940783262252808,\n", " 0.25298744440078735,\n", " 0.6720185279846191,\n", " 0.2424883097410202,\n", " -0.03629959374666214,\n", " 0.3927643895149231,\n", " 0.06107558310031891,\n", " 0.4442882835865021,\n", " 0.38407596945762634,\n", " -0.09007307142019272,\n", " -0.6413401365280151,\n", " -0.16962572932243347,\n", " 0.14727723598480225,\n", " 0.3275677263736725,\n", " -0.5065059661865234,\n", " -0.6375719308853149,\n", " -0.23505157232284546,\n", " 0.4058622121810913,\n", " 0.18389572203159332,\n", " 0.37686675786972046,\n", " -0.32331132888793945,\n", " 0.5201140642166138,\n", " 0.4749390482902527,\n", " -0.6028018593788147,\n", " 0.10936233401298523,\n", " -0.251738965511322,\n", " 0.31019115447998047,\n", " 0.08005710691213608,\n", " -0.4996483027935028,\n", " -0.011521167121827602,\n", " 0.19609302282333374,\n", " -0.4344659447669983,\n", " 0.23813682794570923,\n", " 0.5019975900650024,\n", " -0.4126373529434204,\n", " 0.03648647665977478,\n", " 0.5433768033981323,\n", " -0.5457215309143066,\n", " -0.041738808155059814,\n", " 0.1550254225730896,\n", " -0.08583180606365204,\n", " 0.45809757709503174,\n", " -0.015234923921525478,\n", " -0.5531338453292847,\n", " 0.24054360389709473,\n", " -0.1707010567188263,\n", " -0.780963122844696,\n", " 0.346110999584198,\n", " 0.5906148552894592,\n", " 0.050411637872457504,\n", " 0.03500477597117424,\n", " 0.3088997006416321,\n", " -0.3215941786766052,\n", " 0.19330814480781555,\n", " -0.21450290083885193,\n", " -0.1169026792049408,\n", " -0.00898793712258339,\n", " -0.1577148139476776,\n", " 0.1529499888420105,\n", " -0.18210813403129578,\n", " 0.36814114451408386,\n", " 0.21429923176765442,\n", " -0.4126664996147156,\n", " 0.35362422466278076,\n", " 0.5028055906295776,\n", " 0.4638359546661377,\n", " -0.10652841627597809,\n", " -0.4493403434753418,\n", " 0.014997248537838459,\n", " 0.25783294439315796,\n", " -0.24792209267616272,\n", " 0.4804432988166809,\n", " -0.17324310541152954,\n", " -0.3305455446243286,\n", " 0.2857770621776581,\n", " 0.0969945639371872,\n", " -0.3740934133529663,\n", " 0.17485804855823517,\n", " -0.35059189796447754,\n", " 0.05099032446742058,\n", " -0.13675779104232788,\n", " -0.30312976241111755,\n", " 0.5954789519309998,\n", " 0.24418190121650696,\n", " -0.016593964770436287,\n", " -0.4114746153354645,\n", " 0.1797628402709961,\n", " 0.44978392124176025,\n", " -0.015300022438168526,\n", " 0.7455285787582397,\n", " 0.18756693601608276,\n", " 0.5239377617835999,\n", " -0.16932351887226105,\n", " 0.17063747346401215,\n", " -0.5783197283744812,\n", " -0.24582026898860931,\n", " 0.11113040894269943,\n", " -0.14729738235473633,\n", " -0.313827246427536,\n", " -0.4038233160972595,\n", " 0.27344217896461487,\n", " 0.25614219903945923,\n", " 0.6502538323402405,\n", " 0.30207359790802,\n", " -0.014790041372179985,\n", " -0.8559430837631226,\n", " -0.1104782223701477,\n", " 0.16447167098522186,\n", " -0.052042119204998016,\n", " -0.01432079542428255,\n", " 0.34737399220466614,\n", " -0.23760202527046204,\n", " 0.2641652524471283,\n", " -0.5803239941596985,\n", " -0.10549790412187576,\n", " -0.014833975583314896,\n", " 0.21913912892341614,\n", " -0.13154374063014984,\n", " 0.4490673243999481,\n", " -0.24762031435966492,\n", " 0.13647863268852234,\n", " 0.06070892885327339,\n", " 0.03165220841765404,\n", " 0.2995430827140808,\n", " 0.943413496017456,\n", " 0.01654817909002304,\n", " -0.8203943967819214,\n", " 0.11616985499858856,\n", " 0.3305555582046509,\n", " -0.2783198356628418,\n", " -0.20304813981056213,\n", " -0.8533036708831787,\n", " 0.19350579380989075,\n", " 0.05387571081519127,\n", " 0.6868716478347778,\n", " 0.49180224537849426]]" ] }, "execution_count": 17, "metadata": {}, "output_type": "execute_result" } ], "source": [ "processed_df['TargetVec'][0]" ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
JRCT IDNCT NoJapicCTI NoTitleTargetJTargetTargetEnglish研究・治験の目的試験等のフェーズ試験の種類...Inclusion CriteriaExclusion CriteriaAge MinimumAge MaximumGenderDiscontinuation CriteriaKeywordIntervention(s)TargetWordTargetVec
31jRCT2061240081NCT06393374NaN術前薬物療法後の手術時に病理学的完全奏効を達成していないトリプルネガティブ乳癌患者を対象に、...トリプルネガティブ乳癌トリプルネガティブ乳癌Triple negative breast cancer術前薬物療法後の手術時に病理学的完全奏効を達成していないトリプルネガティブ乳癌患者を対象に、...3NaN...-Has centrally confirmed TNBC, as defined by t...-Has a known germline breast cancer gene (BRCA...18age old overNo limitBothNaNNaN-Arm 1: MK-2870 4mg/kg intravenous (IV) every ...[Triple Negative, Breast Cancer][[-0.21876227855682373, -0.4577382504940033, -...
32jRCT2031240476NCT06312176NaNホルモン受容体陽性・ヒト上皮成長因子受容体2陰性(HR+/HER2-)の切除不能な局所進行又...HR+/HER2-の切除不能局所進行又は転移性乳癌の患者HR+/HER2-の切除不能局所進行又は転移性乳癌の患者HR+/HER2 unresectable locally advanced or meta...HR+/HER2-の切除不能な局所進行又は転移性乳癌患者を対象にMK-2870の単剤及びペム...3NaN...-Has unresectable locally advanced or metastat...-Has breast cancer amenable to treatment with ...18age old overNo limitBothNaNNaNArm A:MK-2870 Participants receive 4 mg/kg of ...[Hr+/Her2 Unresectable Locally Advanced, Metas...[[0.04888693988323212, -0.7584289908409119, -0...
157jRCT2052240059NaNNaN遺伝子HSD17B4高メチル化を有するHER2陽性ER陰性乳癌における非手術療法の有用性を評...乳がん乳がんBreast cancerHSD17B4高メチル化(HSD17B4 hypermethylation:HH)を有するH...2NaN...1. Histologically confirmed invasive breast ca...1. History of other malignancy within the last...20age old overNo limitFemaleNaNNaNOmitting breast surgery after preoperative che...[Breast Cancer][[-0.09860841184854507, -0.629493236541748, -0...
170jRCT2031240096NCT06380751NaN本治験の主要目的は、BRCA1、BRCA2 又は PALB2 変異を有し、HR 陽性、HER...進行乳癌進行乳癌Advanced Breast CancerTreatment3NaN...- Adult females, pre/peri-menopausal and/or po...- Participants with history of MDS/AML or with...18age old overNo limitBothNaNNaNExperimental: Arm 1: saruparib (AZD5305) plus ...[Advanced Breast Cancer][[-0.21163925528526306, -0.5019860863685608, -...
209jRCT2031230750NCT06188559NaN治療歴のある HER2 陽性又は HER2 低発現の切除不能又は転移性乳癌の被験者を対象に,...HER2 陽性又は HER2 低発現の切除不能又は転移性乳癌HER2 陽性又は HER2 低発現の切除不能又は転移性乳癌HER2-positive or HER2-low unresectable or meta...治療2NaN...(1) Male or female, aged >=18 years at the tim...(1) Presence of brain or subdural metastases, ...18age old overNo limitBothNaNNaNGeneric Name:NA Study Treatment in dose optimi...[Her2-Positive, Her2-Low Unresectable, Metasta...[[-0.08892004191875458, -0.8978654146194458, -...
215jRCT2031230723NCT06112379NaN未治療のトリプルネガティブ又はホルモン受容体低発現/HER2陰性乳癌の成人患者を対象として、...乳癌乳癌Breast Cancer未治療のトリプルネガティブ又はホルモン受容体低発現/HER2陰性乳癌の成人患者を対象として、...3NaN...1. Participant must be >= 18 years at the time...1. As judged by the investigator, any evidence...18age old overNo limitBothNaNNaN- Experimental arm: Dato-DXd plus durvalumab n...[Breast Cancer][[-0.09860841184854507, -0.629493236541748, -0...
224jRCT2051230196NCT06105632NaNCDK4/6 阻害薬による前治療で進行したホルモン受容体陽性HER2 陰性の進行または転移乳...ホルモン受容体(HR)陽性ヒト上皮増殖因子受容体2(HER2)陰性の進行または転移乳癌ホルモン受容体(HR)陽性ヒト上皮増殖因子受容体2(HER2)陰性の進行または転移乳癌HR-positive, HER2-negative Advanced or Metasta...CDK4/6阻害薬による前治療で進行したHR陽性HER2陰性の進行または転移乳癌患者を対象に...3NaN...* Histological confirmation of breast cancer w...* Any medical or psychiatric condition that ma...18age old overNo limitBothNaNNaNArm A (Experimental Arm) PF-07220060 plus Fulv...[Hr-Positive, Her2-Negative Advanced, Metastat...[[-0.083187997341156, -0.7571865916252136, -0....
234jRCT2031230677NCT06206837NaN18歳以上のER陽性/HER2陰性の進行または転移乳癌患者を対象として,経口タンパク質分解誘...エストロゲン受容体陽性/ヒト上皮増殖因子受容体 2 陰性の進行または転移乳癌エストロゲン受容体陽性/ヒト上皮増殖因子受容体 2 陰性の進行または転移乳癌ER+/HER2- advanced or metastatic breast cancer進行乳癌患者を対象として,vepdegestrantとPF-07220060を併用投与したと...1-2NaN...Inclusion Criteria: * Histological or cytologi...Exclusion Criteria: * visceral crisis at risk ...18age old overNo limitBothNaNNaNDrug: vepdegestrant Daily oral dosages of vepd...[Er+/Her2- Advanced, Metastatic Breast Cancer][[-0.154923215508461, -0.39443543553352356, -0...
240jRCT2061230102NCT06103864NaNProgrammed death-ligand(PD-L1)陽性の局所再発手術不能又は転移性...乳癌乳癌Breast CancerPD-L1陽性の局所再発手術不能または転移性TNBC患者を対象に、デュルバルマブ併用または非...3NaN...Histologically or cytologically documented loc...As judged by investigator, severe or uncontrol...18age old overNo limitBothNaNNaNArm 1: Dato-DXd + durvalumab Arm 2: Investigat...[Breast Cancer][[-0.09860841184854507, -0.629493236541748, -0...
307jRCT2061230074NCT05952557NaN根治的局所治療(化学療法の併用または非併用)を受けて疾患の兆候のない、再発リスクが中間~高リ...乳がん、早期乳がん乳がん、早期乳がんBreast Cancer, Early Breast CancerTreatment3NaN...- Women and Men; 18 years or more at the time ...- Inoperable locally advanced or metastatic br...18age old overNo limitNaNNaNNaNarm A: continue with SoC ET as directed by inv...[Breast Cancer, Early Breast Cancer][[-0.09860841184854507, -0.629493236541748, -0...
342jRCT2051230094NCT05794906NaN前立腺癌の高リスク生化学的再発(BCR)患者を対象としたアンドロゲン遮断療法(ADT)を併用...前立腺癌前立腺癌prostate cancerBAY 1841788(darolutamide)とADTの24ヵ月間併用投与によって、プラ...3NaN...- Histologically or cytologically confirmed ad...- Pathological finding consistent with small c...18age old overNo limitMaleNaNNaNDrug: Darolutamide (BAY1841788, Nubeqa) Coated...[Prostate Cancer][[0.020208006724715233, -0.7650324106216431, -...
351jRCT2031230279NCT05862285NaNGENENTECH社及び/又はF.HOFFMANN-LA ROCHE LTDが依頼した試験に...Cancer本継続投与試験の目的は,親治験から移行する時点でまだ治験治療を受けており,その地域でその治療...3NaN...- Eligible for continuing Roche IMP-based ther...- Meet any of the study treatment discontinuat...18age old overNo limitBothNaNNaNIpatasertib: Ipatasertib will be administered ...[Cancer][[-0.21449315547943115, -0.7045395374298096, -...
385jRCT2031230121NCT04557449NaN進行固形がん患者を対象として,PF-07220060 の単剤投与および併用投与の安全性,忍容...進行または転移性の乳癌,前立腺癌,およびその他の固形癌進行または転移性の乳癌,前立腺癌,およびその他の固形癌advanced or metastatic BC, prostate cancer or ...パート1(用量漸増,食事の影響,DDIの評価パート) 1A: PF-07220060のMTD...1NaN...Disease * Part 1A/1D/1E: HR+HER2-BC, HR+HER2+B...* Part 1D: participants who have had a gastrec...18age old overNo limitBothNaNNaN* Part 1A/1D/1E: PF-07220060 (CDK4 inhibitor) ...[Advanced, Metastatic Bc, Prostate Cancer, Oth...[[-0.4654146134853363, -0.4114530086517334, -0...
388jRCT2031230109NCT05514054NaNEMBER-4:2~5年間の術後内分泌療法による前治療歴を有する再発高リスクのER+、HER...乳癌乳癌Breast Neoplasms早期乳癌患者を対象としたimlunestrantと標準的な内分泌療法の比較試験3NaN...-Have a diagnosis of ER+, HER2- early-stage, r...-Have any evidence of metastatic disease (incl...18age old overNo limitBothNaNNaN-Drug: Imlunestrant Administered orally. Other...[Breast Neoplasms][[-0.3341570198535919, -0.6972700953483582, -0...
391jRCT2031230090NaNNaNMELK阻害剤OTS167POにおける転移性・進行性乳がん患者を対象とした安全性、忍容性およ...再発・難治性の局所進行性・転移性乳がん及びトリプルネガティブ乳がん再発・難治性の局所進行性・転移性乳がん及びトリプルネガティブ乳がんRelapsed/Refractory Locally Advanced or Metast...再発・難治性の局所進行性または転移性乳がん患者に対して、OTS167を経口カプセルで投与する...1NaN...Dose Escalation and Dose Expansion Cohorts 1. ...Dose Escalation and Expansion Cohorts 1. Women...18age old overNo limitFemaleNaNNaNThis is a Phase I dose escalation/expansion mu...[Relapsed/Refract, Y Locally Advanced, Metasta...[[-0.015294715762138367, -0.4993850290775299, ...
392jRCT2031230096NCT05774951NaN根治的局所領域療法(化学療法の併用または非併用)および標準補助内分泌療法(ET)を少なくとも...乳がん、早期乳がん乳がん、早期乳がんBreast Cancer, Early Breast CancerTreatment3NaN...- Women and Men, greater than or equal to 18 y...- Inoperable locally advanced or metastatic br...18age old overNo limitBothNaNNaNarm A: continue with SoC ET as directed by inv...[Breast Cancer, Early Breast Cancer][[-0.09860841184854507, -0.629493236541748, -0...
402jRCT2061230009NCT05485766NaNgBRCA1/2遺伝子変異を有するトリプルネガティブ原発乳がんに対するプラチナ製剤、PARP...トリプルネガティブ乳がんトリプルネガティブ乳がんTriple Negative Breast Neoplasms術前療法としてgBRCA変異陽性手術可能または局所進行TNBCに対してペムブロリズマブ+パク...2NaN...1)Male/female subjects who are at least 18 yea...1) Subjects who has a positive urine pregnancy...18age old exceedNo limitBothNaNTriple Negative Breast Cancer, Breast Neoplasm...Drug: Pembrolizumab 200 mg fixed dose, IV, eve...[Triple Negative, Breast Neoplasms][[-0.21876227855682373, -0.4577382504940033, -...
463jRCT2061220087NCT05629585NaN術前薬物療法後の外科的切除時に乳房及び/又は腋窩リンパ節に浸潤性残存病変を有するステージI~...乳癌乳癌Breast Cancer術前薬物療法後の外科的切除時に乳房および/または腋窩リンパ節に浸潤性残存病変を有するI~II...3NaN...Participant must be >= 18 years at the time of...Stage IV (metastatic) TNBC. History of prior i...18age old over130age old underBothNaNNaNArm 1: Dato-DXd 6 mg/kg IV Q3W x 8 cycles + Du...[Breast Cancer][[-0.09860841184854507, -0.629493236541748, -0...
515jRCT2031220276NCT05307705NaNPIK3CA H1047R変異を有する進行乳がん患者及びその他の固形がん患者を対象としたLO...乳がん乳がんBreast CancerLOXO-783 の単独投与及び他の抗がん剤との併用投与における 第 2 相試験の推奨用量、...1NaN...-Have advanced breast cancer or another solid ...-Medical Conditions -Colorectal cancer -Endome...18age old overNo limitBothNaNNaN-Drug: LOXO-783 Oral Other Name: LY3849524 -Dr...[Breast Cancer][[-0.09860841184854507, -0.629493236541748, -0...
555jRCT2031220034NCT04862663NaN局所進行(切除不能)又は転移性のホルモン受容体陽性/ヒト上皮細胞成長因子受容体2 陰性乳癌を...局所進行(切除不能)又は転移性乳癌局所進行(切除不能)又は転移性乳癌Locally Advanced (Inoperable) or Metastatic Br...Treatment3NaN...Key inclusion criteria for both phases: 1. Adu...Key exclusion criteria for both phases: 1. His...18age old over99age old underBothNaNNaNCapivasertib: PO BD 4 days on /3 days off per ...[Locally Advanced (Inoperable), Metastatic Bre...[[-0.15552400052547455, -0.8326742053031921, -...
590jRCT2031210585NCT05123482NaN進行又は転移性固形がん患者を対象としたAZD8205の単独療法及び他の抗がん剤との併用療法に...乳癌、胆道癌、卵巣癌、子宮内膜癌乳癌、胆道癌、卵巣癌、子宮内膜癌Breast Cancer, Biliary Tract Carcinoma, Ovaria...進行又は転移性固形がんに対する治療法候補としての新規化合物AZD8205の研究1-2NaN...- Age18 years or more - Relapsed/metastatic so...- Treatment with any of the following: 1. Nitr...18age old overNo limitBothNaNNaNSub-study1 AZD8205 Monotherapy AZD8205 is an a...[Breast Cancer, Biliary Tract Carcinoma, Ovari...[[-0.09860852360725403, -0.6294932961463928, -...
593jRCT2031210560NCT05061823NaN複数のBintrafusp alfa(M7824)臨床試験の被験者を対象に長期データを収集す...固形癌固形癌Cancer本治験は、実施中のbintrafusp alfaの親試験( (NCT02517398, NC...3NaN...- Participants who are currently enrolled in a...- Participants who are pregnant or currently i...18age old overNo limitBothNaNNaNParticipants who are continuing treatment with...[Cancer][[-0.21449315547943115, -0.7045395374298096, -...
600jRCT2041210123NCT05114746NaN進行性PSMA陽性転移性去勢抵抗性前立腺がん(mCRPC)を有する患者を対象に177Lu-P...前立腺癌前立腺癌Prostate Cancer本治験の目的は、進行性PSMA陽性mCRPCの日本人患者に177Lu-PSMA-617を投与...2NaN...- ECOG performance status: 1. Post-taxane popu...- Previous treatment with any of the following...20age old overNo limitMaleNaNNaNRadiation: 177Lu-PSMA-617 administered intrave...[Prostate Cancer][[0.020208006724715233, -0.7650324106216431, -...
629jRCT2052210099NaNNaN乳がんを有する成人女性及び健康成人女性を対象とした乳房用マイクロ波画像診断装置IGS-000...乳がん乳がんBreast cancer本治験の目的は,乳がん又はその疑いのある者,並びに乳がん又はその疑いがない者を対象に乳房画像...2NaN...Breast cancer (including suspected) (1) One of...(1) There is trauma with bleeding on the breas...20age old overNo limitFemaleNaNNaNThe test using IGS-0001 will be performed twic...[Breast Cancer][[-0.09860841184854507, -0.629493236541748, -0...
691jRCT2031200384NCT04221542NaN転移性去勢抵抗性前立腺がん患者を対象としたAMG 509の安全性、忍容性、薬物動態及び有効性...前立腺がん前立腺がんProstate Cancer成人被験者のAMG 509の安全性及び忍容性を評価し、最大耐量(MTD)又は第II 相推奨用...1NaN...- Parts 1, 2, and 5: Participants with histolo...- Pathological finding consistent with pure sm...18age old overNo limitMaleNaNNaN- Experimental: Part 1: AMG 509 Intravenous (I...[Prostate Cancer][[0.020208006724715233, -0.7650324106216431, -...
698jRCT2071200086NCT04640623NaN膀胱全摘除術に不適格である,又は膀胱全摘除術を選択しなかった,カルメット・ゲラン桿菌(BCG...膀胱癌膀胱癌Bladder Cancer試験の目的は、高グレードTa又はT1乳頭状癌の併発の有無を問わない上皮内癌(CIS)患者にT...2NaN...- Histologically confirmed diagnosis of persis...- Histologically confirmed, muscle-invasive, l...18age old overNo limitBothNaNNaNTAR-200 Cohort 1: TAR-200 and Cetrelimab: TAR-...[Bladder Cancer][[-0.206207275390625, -0.5713697671890259, -0....
729jRCT2031200057NaNNaN治療抵抗性乳がんを対象としたTDM-812の腫瘍内投与法の安全性評価を目的とした第I相試験乳がん乳がんBreast cancerTDM-812の腫瘍内投与の安全性および忍容性を評価し、今後の臨床評価に用いる腫瘍内投与にお...1NaN...<Disease Characteristics> 1)Patients with inop...1)Patients correspond to either of the followi...20age old overNo limitFemaleNaNBreast cancerFor the target tumor, the dose settled at each...[Breast Cancer][[-0.09860841184854507, -0.629493236541748, -0...
\n", "

27 rows × 41 columns

\n", "
" ], "text/plain": [ " JRCT ID NCT No JapicCTI No \\\n", "31 jRCT2061240081 NCT06393374 NaN \n", "32 jRCT2031240476 NCT06312176 NaN \n", "157 jRCT2052240059 NaN NaN \n", "170 jRCT2031240096 NCT06380751 NaN \n", "209 jRCT2031230750 NCT06188559 NaN \n", "215 jRCT2031230723 NCT06112379 NaN \n", "224 jRCT2051230196 NCT06105632 NaN \n", "234 jRCT2031230677 NCT06206837 NaN \n", "240 jRCT2061230102 NCT06103864 NaN \n", "307 jRCT2061230074 NCT05952557 NaN \n", "342 jRCT2051230094 NCT05794906 NaN \n", "351 jRCT2031230279 NCT05862285 NaN \n", "385 jRCT2031230121 NCT04557449 NaN \n", "388 jRCT2031230109 NCT05514054 NaN \n", "391 jRCT2031230090 NaN NaN \n", "392 jRCT2031230096 NCT05774951 NaN \n", "402 jRCT2061230009 NCT05485766 NaN \n", "463 jRCT2061220087 NCT05629585 NaN \n", "515 jRCT2031220276 NCT05307705 NaN \n", "555 jRCT2031220034 NCT04862663 NaN \n", "590 jRCT2031210585 NCT05123482 NaN \n", "593 jRCT2031210560 NCT05061823 NaN \n", "600 jRCT2041210123 NCT05114746 NaN \n", "629 jRCT2052210099 NaN NaN \n", "691 jRCT2031200384 NCT04221542 NaN \n", "698 jRCT2071200086 NCT04640623 NaN \n", "729 jRCT2031200057 NaN NaN \n", "\n", " Title \\\n", "31 術前薬物療法後の手術時に病理学的完全奏効を達成していないトリプルネガティブ乳癌患者を対象に、... \n", "32 ホルモン受容体陽性・ヒト上皮成長因子受容体2陰性(HR+/HER2-)の切除不能な局所進行又... \n", "157 遺伝子HSD17B4高メチル化を有するHER2陽性ER陰性乳癌における非手術療法の有用性を評... \n", "170 本治験の主要目的は、BRCA1、BRCA2 又は PALB2 変異を有し、HR 陽性、HER... \n", "209 治療歴のある HER2 陽性又は HER2 低発現の切除不能又は転移性乳癌の被験者を対象に,... \n", "215 未治療のトリプルネガティブ又はホルモン受容体低発現/HER2陰性乳癌の成人患者を対象として、... \n", "224 CDK4/6 阻害薬による前治療で進行したホルモン受容体陽性HER2 陰性の進行または転移乳... \n", "234 18歳以上のER陽性/HER2陰性の進行または転移乳癌患者を対象として,経口タンパク質分解誘... \n", "240 Programmed death-ligand(PD-L1)陽性の局所再発手術不能又は転移性... \n", "307 根治的局所治療(化学療法の併用または非併用)を受けて疾患の兆候のない、再発リスクが中間~高リ... \n", "342 前立腺癌の高リスク生化学的再発(BCR)患者を対象としたアンドロゲン遮断療法(ADT)を併用... \n", "351 GENENTECH社及び/又はF.HOFFMANN-LA ROCHE LTDが依頼した試験に... \n", "385 進行固形がん患者を対象として,PF-07220060 の単剤投与および併用投与の安全性,忍容... \n", "388 EMBER-4:2~5年間の術後内分泌療法による前治療歴を有する再発高リスクのER+、HER... \n", "391 MELK阻害剤OTS167POにおける転移性・進行性乳がん患者を対象とした安全性、忍容性およ... \n", "392 根治的局所領域療法(化学療法の併用または非併用)および標準補助内分泌療法(ET)を少なくとも... \n", "402 gBRCA1/2遺伝子変異を有するトリプルネガティブ原発乳がんに対するプラチナ製剤、PARP... \n", "463 術前薬物療法後の外科的切除時に乳房及び/又は腋窩リンパ節に浸潤性残存病変を有するステージI~... \n", "515 PIK3CA H1047R変異を有する進行乳がん患者及びその他の固形がん患者を対象としたLO... \n", "555 局所進行(切除不能)又は転移性のホルモン受容体陽性/ヒト上皮細胞成長因子受容体2 陰性乳癌を... \n", "590 進行又は転移性固形がん患者を対象としたAZD8205の単独療法及び他の抗がん剤との併用療法に... \n", "593 複数のBintrafusp alfa(M7824)臨床試験の被験者を対象に長期データを収集す... \n", "600 進行性PSMA陽性転移性去勢抵抗性前立腺がん(mCRPC)を有する患者を対象に177Lu-P... \n", "629 乳がんを有する成人女性及び健康成人女性を対象とした乳房用マイクロ波画像診断装置IGS-000... \n", "691 転移性去勢抵抗性前立腺がん患者を対象としたAMG 509の安全性、忍容性、薬物動態及び有効性... \n", "698 膀胱全摘除術に不適格である,又は膀胱全摘除術を選択しなかった,カルメット・ゲラン桿菌(BCG... \n", "729 治療抵抗性乳がんを対象としたTDM-812の腫瘍内投与法の安全性評価を目的とした第I相試験 \n", "\n", " TargetJ \\\n", "31 トリプルネガティブ乳癌 \n", "32 HR+/HER2-の切除不能局所進行又は転移性乳癌の患者 \n", "157 乳がん \n", "170 進行乳癌 \n", "209 HER2 陽性又は HER2 低発現の切除不能又は転移性乳癌 \n", "215 乳癌 \n", "224 ホルモン受容体(HR)陽性ヒト上皮増殖因子受容体2(HER2)陰性の進行または転移乳癌 \n", "234 エストロゲン受容体陽性/ヒト上皮増殖因子受容体 2 陰性の進行または転移乳癌 \n", "240 乳癌 \n", "307 乳がん、早期乳がん \n", "342 前立腺癌 \n", "351 癌 \n", "385 進行または転移性の乳癌,前立腺癌,およびその他の固形癌 \n", "388 乳癌 \n", "391 再発・難治性の局所進行性・転移性乳がん及びトリプルネガティブ乳がん \n", "392 乳がん、早期乳がん \n", "402 トリプルネガティブ乳がん \n", "463 乳癌 \n", "515 乳がん \n", "555 局所進行(切除不能)又は転移性乳癌 \n", "590 乳癌、胆道癌、卵巣癌、子宮内膜癌 \n", "593 固形癌 \n", "600 前立腺癌 \n", "629 乳がん \n", "691 前立腺がん \n", "698 膀胱癌 \n", "729 乳がん \n", "\n", " Target \\\n", "31 トリプルネガティブ乳癌 \n", "32 HR+/HER2-の切除不能局所進行又は転移性乳癌の患者 \n", "157 乳がん \n", "170 進行乳癌 \n", "209 HER2 陽性又は HER2 低発現の切除不能又は転移性乳癌 \n", "215 乳癌 \n", "224 ホルモン受容体(HR)陽性ヒト上皮増殖因子受容体2(HER2)陰性の進行または転移乳癌 \n", "234 エストロゲン受容体陽性/ヒト上皮増殖因子受容体 2 陰性の進行または転移乳癌 \n", "240 乳癌 \n", "307 乳がん、早期乳がん \n", "342 前立腺癌 \n", "351 癌 \n", "385 進行または転移性の乳癌,前立腺癌,およびその他の固形癌 \n", "388 乳癌 \n", "391 再発・難治性の局所進行性・転移性乳がん及びトリプルネガティブ乳がん \n", "392 乳がん、早期乳がん \n", "402 トリプルネガティブ乳がん \n", "463 乳癌 \n", "515 乳がん \n", "555 局所進行(切除不能)又は転移性乳癌 \n", "590 乳癌、胆道癌、卵巣癌、子宮内膜癌 \n", "593 固形癌 \n", "600 前立腺癌 \n", "629 乳がん \n", "691 前立腺がん \n", "698 膀胱癌 \n", "729 乳がん \n", "\n", " TargetEnglish \\\n", "31 Triple negative breast cancer \n", "32 HR+/HER2 unresectable locally advanced or meta... \n", "157 Breast cancer \n", "170 Advanced Breast Cancer \n", "209 HER2-positive or HER2-low unresectable or meta... \n", "215 Breast Cancer \n", "224 HR-positive, HER2-negative Advanced or Metasta... \n", "234 ER+/HER2- advanced or metastatic breast cancer \n", "240 Breast Cancer \n", "307 Breast Cancer, Early Breast Cancer \n", "342 prostate cancer \n", "351 Cancer \n", "385 advanced or metastatic BC, prostate cancer or ... \n", "388 Breast Neoplasms \n", "391 Relapsed/Refractory Locally Advanced or Metast... \n", "392 Breast Cancer, Early Breast Cancer \n", "402 Triple Negative Breast Neoplasms \n", "463 Breast Cancer \n", "515 Breast Cancer \n", "555 Locally Advanced (Inoperable) or Metastatic Br... \n", "590 Breast Cancer, Biliary Tract Carcinoma, Ovaria... \n", "593 Cancer \n", "600 Prostate Cancer \n", "629 Breast cancer \n", "691 Prostate Cancer \n", "698 Bladder Cancer \n", "729 Breast cancer \n", "\n", " 研究・治験の目的 試験等のフェーズ 試験の種類 ... \\\n", "31 術前薬物療法後の手術時に病理学的完全奏効を達成していないトリプルネガティブ乳癌患者を対象に、... 3 NaN ... \n", "32 HR+/HER2-の切除不能な局所進行又は転移性乳癌患者を対象にMK-2870の単剤及びペム... 3 NaN ... \n", "157 HSD17B4高メチル化(HSD17B4 hypermethylation:HH)を有するH... 2 NaN ... \n", "170 Treatment 3 NaN ... \n", "209 治療 2 NaN ... \n", "215 未治療のトリプルネガティブ又はホルモン受容体低発現/HER2陰性乳癌の成人患者を対象として、... 3 NaN ... \n", "224 CDK4/6阻害薬による前治療で進行したHR陽性HER2陰性の進行または転移乳癌患者を対象に... 3 NaN ... \n", "234 進行乳癌患者を対象として,vepdegestrantとPF-07220060を併用投与したと... 1-2 NaN ... \n", "240 PD-L1陽性の局所再発手術不能または転移性TNBC患者を対象に、デュルバルマブ併用または非... 3 NaN ... \n", "307 Treatment 3 NaN ... \n", "342 BAY 1841788(darolutamide)とADTの24ヵ月間併用投与によって、プラ... 3 NaN ... \n", "351 本継続投与試験の目的は,親治験から移行する時点でまだ治験治療を受けており,その地域でその治療... 3 NaN ... \n", "385 パート1(用量漸増,食事の影響,DDIの評価パート) 1A: PF-07220060のMTD... 1 NaN ... \n", "388 早期乳癌患者を対象としたimlunestrantと標準的な内分泌療法の比較試験 3 NaN ... \n", "391 再発・難治性の局所進行性または転移性乳がん患者に対して、OTS167を経口カプセルで投与する... 1 NaN ... \n", "392 Treatment 3 NaN ... \n", "402 術前療法としてgBRCA変異陽性手術可能または局所進行TNBCに対してペムブロリズマブ+パク... 2 NaN ... \n", "463 術前薬物療法後の外科的切除時に乳房および/または腋窩リンパ節に浸潤性残存病変を有するI~II... 3 NaN ... \n", "515 LOXO-783 の単独投与及び他の抗がん剤との併用投与における 第 2 相試験の推奨用量、... 1 NaN ... \n", "555 Treatment 3 NaN ... \n", "590 進行又は転移性固形がんに対する治療法候補としての新規化合物AZD8205の研究 1-2 NaN ... \n", "593 本治験は、実施中のbintrafusp alfaの親試験( (NCT02517398, NC... 3 NaN ... \n", "600 本治験の目的は、進行性PSMA陽性mCRPCの日本人患者に177Lu-PSMA-617を投与... 2 NaN ... \n", "629 本治験の目的は,乳がん又はその疑いのある者,並びに乳がん又はその疑いがない者を対象に乳房画像... 2 NaN ... \n", "691 成人被験者のAMG 509の安全性及び忍容性を評価し、最大耐量(MTD)又は第II 相推奨用... 1 NaN ... \n", "698 試験の目的は、高グレードTa又はT1乳頭状癌の併発の有無を問わない上皮内癌(CIS)患者にT... 2 NaN ... \n", "729 TDM-812の腫瘍内投与の安全性および忍容性を評価し、今後の臨床評価に用いる腫瘍内投与にお... 1 NaN ... \n", "\n", " Inclusion Criteria \\\n", "31 -Has centrally confirmed TNBC, as defined by t... \n", "32 -Has unresectable locally advanced or metastat... \n", "157 1. Histologically confirmed invasive breast ca... \n", "170 - Adult females, pre/peri-menopausal and/or po... \n", "209 (1) Male or female, aged >=18 years at the tim... \n", "215 1. Participant must be >= 18 years at the time... \n", "224 * Histological confirmation of breast cancer w... \n", "234 Inclusion Criteria: * Histological or cytologi... \n", "240 Histologically or cytologically documented loc... \n", "307 - Women and Men; 18 years or more at the time ... \n", "342 - Histologically or cytologically confirmed ad... \n", "351 - Eligible for continuing Roche IMP-based ther... \n", "385 Disease * Part 1A/1D/1E: HR+HER2-BC, HR+HER2+B... \n", "388 -Have a diagnosis of ER+, HER2- early-stage, r... \n", "391 Dose Escalation and Dose Expansion Cohorts 1. ... \n", "392 - Women and Men, greater than or equal to 18 y... \n", "402 1)Male/female subjects who are at least 18 yea... \n", "463 Participant must be >= 18 years at the time of... \n", "515 -Have advanced breast cancer or another solid ... \n", "555 Key inclusion criteria for both phases: 1. Adu... \n", "590 - Age18 years or more - Relapsed/metastatic so... \n", "593 - Participants who are currently enrolled in a... \n", "600 - ECOG performance status: 1. Post-taxane popu... \n", "629 Breast cancer (including suspected) (1) One of... \n", "691 - Parts 1, 2, and 5: Participants with histolo... \n", "698 - Histologically confirmed diagnosis of persis... \n", "729 1)Patients with inop... \n", "\n", " Exclusion Criteria Age Minimum \\\n", "31 -Has a known germline breast cancer gene (BRCA... 18age old over \n", "32 -Has breast cancer amenable to treatment with ... 18age old over \n", "157 1. History of other malignancy within the last... 20age old over \n", "170 - Participants with history of MDS/AML or with... 18age old over \n", "209 (1) Presence of brain or subdural metastases, ... 18age old over \n", "215 1. As judged by the investigator, any evidence... 18age old over \n", "224 * Any medical or psychiatric condition that ma... 18age old over \n", "234 Exclusion Criteria: * visceral crisis at risk ... 18age old over \n", "240 As judged by investigator, severe or uncontrol... 18age old over \n", "307 - Inoperable locally advanced or metastatic br... 18age old over \n", "342 - Pathological finding consistent with small c... 18age old over \n", "351 - Meet any of the study treatment discontinuat... 18age old over \n", "385 * Part 1D: participants who have had a gastrec... 18age old over \n", "388 -Have any evidence of metastatic disease (incl... 18age old over \n", "391 Dose Escalation and Expansion Cohorts 1. Women... 18age old over \n", "392 - Inoperable locally advanced or metastatic br... 18age old over \n", "402 1) Subjects who has a positive urine pregnancy... 18age old exceed \n", "463 Stage IV (metastatic) TNBC. History of prior i... 18age old over \n", "515 -Medical Conditions -Colorectal cancer -Endome... 18age old over \n", "555 Key exclusion criteria for both phases: 1. His... 18age old over \n", "590 - Treatment with any of the following: 1. Nitr... 18age old over \n", "593 - Participants who are pregnant or currently i... 18age old over \n", "600 - Previous treatment with any of the following... 20age old over \n", "629 (1) There is trauma with bleeding on the breas... 20age old over \n", "691 - Pathological finding consistent with pure sm... 18age old over \n", "698 - Histologically confirmed, muscle-invasive, l... 18age old over \n", "729 1)Patients correspond to either of the followi... 20age old over \n", "\n", " Age Maximum Gender Discontinuation Criteria \\\n", "31 No limit Both NaN \n", "32 No limit Both NaN \n", "157 No limit Female NaN \n", "170 No limit Both NaN \n", "209 No limit Both NaN \n", "215 No limit Both NaN \n", "224 No limit Both NaN \n", "234 No limit Both NaN \n", "240 No limit Both NaN \n", "307 No limit NaN NaN \n", "342 No limit Male NaN \n", "351 No limit Both NaN \n", "385 No limit Both NaN \n", "388 No limit Both NaN \n", "391 No limit Female NaN \n", "392 No limit Both NaN \n", "402 No limit Both NaN \n", "463 130age old under Both NaN \n", "515 No limit Both NaN \n", "555 99age old under Both NaN \n", "590 No limit Both NaN \n", "593 No limit Both NaN \n", "600 No limit Male NaN \n", "629 No limit Female NaN \n", "691 No limit Male NaN \n", "698 No limit Both NaN \n", "729 No limit Female NaN \n", "\n", " Keyword \\\n", "31 NaN \n", "32 NaN \n", "157 NaN \n", "170 NaN \n", "209 NaN \n", "215 NaN \n", "224 NaN \n", "234 NaN \n", "240 NaN \n", "307 NaN \n", "342 NaN \n", "351 NaN \n", "385 NaN \n", "388 NaN \n", "391 NaN \n", "392 NaN \n", "402 Triple Negative Breast Cancer, Breast Neoplasm... \n", "463 NaN \n", "515 NaN \n", "555 NaN \n", "590 NaN \n", "593 NaN \n", "600 NaN \n", "629 NaN \n", "691 NaN \n", "698 NaN \n", "729 Breast cancer \n", "\n", " Intervention(s) \\\n", "31 -Arm 1: MK-2870 4mg/kg intravenous (IV) every ... \n", "32 Arm A:MK-2870 Participants receive 4 mg/kg of ... \n", "157 Omitting breast surgery after preoperative che... \n", "170 Experimental: Arm 1: saruparib (AZD5305) plus ... \n", "209 Generic Name:NA Study Treatment in dose optimi... \n", "215 - Experimental arm: Dato-DXd plus durvalumab n... \n", "224 Arm A (Experimental Arm) PF-07220060 plus Fulv... \n", "234 Drug: vepdegestrant Daily oral dosages of vepd... \n", "240 Arm 1: Dato-DXd + durvalumab Arm 2: Investigat... \n", "307 arm A: continue with SoC ET as directed by inv... \n", "342 Drug: Darolutamide (BAY1841788, Nubeqa) Coated... \n", "351 Ipatasertib: Ipatasertib will be administered ... \n", "385 * Part 1A/1D/1E: PF-07220060 (CDK4 inhibitor) ... \n", "388 -Drug: Imlunestrant Administered orally. Other... \n", "391 This is a Phase I dose escalation/expansion mu... \n", "392 arm A: continue with SoC ET as directed by inv... \n", "402 Drug: Pembrolizumab 200 mg fixed dose, IV, eve... \n", "463 Arm 1: Dato-DXd 6 mg/kg IV Q3W x 8 cycles + Du... \n", "515 -Drug: LOXO-783 Oral Other Name: LY3849524 -Dr... \n", "555 Capivasertib: PO BD 4 days on /3 days off per ... \n", "590 Sub-study1 AZD8205 Monotherapy AZD8205 is an a... \n", "593 Participants who are continuing treatment with... \n", "600 Radiation: 177Lu-PSMA-617 administered intrave... \n", "629 The test using IGS-0001 will be performed twic... \n", "691 - Experimental: Part 1: AMG 509 Intravenous (I... \n", "698 TAR-200 Cohort 1: TAR-200 and Cetrelimab: TAR-... \n", "729 For the target tumor, the dose settled at each... \n", "\n", " TargetWord \\\n", "31 [Triple Negative, Breast Cancer] \n", "32 [Hr+/Her2 Unresectable Locally Advanced, Metas... \n", "157 [Breast Cancer] \n", "170 [Advanced Breast Cancer] \n", "209 [Her2-Positive, Her2-Low Unresectable, Metasta... \n", "215 [Breast Cancer] \n", "224 [Hr-Positive, Her2-Negative Advanced, Metastat... \n", "234 [Er+/Her2- Advanced, Metastatic Breast Cancer] \n", "240 [Breast Cancer] \n", "307 [Breast Cancer, Early Breast Cancer] \n", "342 [Prostate Cancer] \n", "351 [Cancer] \n", "385 [Advanced, Metastatic Bc, Prostate Cancer, Oth... \n", "388 [Breast Neoplasms] \n", "391 [Relapsed/Refract, Y Locally Advanced, Metasta... \n", "392 [Breast Cancer, Early Breast Cancer] \n", "402 [Triple Negative, Breast Neoplasms] \n", "463 [Breast Cancer] \n", "515 [Breast Cancer] \n", "555 [Locally Advanced (Inoperable), Metastatic Bre... \n", "590 [Breast Cancer, Biliary Tract Carcinoma, Ovari... \n", "593 [Cancer] \n", "600 [Prostate Cancer] \n", "629 [Breast Cancer] \n", "691 [Prostate Cancer] \n", "698 [Bladder Cancer] \n", "729 [Breast Cancer] \n", "\n", " TargetVec \n", "31 [[-0.21876227855682373, -0.4577382504940033, -... \n", "32 [[0.04888693988323212, -0.7584289908409119, -0... \n", "157 [[-0.09860841184854507, -0.629493236541748, -0... \n", "170 [[-0.21163925528526306, -0.5019860863685608, -... \n", "209 [[-0.08892004191875458, -0.8978654146194458, -... \n", "215 [[-0.09860841184854507, -0.629493236541748, -0... \n", "224 [[-0.083187997341156, -0.7571865916252136, -0.... \n", "234 [[-0.154923215508461, -0.39443543553352356, -0... \n", "240 [[-0.09860841184854507, -0.629493236541748, -0... \n", "307 [[-0.09860841184854507, -0.629493236541748, -0... \n", "342 [[0.020208006724715233, -0.7650324106216431, -... \n", "351 [[-0.21449315547943115, -0.7045395374298096, -... \n", "385 [[-0.4654146134853363, -0.4114530086517334, -0... \n", "388 [[-0.3341570198535919, -0.6972700953483582, -0... \n", "391 [[-0.015294715762138367, -0.4993850290775299, ... \n", "392 [[-0.09860841184854507, -0.629493236541748, -0... \n", "402 [[-0.21876227855682373, -0.4577382504940033, -... \n", "463 [[-0.09860841184854507, -0.629493236541748, -0... \n", "515 [[-0.09860841184854507, -0.629493236541748, -0... \n", "555 [[-0.15552400052547455, -0.8326742053031921, -... \n", "590 [[-0.09860852360725403, -0.6294932961463928, -... \n", "593 [[-0.21449315547943115, -0.7045395374298096, -... \n", "600 [[0.020208006724715233, -0.7650324106216431, -... \n", "629 [[-0.09860841184854507, -0.629493236541748, -0... \n", "691 [[0.020208006724715233, -0.7650324106216431, -... \n", "698 [[-0.206207275390625, -0.5713697671890259, -0.... \n", "729 [[-0.09860841184854507, -0.629493236541748, -0... \n", "\n", "[27 rows x 41 columns]" ] }, "execution_count": 18, "metadata": {}, "output_type": "execute_result" } ], "source": [ "get_matched_df(processed_df, \"breast cancer\", model, threshold=0.925)" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
JRCT IDNCT NoJapicCTI NoTitleTargetJTargetTargetEnglish研究・治験の目的試験等のフェーズ試験の種類...Inclusion CriteriaExclusion CriteriaAge MinimumAge MaximumGenderDiscontinuation CriteriaKeywordIntervention(s)TargetWordTargetVec
82jRCT2051240121NCT06413706NaN放射線療法後の悪性神経膠腫の小児および若年成人を対象に、アベマシクリブ+テモゾロミドとテモゾ...悪性神経膠腫悪性神経膠腫High-Grade Glioma放射線療法後の悪性神経膠腫を有する小児および若年成人を対象に、アベマシクリブとテモゾロミドの...2NaN...Subjects required to meet all the folloiwng cr...Patients who meets any of the following criter...No limit21age old notNaNNaNNaNDrug: Abemaciclib Administered orally Other Na...[High-Grade Glioma][[-0.12244764715433121, -0.5778073668479919, -...
87jRCT2051240119NCT03423628NaN多形性膠芽腫患者及び固形がんの脳転移患者を対象に、放射線療法併用下でAZD1390を漸増投与...再発多形性膠芽腫再発多形性膠芽腫Recurrent Glioblastoma MultiformeTreatment1NaN...- Provision of formalin-fixed paraffin embedde...- Administration of chemotherapy or any invest...18age old over130age old underBothNaNNaNAZD1390 + Radiation Therapy Drug: AZD1390 - AZ...[Recurrent, Glioblastoma Multif, Me][[-0.2750183045864105, -0.5264511704444885, -0...
175jRCT2031240090NaNNaN再発悪性神経膠腫に対する治療用放射性薬剤64Cu-ATSMの有効性を検証するランダム化比較医...悪性神経膠腫悪性神経膠腫Malignant glioma再発・難治性悪性神経膠腫を対象として、64Cu-diacetyl-bis(N4-methyl...3NaN...1) Histologically diagnosed as high grade glio...1) Have a history or merger of other malignanc...18age old over75age old underBothNaNglioblastoma, grade3/4 astrocytoma, grade3 oli...Group A: BPC Therapy Depending on the patient'...[Malignant Glioma][[-0.33767956495285034, -0.4648125171661377, -...
263jRCT2041230136NaNNaN再発膠芽腫に対するTUG1を標的とした核酸医薬医師主導第I相試験再発膠芽腫再発膠芽腫recurrent glioblastoma再発膠芽腫患者を対象としてTUG1ASOを投与した場合の投与時の安全性を検討し、至適投与量を...1NaN...(1) Patients with a histological diagnosis of ...(1) Patients with extracerebral metastases. (2...18age old over75age old underBothNaNNaNDosing frequency: 1 time /week Dose Levels Lev...[Recurrent, Glioblastoma][[-0.27501848340034485, -0.5264514088630676, -...
361jRCT2051230069NaNNaN神経膠腫患者に対するロムスチン療法とプロカルバジン、ロムスチン、ビンクリスチン併⽤療法の安全...神経膠腫神経膠腫Glioma神経膠腫患者におけるロムスチン療法とプロカルバジン、ロムスチン、ビンクリスチン併用療法の安全...1NaN...<Cohort 1> All of the following items shall be...<Common to Cohort 1 and Cohort 2> 1) Active mu...18age old overNo limitBothNaNNaN<cohort1> Lomustine 130 mg/m2 orally every 6 w...[Glioma][[-0.21631155908107758, -0.5687925219535828, -...
401jRCT2032230060NaNNaN初発IDH野生型低悪性度神経膠腫に対する交流電場腫瘍治療システムの有効性と安全性を検証する多...IDH野生型神経膠腫(グレードⅢ)(退形成性星細胞腫)IDH野生型神経膠腫(グレードIII)(退形成性星細胞腫)IDH wild-type glioma (grade III) (anaplastic a...初発IDH野生型低悪性度神経膠腫を対象に、放射線化学療法後のテモゾロミド維持療法期における交...2NaN...At the time of enrollment, patients will be in...Any of the following conditions shall not appl...18age old overNo limitBothNaNGliomaThe patient using the product should shave all...[Idh Wild-Type Glioma (Grade Iii) (Anaplastic ...[[-0.3403506577014923, -0.5657796859741211, -0...
414jRCT2031230007NaNNaNBRAF融合遺伝子陽性の進行・再発の低悪性度神経膠腫または膵癌に対するビニメチニブの第Ⅱ相医...低悪性度神経膠腫、膵癌低悪性度神経膠腫、膵癌Low-grade glioma, pancreatic cancerBRAF融合遺伝子または遺伝子再構成陽性の切除不能または再発の低悪性度神経膠腫(コホート A...2NaN...Inclusion criteria for both cohort A and B 1) ...1) Active double primary cancer (but not (1)-(...12age old overNo limitBothNaNBRAF fusion gene, BRAF rearrangement, low-grad...Binimetinib is administered 45 mg orally, twic...[Low-Grade Glioma, Pancreatic Cancer][[-0.18604964017868042, -0.547483503818512, -0...
636jRCT2031210299NaNNaN再発悪性神経膠腫患者を対象としたDSP-0390の第1相試験再発悪性神経膠腫再発悪性神経膠腫Recurrent High-Grade Glioma再発悪性神経膠腫患者を対象にDSP-0390を経口投与したときの安全性、薬物動態、薬力学及び...1NaN...1. Estimated life expectancy >= 3 months 2. Re...1. Prior therapy with bevacizumab or other ant...18age old overNo limitBothNaNNaNPatients will receive DSP-0390 orally once dai...[Recurrent, High-Grade Glioma][[-0.2750183045864105, -0.5264511704444885, -0...
712jRCT2031200153NaNNaNCellm-001による初発膠芽腫治療効果無作為比較対照試験膠芽腫膠芽腫glioblastoma脳腫瘍のうち、初発悪性膠芽腫に対する自家脳腫瘍免疫賦活剤であるCellm-001について、術...3NaN...(1) 18 years old or older and 75 years old or ...(1) Systemic administration of corticosteroids...18age old over75age old underBothNaNNaNInject the investigational drug (Cellm-001 or ...[Glioblastoma][[-0.15113382041454315, -0.5002245306968689, -...
\n", "

9 rows × 41 columns

\n", "
" ], "text/plain": [ " JRCT ID NCT No JapicCTI No \\\n", "82 jRCT2051240121 NCT06413706 NaN \n", "87 jRCT2051240119 NCT03423628 NaN \n", "175 jRCT2031240090 NaN NaN \n", "263 jRCT2041230136 NaN NaN \n", "361 jRCT2051230069 NaN NaN \n", "401 jRCT2032230060 NaN NaN \n", "414 jRCT2031230007 NaN NaN \n", "636 jRCT2031210299 NaN NaN \n", "712 jRCT2031200153 NaN NaN \n", "\n", " Title \\\n", "82 放射線療法後の悪性神経膠腫の小児および若年成人を対象に、アベマシクリブ+テモゾロミドとテモゾ... \n", "87 多形性膠芽腫患者及び固形がんの脳転移患者を対象に、放射線療法併用下でAZD1390を漸増投与... \n", "175 再発悪性神経膠腫に対する治療用放射性薬剤64Cu-ATSMの有効性を検証するランダム化比較医... \n", "263 再発膠芽腫に対するTUG1を標的とした核酸医薬医師主導第I相試験 \n", "361 神経膠腫患者に対するロムスチン療法とプロカルバジン、ロムスチン、ビンクリスチン併⽤療法の安全... \n", "401 初発IDH野生型低悪性度神経膠腫に対する交流電場腫瘍治療システムの有効性と安全性を検証する多... \n", "414 BRAF融合遺伝子陽性の進行・再発の低悪性度神経膠腫または膵癌に対するビニメチニブの第Ⅱ相医... \n", "636 再発悪性神経膠腫患者を対象としたDSP-0390の第1相試験 \n", "712 Cellm-001による初発膠芽腫治療効果無作為比較対照試験 \n", "\n", " TargetJ Target \\\n", "82 悪性神経膠腫 悪性神経膠腫 \n", "87 再発多形性膠芽腫 再発多形性膠芽腫 \n", "175 悪性神経膠腫 悪性神経膠腫 \n", "263 再発膠芽腫 再発膠芽腫 \n", "361 神経膠腫 神経膠腫 \n", "401 IDH野生型神経膠腫(グレードⅢ)(退形成性星細胞腫) IDH野生型神経膠腫(グレードIII)(退形成性星細胞腫) \n", "414 低悪性度神経膠腫、膵癌 低悪性度神経膠腫、膵癌 \n", "636 再発悪性神経膠腫 再発悪性神経膠腫 \n", "712 膠芽腫 膠芽腫 \n", "\n", " TargetEnglish \\\n", "82 High-Grade Glioma \n", "87 Recurrent Glioblastoma Multiforme \n", "175 Malignant glioma \n", "263 recurrent glioblastoma \n", "361 Glioma \n", "401 IDH wild-type glioma (grade III) (anaplastic a... \n", "414 Low-grade glioma, pancreatic cancer \n", "636 Recurrent High-Grade Glioma \n", "712 glioblastoma \n", "\n", " 研究・治験の目的 試験等のフェーズ 試験の種類 ... \\\n", "82 放射線療法後の悪性神経膠腫を有する小児および若年成人を対象に、アベマシクリブとテモゾロミドの... 2 NaN ... \n", "87 Treatment 1 NaN ... \n", "175 再発・難治性悪性神経膠腫を対象として、64Cu-diacetyl-bis(N4-methyl... 3 NaN ... \n", "263 再発膠芽腫患者を対象としてTUG1ASOを投与した場合の投与時の安全性を検討し、至適投与量を... 1 NaN ... \n", "361 神経膠腫患者におけるロムスチン療法とプロカルバジン、ロムスチン、ビンクリスチン併用療法の安全... 1 NaN ... \n", "401 初発IDH野生型低悪性度神経膠腫を対象に、放射線化学療法後のテモゾロミド維持療法期における交... 2 NaN ... \n", "414 BRAF融合遺伝子または遺伝子再構成陽性の切除不能または再発の低悪性度神経膠腫(コホート A... 2 NaN ... \n", "636 再発悪性神経膠腫患者を対象にDSP-0390を経口投与したときの安全性、薬物動態、薬力学及び... 1 NaN ... \n", "712 脳腫瘍のうち、初発悪性膠芽腫に対する自家脳腫瘍免疫賦活剤であるCellm-001について、術... 3 NaN ... \n", "\n", " Inclusion Criteria \\\n", "82 Subjects required to meet all the folloiwng cr... \n", "87 - Provision of formalin-fixed paraffin embedde... \n", "175 1) Histologically diagnosed as high grade glio... \n", "263 (1) Patients with a histological diagnosis of ... \n", "361 All of the following items shall be... \n", "401 At the time of enrollment, patients will be in... \n", "414 Inclusion criteria for both cohort A and B 1) ... \n", "636 1. Estimated life expectancy >= 3 months 2. Re... \n", "712 (1) 18 years old or older and 75 years old or ... \n", "\n", " Exclusion Criteria Age Minimum \\\n", "82 Patients who meets any of the following criter... No limit \n", "87 - Administration of chemotherapy or any invest... 18age old over \n", "175 1) Have a history or merger of other malignanc... 18age old over \n", "263 (1) Patients with extracerebral metastases. (2... 18age old over \n", "361 1) Active mu... 18age old over \n", "401 Any of the following conditions shall not appl... 18age old over \n", "414 1) Active double primary cancer (but not (1)-(... 12age old over \n", "636 1. Prior therapy with bevacizumab or other ant... 18age old over \n", "712 (1) Systemic administration of corticosteroids... 18age old over \n", "\n", " Age Maximum Gender Discontinuation Criteria \\\n", "82 21age old not NaN NaN \n", "87 130age old under Both NaN \n", "175 75age old under Both NaN \n", "263 75age old under Both NaN \n", "361 No limit Both NaN \n", "401 No limit Both NaN \n", "414 No limit Both NaN \n", "636 No limit Both NaN \n", "712 75age old under Both NaN \n", "\n", " Keyword \\\n", "82 NaN \n", "87 NaN \n", "175 glioblastoma, grade3/4 astrocytoma, grade3 oli... \n", "263 NaN \n", "361 NaN \n", "401 Glioma \n", "414 BRAF fusion gene, BRAF rearrangement, low-grad... \n", "636 NaN \n", "712 NaN \n", "\n", " Intervention(s) \\\n", "82 Drug: Abemaciclib Administered orally Other Na... \n", "87 AZD1390 + Radiation Therapy Drug: AZD1390 - AZ... \n", "175 Group A: BPC Therapy Depending on the patient'... \n", "263 Dosing frequency: 1 time /week Dose Levels Lev... \n", "361 Lomustine 130 mg/m2 orally every 6 w... \n", "401 The patient using the product should shave all... \n", "414 Binimetinib is administered 45 mg orally, twic... \n", "636 Patients will receive DSP-0390 orally once dai... \n", "712 Inject the investigational drug (Cellm-001 or ... \n", "\n", " TargetWord \\\n", "82 [High-Grade Glioma] \n", "87 [Recurrent, Glioblastoma Multif, Me] \n", "175 [Malignant Glioma] \n", "263 [Recurrent, Glioblastoma] \n", "361 [Glioma] \n", "401 [Idh Wild-Type Glioma (Grade Iii) (Anaplastic ... \n", "414 [Low-Grade Glioma, Pancreatic Cancer] \n", "636 [Recurrent, High-Grade Glioma] \n", "712 [Glioblastoma] \n", "\n", " TargetVec \n", "82 [[-0.12244764715433121, -0.5778073668479919, -... \n", "87 [[-0.2750183045864105, -0.5264511704444885, -0... \n", "175 [[-0.33767956495285034, -0.4648125171661377, -... \n", "263 [[-0.27501848340034485, -0.5264514088630676, -... \n", "361 [[-0.21631155908107758, -0.5687925219535828, -... \n", "401 [[-0.3403506577014923, -0.5657796859741211, -0... \n", "414 [[-0.18604964017868042, -0.547483503818512, -0... \n", "636 [[-0.2750183045864105, -0.5264511704444885, -0... \n", "712 [[-0.15113382041454315, -0.5002245306968689, -... \n", "\n", "[9 rows x 41 columns]" ] }, "execution_count": 19, "metadata": {}, "output_type": "execute_result" } ], "source": [ "get_matched_df(processed_df, \"glioma\", model, threshold=0.92)" ] }, { "cell_type": "code", "execution_count": 28, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
JRCT IDNCT NoJapicCTI NoTitleTargetJTargetTargetEnglish研究・治験の目的試験等のフェーズ試験の種類...Inclusion CriteriaExclusion CriteriaAge MinimumAge MaximumGenderDiscontinuation CriteriaKeywordIntervention(s)TargetWordTargetVec
82jRCT2051240121NCT06413706NaN放射線療法後の悪性神経膠腫の小児および若年成人を対象に、アベマシクリブ+テモゾロミドとテモゾ...悪性神経膠腫悪性神経膠腫High-Grade Glioma放射線療法後の悪性神経膠腫を有する小児および若年成人を対象に、アベマシクリブとテモゾロミドの...2NaN...Subjects required to meet all the folloiwng cr...Patients who meets any of the following criter...No limit21age old notNaNNaNNaNDrug: Abemaciclib Administered orally Other Na...[High-Grade Glioma][[tensor(-0.1224), tensor(-0.5778), tensor(-0....
87jRCT2051240119NCT03423628NaN多形性膠芽腫患者及び固形がんの脳転移患者を対象に、放射線療法併用下でAZD1390を漸増投与...再発多形性膠芽腫再発多形性膠芽腫Recurrent Glioblastoma MultiformeTreatment1NaN...- Provision of formalin-fixed paraffin embedde...- Administration of chemotherapy or any invest...18age old over130age old underBothNaNNaNAZD1390 + Radiation Therapy Drug: AZD1390 - AZ...[Recurrent, Glioblastoma Multif, Me][[tensor(-0.2750), tensor(-0.5265), tensor(-0....
175jRCT2031240090NaNNaN再発悪性神経膠腫に対する治療用放射性薬剤64Cu-ATSMの有効性を検証するランダム化比較医...悪性神経膠腫悪性神経膠腫Malignant glioma再発・難治性悪性神経膠腫を対象として、64Cu-diacetyl-bis(N4-methyl...3NaN...1) Histologically diagnosed as high grade glio...1) Have a history or merger of other malignanc...18age old over75age old underBothNaNglioblastoma, grade3/4 astrocytoma, grade3 oli...Group A: BPC Therapy Depending on the patient'...[Malignant Glioma][[tensor(-0.3377), tensor(-0.4648), tensor(-0....
263jRCT2041230136NaNNaN再発膠芽腫に対するTUG1を標的とした核酸医薬医師主導第I相試験再発膠芽腫再発膠芽腫recurrent glioblastoma再発膠芽腫患者を対象としてTUG1ASOを投与した場合の投与時の安全性を検討し、至適投与量を...1NaN...(1) Patients with a histological diagnosis of ...(1) Patients with extracerebral metastases. (2...18age old over75age old underBothNaNNaNDosing frequency: 1 time /week Dose Levels Lev...[Recurrent, Glioblastoma][[tensor(-0.2750), tensor(-0.5265), tensor(-0....
272jRCT2032230554NaNNaN初発膠芽腫に対する新型高出力中性子線源を用いた加速器BNCT装置iBNCT001及びSPM-...初発膠芽腫初発膠芽腫Newly-diagnosed glioblastoma治験機器iBNCT001及び治験薬SPM-011を用いたホウ素中性子捕捉療法(BNCT)に、...1NaN...- Karnofsky Performance Status is greater than...- Multiple lesions, bilateral lesions, dissemi...18age old over85age old underBothNaNboron, neutron, glioblastoma- Intravenous administration of investigationa...[Newly-Diagnosed Glioblastoma][[tensor(-0.5050), tensor(-0.8343), tensor(-0....
361jRCT2051230069NaNNaN神経膠腫患者に対するロムスチン療法とプロカルバジン、ロムスチン、ビンクリスチン併⽤療法の安全...神経膠腫神経膠腫Glioma神経膠腫患者におけるロムスチン療法とプロカルバジン、ロムスチン、ビンクリスチン併用療法の安全...1NaN...<Cohort 1> All of the following items shall be...<Common to Cohort 1 and Cohort 2> 1) Active mu...18age old overNo limitBothNaNNaN<cohort1> Lomustine 130 mg/m2 orally every 6 w...[Glioma][[tensor(-0.2163), tensor(-0.5688), tensor(-0....
401jRCT2032230060NaNNaN初発IDH野生型低悪性度神経膠腫に対する交流電場腫瘍治療システムの有効性と安全性を検証する多...IDH野生型神経膠腫(グレードⅢ)(退形成性星細胞腫)IDH野生型神経膠腫(グレードIII)(退形成性星細胞腫)IDH wild-type glioma (grade III) (anaplastic a...初発IDH野生型低悪性度神経膠腫を対象に、放射線化学療法後のテモゾロミド維持療法期における交...2NaN...At the time of enrollment, patients will be in...Any of the following conditions shall not appl...18age old overNo limitBothNaNGliomaThe patient using the product should shave all...[Idh Wild-Type Glioma (Grade Iii) (Anaplastic ...[[tensor(-0.3404), tensor(-0.5658), tensor(-0....
414jRCT2031230007NaNNaNBRAF融合遺伝子陽性の進行・再発の低悪性度神経膠腫または膵癌に対するビニメチニブの第Ⅱ相医...低悪性度神経膠腫、膵癌低悪性度神経膠腫、膵癌Low-grade glioma, pancreatic cancerBRAF融合遺伝子または遺伝子再構成陽性の切除不能または再発の低悪性度神経膠腫(コホート A...2NaN...Inclusion criteria for both cohort A and B 1) ...1) Active double primary cancer (but not (1)-(...12age old overNo limitBothNaNBRAF fusion gene, BRAF rearrangement, low-grad...Binimetinib is administered 45 mg orally, twic...[Low-Grade Glioma, Pancreatic Cancer][[tensor(-0.1860), tensor(-0.5475), tensor(-0....
636jRCT2031210299NaNNaN再発悪性神経膠腫患者を対象としたDSP-0390の第1相試験再発悪性神経膠腫再発悪性神経膠腫Recurrent High-Grade Glioma再発悪性神経膠腫患者を対象にDSP-0390を経口投与したときの安全性、薬物動態、薬力学及び...1NaN...1. Estimated life expectancy >= 3 months 2. Re...1. Prior therapy with bevacizumab or other ant...18age old overNo limitBothNaNNaNPatients will receive DSP-0390 orally once dai...[Recurrent, High-Grade Glioma][[tensor(-0.2750), tensor(-0.5265), tensor(-0....
712jRCT2031200153NaNNaNCellm-001による初発膠芽腫治療効果無作為比較対照試験膠芽腫膠芽腫glioblastoma脳腫瘍のうち、初発悪性膠芽腫に対する自家脳腫瘍免疫賦活剤であるCellm-001について、術...3NaN...(1) 18 years old or older and 75 years old or ...(1) Systemic administration of corticosteroids...18age old over75age old underBothNaNNaNInject the investigational drug (Cellm-001 or ...[Glioblastoma][[tensor(-0.1511), tensor(-0.5002), tensor(-0....
\n", "

10 rows × 41 columns

\n", "
" ], "text/plain": [ " JRCT ID NCT No JapicCTI No \\\n", "82 jRCT2051240121 NCT06413706 NaN \n", "87 jRCT2051240119 NCT03423628 NaN \n", "175 jRCT2031240090 NaN NaN \n", "263 jRCT2041230136 NaN NaN \n", "272 jRCT2032230554 NaN NaN \n", "361 jRCT2051230069 NaN NaN \n", "401 jRCT2032230060 NaN NaN \n", "414 jRCT2031230007 NaN NaN \n", "636 jRCT2031210299 NaN NaN \n", "712 jRCT2031200153 NaN NaN \n", "\n", " Title \\\n", "82 放射線療法後の悪性神経膠腫の小児および若年成人を対象に、アベマシクリブ+テモゾロミドとテモゾ... \n", "87 多形性膠芽腫患者及び固形がんの脳転移患者を対象に、放射線療法併用下でAZD1390を漸増投与... \n", "175 再発悪性神経膠腫に対する治療用放射性薬剤64Cu-ATSMの有効性を検証するランダム化比較医... \n", "263 再発膠芽腫に対するTUG1を標的とした核酸医薬医師主導第I相試験 \n", "272 初発膠芽腫に対する新型高出力中性子線源を用いた加速器BNCT装置iBNCT001及びSPM-... \n", "361 神経膠腫患者に対するロムスチン療法とプロカルバジン、ロムスチン、ビンクリスチン併⽤療法の安全... \n", "401 初発IDH野生型低悪性度神経膠腫に対する交流電場腫瘍治療システムの有効性と安全性を検証する多... \n", "414 BRAF融合遺伝子陽性の進行・再発の低悪性度神経膠腫または膵癌に対するビニメチニブの第Ⅱ相医... \n", "636 再発悪性神経膠腫患者を対象としたDSP-0390の第1相試験 \n", "712 Cellm-001による初発膠芽腫治療効果無作為比較対照試験 \n", "\n", " TargetJ Target \\\n", "82 悪性神経膠腫 悪性神経膠腫 \n", "87 再発多形性膠芽腫 再発多形性膠芽腫 \n", "175 悪性神経膠腫 悪性神経膠腫 \n", "263 再発膠芽腫 再発膠芽腫 \n", "272 初発膠芽腫 初発膠芽腫 \n", "361 神経膠腫 神経膠腫 \n", "401 IDH野生型神経膠腫(グレードⅢ)(退形成性星細胞腫) IDH野生型神経膠腫(グレードIII)(退形成性星細胞腫) \n", "414 低悪性度神経膠腫、膵癌 低悪性度神経膠腫、膵癌 \n", "636 再発悪性神経膠腫 再発悪性神経膠腫 \n", "712 膠芽腫 膠芽腫 \n", "\n", " TargetEnglish \\\n", "82 High-Grade Glioma \n", "87 Recurrent Glioblastoma Multiforme \n", "175 Malignant glioma \n", "263 recurrent glioblastoma \n", "272 Newly-diagnosed glioblastoma \n", "361 Glioma \n", "401 IDH wild-type glioma (grade III) (anaplastic a... \n", "414 Low-grade glioma, pancreatic cancer \n", "636 Recurrent High-Grade Glioma \n", "712 glioblastoma \n", "\n", " 研究・治験の目的 試験等のフェーズ 試験の種類 ... \\\n", "82 放射線療法後の悪性神経膠腫を有する小児および若年成人を対象に、アベマシクリブとテモゾロミドの... 2 NaN ... \n", "87 Treatment 1 NaN ... \n", "175 再発・難治性悪性神経膠腫を対象として、64Cu-diacetyl-bis(N4-methyl... 3 NaN ... \n", "263 再発膠芽腫患者を対象としてTUG1ASOを投与した場合の投与時の安全性を検討し、至適投与量を... 1 NaN ... \n", "272 治験機器iBNCT001及び治験薬SPM-011を用いたホウ素中性子捕捉療法(BNCT)に、... 1 NaN ... \n", "361 神経膠腫患者におけるロムスチン療法とプロカルバジン、ロムスチン、ビンクリスチン併用療法の安全... 1 NaN ... \n", "401 初発IDH野生型低悪性度神経膠腫を対象に、放射線化学療法後のテモゾロミド維持療法期における交... 2 NaN ... \n", "414 BRAF融合遺伝子または遺伝子再構成陽性の切除不能または再発の低悪性度神経膠腫(コホート A... 2 NaN ... \n", "636 再発悪性神経膠腫患者を対象にDSP-0390を経口投与したときの安全性、薬物動態、薬力学及び... 1 NaN ... \n", "712 脳腫瘍のうち、初発悪性膠芽腫に対する自家脳腫瘍免疫賦活剤であるCellm-001について、術... 3 NaN ... \n", "\n", " Inclusion Criteria \\\n", "82 Subjects required to meet all the folloiwng cr... \n", "87 - Provision of formalin-fixed paraffin embedde... \n", "175 1) Histologically diagnosed as high grade glio... \n", "263 (1) Patients with a histological diagnosis of ... \n", "272 - Karnofsky Performance Status is greater than... \n", "361 All of the following items shall be... \n", "401 At the time of enrollment, patients will be in... \n", "414 Inclusion criteria for both cohort A and B 1) ... \n", "636 1. Estimated life expectancy >= 3 months 2. Re... \n", "712 (1) 18 years old or older and 75 years old or ... \n", "\n", " Exclusion Criteria Age Minimum \\\n", "82 Patients who meets any of the following criter... No limit \n", "87 - Administration of chemotherapy or any invest... 18age old over \n", "175 1) Have a history or merger of other malignanc... 18age old over \n", "263 (1) Patients with extracerebral metastases. (2... 18age old over \n", "272 - Multiple lesions, bilateral lesions, dissemi... 18age old over \n", "361 1) Active mu... 18age old over \n", "401 Any of the following conditions shall not appl... 18age old over \n", "414 1) Active double primary cancer (but not (1)-(... 12age old over \n", "636 1. Prior therapy with bevacizumab or other ant... 18age old over \n", "712 (1) Systemic administration of corticosteroids... 18age old over \n", "\n", " Age Maximum Gender Discontinuation Criteria \\\n", "82 21age old not NaN NaN \n", "87 130age old under Both NaN \n", "175 75age old under Both NaN \n", "263 75age old under Both NaN \n", "272 85age old under Both NaN \n", "361 No limit Both NaN \n", "401 No limit Both NaN \n", "414 No limit Both NaN \n", "636 No limit Both NaN \n", "712 75age old under Both NaN \n", "\n", " Keyword \\\n", "82 NaN \n", "87 NaN \n", "175 glioblastoma, grade3/4 astrocytoma, grade3 oli... \n", "263 NaN \n", "272 boron, neutron, glioblastoma \n", "361 NaN \n", "401 Glioma \n", "414 BRAF fusion gene, BRAF rearrangement, low-grad... \n", "636 NaN \n", "712 NaN \n", "\n", " Intervention(s) \\\n", "82 Drug: Abemaciclib Administered orally Other Na... \n", "87 AZD1390 + Radiation Therapy Drug: AZD1390 - AZ... \n", "175 Group A: BPC Therapy Depending on the patient'... \n", "263 Dosing frequency: 1 time /week Dose Levels Lev... \n", "272 - Intravenous administration of investigationa... \n", "361 Lomustine 130 mg/m2 orally every 6 w... \n", "401 The patient using the product should shave all... \n", "414 Binimetinib is administered 45 mg orally, twic... \n", "636 Patients will receive DSP-0390 orally once dai... \n", "712 Inject the investigational drug (Cellm-001 or ... \n", "\n", " TargetWord \\\n", "82 [High-Grade Glioma] \n", "87 [Recurrent, Glioblastoma Multif, Me] \n", "175 [Malignant Glioma] \n", "263 [Recurrent, Glioblastoma] \n", "272 [Newly-Diagnosed Glioblastoma] \n", "361 [Glioma] \n", "401 [Idh Wild-Type Glioma (Grade Iii) (Anaplastic ... \n", "414 [Low-Grade Glioma, Pancreatic Cancer] \n", "636 [Recurrent, High-Grade Glioma] \n", "712 [Glioblastoma] \n", "\n", " TargetVec \n", "82 [[tensor(-0.1224), tensor(-0.5778), tensor(-0.... \n", "87 [[tensor(-0.2750), tensor(-0.5265), tensor(-0.... \n", "175 [[tensor(-0.3377), tensor(-0.4648), tensor(-0.... \n", "263 [[tensor(-0.2750), tensor(-0.5265), tensor(-0.... \n", "272 [[tensor(-0.5050), tensor(-0.8343), tensor(-0.... \n", "361 [[tensor(-0.2163), tensor(-0.5688), tensor(-0.... \n", "401 [[tensor(-0.3404), tensor(-0.5658), tensor(-0.... \n", "414 [[tensor(-0.1860), tensor(-0.5475), tensor(-0.... \n", "636 [[tensor(-0.2750), tensor(-0.5265), tensor(-0.... \n", "712 [[tensor(-0.1511), tensor(-0.5002), tensor(-0.... \n", "\n", "[10 rows x 41 columns]" ] }, "execution_count": 28, "metadata": {}, "output_type": "execute_result" } ], "source": [ "get_matched_df(processed_df, \"glioma\", model, threshold=0.9)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "gradio", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.12.3" } }, "nbformat": 4, "nbformat_minor": 2 }