row_id int64 0 48.4k | init_message stringlengths 1 342k | conversation_hash stringlengths 32 32 | scores dict |
|---|---|---|---|
32,725 | Почему мой код выбирает не все объекты префаба?
Image[] images = instantiatedPrefab.GetComponents<Image>();
foreach (Image image in images){# some code} | db6139d02327090c5d97de5ca89dd04b | {
"intermediate": 0.4034166634082794,
"beginner": 0.35955628752708435,
"expert": 0.23702698945999146
} |
32,726 | Hi, how to calculate PRS based on GWAS analysis database? | b594147fa21f42c2ed4f5a10dcd3d50f | {
"intermediate": 0.3229793310165405,
"beginner": 0.16873355209827423,
"expert": 0.5082870721817017
} |
32,727 | 请根据tansformer的注意力机制原理,详细解释以下每一行代码:def attention(query, key, value, mask=None, dropout=None):
“Compute ‘Scaled Dot Product Attention’”
d_k = query.size(-1)
scores = torch.matmul(query, key.transpose(-2, -1)) / math.sqrt(d_k)
if mask is not None:
scores = scores.masked_fill(mask == 0, -1e9)
p_attn = scores.softmax(dim=-1... | c1460a9c4e2c94086a901f79623f711f | {
"intermediate": 0.38848361372947693,
"beginner": 0.3273635804653168,
"expert": 0.2841528654098511
} |
32,728 | sub_visit <- sub_trt3 %>%
group_by(Subject_ID,Analyte,trtpn) %>%
mutate(
next_visit=ifelse(
is.na(lead(Visit)),
99,
lead(Visit)-1
),
) %>%
ungroup()%>%
select(Subject_ID,Visit,next_visit,Analyte,trtpn) how to fix this code to make next_visit shown the correct value, now the visit=... | 9cb7eca55cb6e44e5a41787bba6c4064 | {
"intermediate": 0.34586647152900696,
"beginner": 0.40929675102233887,
"expert": 0.2448367476463318
} |
32,729 | is there any free gpu collab like google | bd06ef185bcd641f8d90aafe0d841963 | {
"intermediate": 0.3327065706253052,
"beginner": 0.17924153804779053,
"expert": 0.4880518913269043
} |
32,730 | battery low notification in android studio java full code | 75f3f5b5d856e865554db10bd72f2d9b | {
"intermediate": 0.4336847960948944,
"beginner": 0.34456852078437805,
"expert": 0.22174662351608276
} |
32,731 | if I have a map in js file that was declared like this then how could I possible update the value of it if I know for certain that one of the entries is equals 5000?
new Map([...state.entries(), [String(appeal.id), appeal]]) | bdb9e4160c6c4754e8e5b350b916cc31 | {
"intermediate": 0.6044027209281921,
"beginner": 0.20296114683151245,
"expert": 0.19263608753681183
} |
32,732 | Надо исправить код
Уникальное поле может быть только id и обновлять надо все колонки | fc81e38b7e509b831272c35229e0063c | {
"intermediate": 0.2912417948246002,
"beginner": 0.35082435607910156,
"expert": 0.35793378949165344
} |
32,733 | Write a program that inputs an integer (say n) from user, Then calculate the sum of squares of integers up to n. (i.e., sum = 12 + 22 + 32 + … + n2). in C++ for beginners | 47b8a264ae06494d62a3e14365acb393 | {
"intermediate": 0.39967623353004456,
"beginner": 0.21253417432308197,
"expert": 0.38778960704803467
} |
32,734 | ### ------------------------------ ### ### MINIMUM TECHNICAL REQUIREMENTS ### ### ------------------------------ ### # Write a function that does the following! # 1) Display the name of a continent on the stage # 2) Display 2 countries on the continent # 3) Display a relevant stage background image def africa(): stage.... | c3094e4131cea12340f2a6598d2a7089 | {
"intermediate": 0.34308215975761414,
"beginner": 0.37124747037887573,
"expert": 0.28567034006118774
} |
32,735 | house icon Assignment | c4ff34212e87a57a58fa4bc0dc212a68 | {
"intermediate": 0.32357725501060486,
"beginner": 0.3697170317173004,
"expert": 0.3067057132720947
} |
32,736 | 请详细解释以下代码:class MultiHeadedAttention(nn.Module):
def __init__(self, h, d_model, dropout=0.1):
"Take in model size and number of heads."
super(MultiHeadedAttention, self).__init__()
assert d_model % h == 0
# We assume d_v always equals d_k
self.d_k = d_model // h
self.... | 638e15384b6224a5469306aa36d3eacb | {
"intermediate": 0.4412096440792084,
"beginner": 0.21335391700267792,
"expert": 0.3454364240169525
} |
32,737 | hello | 30dbf50b810bac39db017aae50b658cd | {
"intermediate": 0.32064199447631836,
"beginner": 0.28176039457321167,
"expert": 0.39759764075279236
} |
32,738 | implement playwright typescript parametrized test by using parameters as values from csv file | 27646ecf602440b2d8a5b01ac7744bf1 | {
"intermediate": 0.34317323565483093,
"beginner": 0.5071281790733337,
"expert": 0.14969861507415771
} |
32,739 | turn this into a streaming post instead of a post:
@app.post("/search1")
async def predict(request: Request, user: str = Depends(get_current_user)):
body = await request.body()
create = requests.post("https://bing.github1s.tk/api/create")
data = json.loads(create.text)
message = body.decode() # conver... | 619a340a50c0568124ef1857622f2b72 | {
"intermediate": 0.4374662935733795,
"beginner": 0.33146965503692627,
"expert": 0.23106403648853302
} |
32,740 | NoneType' object has no attribute 'dtype | ea0fdd8a22faada3ee3232aa03e429a4 | {
"intermediate": 0.43385955691337585,
"beginner": 0.26159539818763733,
"expert": 0.30454498529434204
} |
32,741 | Who earns more: fullstack web developer or machine learning developer? | 0f50f9336fd02e4c9d286c254689b6e5 | {
"intermediate": 0.5697062015533447,
"beginner": 0.08597424626350403,
"expert": 0.34431958198547363
} |
32,742 | i ran :
cargo install bootimage
throws:
error: could not compile `serde` (lib) due to 5098 previous errors
error: failed to compile `bootimage v0.10.3`, intermediate artifacts can be found at `/var/folders/7w/40hwhj6j71lbbn16ybk04frc0000gn/T/cargo-installWXIfAv`. | cfd6f5e38325bf1656e460cebfbb20b6 | {
"intermediate": 0.4752272665500641,
"beginner": 0.29570287466049194,
"expert": 0.22906984388828278
} |
32,743 | get ethereum block number by timestamp with rpc | 0ce52bdded7dfe416b1d72d1d1cf4885 | {
"intermediate": 0.4566570222377777,
"beginner": 0.2056942731142044,
"expert": 0.3376486897468567
} |
32,744 | Денис
−
− очень занятой человек. Поэтому он нанял Вас, чтобы оптимизировать свои жизненные процессы.
Самое важное для Дениса
−
− это саморазвитие, из-чего для каждого дня он составляет расписание в виде бинарного дерева, каждая вершина которого
−
− это польза от завершения некоторой работы в течение дня.
Чтобы пол... | 409a2cbb477b3fb36b4c4bb587e425bf | {
"intermediate": 0.29815754294395447,
"beginner": 0.39341381192207336,
"expert": 0.30842870473861694
} |
32,745 | Create a class diagram with generalization arrows (https://www.uml-diagrams.org) for the following
real-world objects that all represent openings in walls. The class diagram shows the (hierarchical)
relationships between these objects/classes:
glass window, room entry, door, bull’s-eye, wall-break, wood door, sliding d... | 4f5b2faa69774b533b8c304fa45eb82c | {
"intermediate": 0.30356907844543457,
"beginner": 0.46015316247940063,
"expert": 0.2362777143716812
} |
32,746 | backspace lua print | 0c132a5b95f7053fa3b52adce17ee84f | {
"intermediate": 0.3122391104698181,
"beginner": 0.3836473226547241,
"expert": 0.30411359667778015
} |
32,747 | Hello, I want this dispatch.meta file to be realistic so I have gta 5 and im using openiv to access the files for modding in singleplayer I want you to edit the dispatch.meta file to make it realistic and tell me what you changed "<?xml version="1.0" encoding="UTF-8"?>
<CDispatchData>
<ParoleDuration value="9000"/>
... | cd2cb3a261aa35fd145b15abaeafb119 | {
"intermediate": 0.30186954140663147,
"beginner": 0.31952106952667236,
"expert": 0.3786093294620514
} |
32,748 | как работает @Scheduled(cron = "0 0/1 * * * ?") | 092e895e856c83fd17c14c670974c7ae | {
"intermediate": 0.23919031023979187,
"beginner": 0.4655924439430237,
"expert": 0.29521727561950684
} |
32,749 | give me a behaviour tree in unity | 217de09f51a62e961ffab0a8ff4a9c0d | {
"intermediate": 0.35754647850990295,
"beginner": 0.258609801530838,
"expert": 0.38384371995925903
} |
32,750 | with open(log_filename1, ‘a’) as log_file:
uname = platform.uname()
cpufreq = psutil.cpu_freq()
log_file.write(f’======= Computer ====== \nOS Name: {0} \n’.format(os_name))
log_file.write(‘OS Version: {0} \n’.format(os_version))
log_file.write(‘CPU: {0} \n’.format(proc_info.Name))
log_file.write(‘RAM: {0} GB \n’.form... | f521d7321806da9e61aad8532a0cf2d8 | {
"intermediate": 0.3372780382633209,
"beginner": 0.3628672957420349,
"expert": 0.29985469579696655
} |
32,751 | C# sendinput send right mouse click to windows client area x and y | 9b97f869c1fcf41b7387ac035aa9455c | {
"intermediate": 0.47701773047447205,
"beginner": 0.2793610095977783,
"expert": 0.24362124502658844
} |
32,752 | Hi, how to properly update software built from source on Arch Linux? | 099e085461ec88c74705383d79358bef | {
"intermediate": 0.5053858160972595,
"beginner": 0.21074067056179047,
"expert": 0.28387343883514404
} |
32,753 | import tkinter as tk
from tkinter import messagebox
from tkinter import ttk
import os
import shutil
def create_database():
folder_name = entry.get()
if folder_name:
try:
if os.path.exists(folder_name):
messagebox.showwarning("警告", "資料夾已經存在")
else:
... | 7b7c4ff7fc04ee903260197a90d59ecb | {
"intermediate": 0.30506664514541626,
"beginner": 0.5027267932891846,
"expert": 0.19220653176307678
} |
32,754 | help me on how I can also extract the urls:
{'type': 1, 'target': 'update', 'arguments': [{'messages': [{'text': 'Hej! Tack för din fråga. Jag har sökt efter begagnade Samsung Galaxy S10-priser i Sverige och internationellt. Nedan följer de fem billigaste resultaten jag hittade i Sverige:\n\n1. **PhoneHero** erbjuder ... | 909df20360fc5c15287671b77cce2b41 | {
"intermediate": 0.2928122878074646,
"beginner": 0.43683311343193054,
"expert": 0.27035465836524963
} |
32,755 | #include
#include <vector>
struct Node{
int data;
Node* parent = nullptr;
Node* left = nullptr;
Node* right = nullptr;
};
Node* Build(std::vector<char>& arr) {
Node* root;
for (int i = 0; i < arr.size(); ++i) {
if (arr[i] == ‘l’) {
Node* new_node = new Node;
root->left = new_node;
new_node->parent = root;
root = root... | b3e5fb09a3689476a4986cea6d8be0a4 | {
"intermediate": 0.3643427789211273,
"beginner": 0.30159398913383484,
"expert": 0.33406320214271545
} |
32,756 | point.py:
import json
class Point:
def init(self, x=0, y=0):
self.x = x
self.y = y
@classmethod
def from_string(cls, s):
x, y = map(float, s.split(‘,’))
return cls(x, y)
def to_json(self):
return json.dumps(self.dict)
@classmethod
def from_json(cls, j... | f4a66ba1a6c40dd84145cb9994baa3d7 | {
"intermediate": 0.3662046194076538,
"beginner": 0.49624133110046387,
"expert": 0.13755400478839874
} |
32,757 | Queueing collections with multiple model types is not supported. | 13f7439509d6f441e9ac91b473ae55e4 | {
"intermediate": 0.37022340297698975,
"beginner": 0.18504595756530762,
"expert": 0.444730669260025
} |
32,758 | write solidity code that would parse a json string “[1000, [1], [100]]” into struct
struct Data {
uint256 total;
uint256[] chainids;
uint256[] blocks;
} | 0cce68e943681a99b580433f013b1189 | {
"intermediate": 0.688838005065918,
"beginner": 0.14189603924751282,
"expert": 0.1692659705877304
} |
32,759 | $this->agents->push( User::all()); Expected type 'object'. Found 'array'.intelephense(P1006) | 61b5590b4f199acdb991bf65dc398767 | {
"intermediate": 0.34241780638694763,
"beginner": 0.30614393949508667,
"expert": 0.3514382541179657
} |
32,760 | solidity Invalid escape sequence how to fix | 011343cd383ae28eea7e9d7fcff0bc0d | {
"intermediate": 0.5942474007606506,
"beginner": 0.12605731189250946,
"expert": 0.2796952724456787
} |
32,761 | how to access the target tilemap in this scene from the area script:
[gd_scene load_steps=14 format=3 uid="uid://cgk72c7csqgm5"]
[ext_resource type="Script" path="res://addons/wfc/nodes/generator_2d.gd" id="1_mvuye"]
[ext_resource type="Script" path="res://addons/wfc/problems/2d/rules_2d.gd" id="2_67cyc"]
[ext_resour... | c7f91b538106353b8aa1569a87b13ed2 | {
"intermediate": 0.35212641954421997,
"beginner": 0.32029232382774353,
"expert": 0.3275812566280365
} |
32,762 | What's concept hierarchy ? How is a concept hierarchy useful in solving real world problems? | ac8876e1000916f401254a4bd69e06fc | {
"intermediate": 0.34136468172073364,
"beginner": 0.1621338427066803,
"expert": 0.49650144577026367
} |
32,763 | please give me a python program, which calculates the mean and standard deviation for columns in a csv file and plots a fillbetween | 13d367fa225a563000b5b4dead00c88d | {
"intermediate": 0.3478645086288452,
"beginner": 0.13620686531066895,
"expert": 0.5159286856651306
} |
32,764 | Денис
−
− очень занятой человек. Поэтому он нанял Вас, чтобы оптимизировать свои жизненные процессы.
Самое важное для Дениса
−
− это саморазвитие, из-чего для каждого дня он составляет расписание в виде бинарного дерева, каждая вершина которого
−
− это польза от завершения некоторой работы в течение дня.
Чтобы пол... | 1fb9466cad5b6b09f43b3e1de1b272b5 | {
"intermediate": 0.12131687998771667,
"beginner": 0.632162868976593,
"expert": 0.2465202659368515
} |
32,765 | #include <iostream>
struct Node {
int data;
Node* left;
Node* right;
Node(int value) : data(value), left(nullptr), right(nullptr) {}
};
struct BST {
Node* top = nullptr;
Node* insert(Node* root, int value) {
if (root == nullptr) {
return new Node(value);
}
if (value < root->data) {
... | af4ed87a581f1e707dedd218f9929139 | {
"intermediate": 0.34474536776542664,
"beginner": 0.36678412556648254,
"expert": 0.28847047686576843
} |
32,766 | How to solve this error? AttributeError: 'NoneType' object has no attribute 'drop' | f841aa44eb97fe2777cf342ae0421bf5 | {
"intermediate": 0.5226043462753296,
"beginner": 0.1086949035525322,
"expert": 0.3687008023262024
} |
32,767 | Data Cleaning, Data Integration, Data Reduction, Data Transformation, Data Mining, Pattern, Evaluation, Knowledge Representation 7 steps in data mining explain each with real wold examples | 448e898fd1888332e20433f797c90d7a | {
"intermediate": 0.36877205967903137,
"beginner": 0.25994551181793213,
"expert": 0.3712824881076813
} |
32,768 | int lineAmount = 2;
int midY = height / 2; // Вычисляем середину по оси Y
for (int i = 0; i < lineAmount; i++) {
g2d.setColor(Color.BLACK);
// Определяем, на какой стороне середины канвы будет находиться первая точка линии
int x1 = (i % 2 == 0) ?... | 40fa63dc53367d8f1eb588fe0e4c0962 | {
"intermediate": 0.3063373863697052,
"beginner": 0.4753822684288025,
"expert": 0.21828033030033112
} |
32,769 | #include <iostream>
using namespace std;
// Определение структуры элемента списка
struct Node {
string surname;
Node* next;
};
// Функция для добавления элемента в конец списка
void append(Node** head, string surname) {
// Создание нового элемента
Node* newNode = new Node;
newNode->surname = surna... | edbf35d03687d24dba31ad23b72521d3 | {
"intermediate": 0.2852548658847809,
"beginner": 0.5223164558410645,
"expert": 0.19242870807647705
} |
32,770 | make it all balanced soo there wont be goovernments that like do so you get 2x more mooney
so the max will be like 1.5
aoc2
{
Government: [
{
Name: "DEMOCRACY",
Extra_Tag: "",
GOV_GROUP_ID: 0,
ACCEPTABLE_TAXATION: 0.1,
MIN_GOODS: 0.1,
MIN_INVESTMENTS: 0.1,
RESEARCH_COST: 0.9,
INCOME_TAXAT... | 7b9d67cab858c4b2920a13c751ba1bf5 | {
"intermediate": 0.256553590297699,
"beginner": 0.38447150588035583,
"expert": 0.3589749336242676
} |
32,771 | package gtanks.captcha;
import javax.imageio.ImageIO;
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.Random;
public class CaptchaGenerator {
... | 764e5a7425ec70d73e1e81dbfdc48adc | {
"intermediate": 0.2324308604001999,
"beginner": 0.6577368974685669,
"expert": 0.10983221232891083
} |
32,772 | #include <iostream>
struct Node {
int data;
Node* left;
Node* right;
Node(int value) : data(value), left(nullptr), right(nullptr) {}
};
struct BST {
Node* top = nullptr;
Node* insert(Node* root, int value) {
if (root == nullptr) {
return new Node(value);
}
if (value < root->data) {
... | 9c64ec09aa23eabcf97c9414acc9f7b9 | {
"intermediate": 0.3335544466972351,
"beginner": 0.39222845435142517,
"expert": 0.2742171287536621
} |
32,773 | Может ты скажешь ей, что ты не Леонтий?
Недавно вошедшие в список форбс 24 до 24-ех Леонид и Семен решили открыть новый бизнес. Для этого они нашли знаменитую предпринимательницу Лизу, которая стала спонсором их стартапа. Для успешного трейдинга ребята создали один основной аккаунт и один дополнительный.
Для хорошей о... | 250e39b73421913e247aae4e63249ed1 | {
"intermediate": 0.19810988008975983,
"beginner": 0.6142464280128479,
"expert": 0.18764372169971466
} |
32,774 | hi | 1ad657cc1ba5e8df2329dade2144e572 | {
"intermediate": 0.3246487081050873,
"beginner": 0.27135494351387024,
"expert": 0.40399640798568726
} |
32,775 | Может ты скажешь ей, что ты не Леонтий?
Недавно вошедшие в список форбс 24 до 24-ех Леонид и Семен решили открыть новый бизнес. Для этого они нашли знаменитую предпринимательницу Лизу, которая стала спонсором их стартапа. Для успешного трейдинга ребята создали один основной аккаунт и один дополнительный.
Для хорошей о... | e6bdd4b922f5ac86ee388784388da970 | {
"intermediate": 0.19810988008975983,
"beginner": 0.6142464280128479,
"expert": 0.18764372169971466
} |
32,776 | ef compute_statistics(data):
"""
Compute basic statistics: Mean, Median, and Mode for the given data.
Parameters:
- data: A pandas DataFrame containing the dataset.
Returns:
- Each value should be rounded to 3 decimal places
- mean: A dictionary with the mean of each feature.
- median:... | 58684472c550e11e9751b04f56ac2c26 | {
"intermediate": 0.4689394533634186,
"beginner": 0.28527018427848816,
"expert": 0.2457902580499649
} |
32,777 | Virtual function | f9c754e37d3246b1e36e5523ca25a54e | {
"intermediate": 0.2540137469768524,
"beginner": 0.2551158368587494,
"expert": 0.4908704161643982
} |
32,778 | For an array of pixels in C, each pixel is 3 uint8_ts (representing color), what would a putpixel implementation be? | ac413d19b5800a8f0957d471fae02aa6 | {
"intermediate": 0.4258834719657898,
"beginner": 0.17542076110839844,
"expert": 0.39869579672813416
} |
32,779 | import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
def generate_dataset():
pass
def plot_3d_scatter(data):
"""
Plot a 3D scatter plot of the dataset to visualize the three features.
Parameters:
- data: A pandas DataFrame containing the dataset.
Returns:
... | d7c4946776cdc6bf812e00893bad9af8 | {
"intermediate": 0.5060572624206543,
"beginner": 0.2198130190372467,
"expert": 0.2741297483444214
} |
32,780 | Cannot resolve method 'getApplication' in 'PagerAdapter'
как это исправить? | f73ac47792fc2d7ea72195445e9f8944 | {
"intermediate": 0.4609166085720062,
"beginner": 0.33012840151786804,
"expert": 0.20895497500896454
} |
32,781 | Imagine a programming language with these rule: The only character with meaning, by default, is -> to define relations. Relations take some text and return some text, there's no name binding or "arguments". Relations can be applied by typing the first argument. If a relation returns another relation, it can be applied ... | d8fcd3269e9a07b16dfa1281999cb054 | {
"intermediate": 0.3754463195800781,
"beginner": 0.1653916984796524,
"expert": 0.4591619372367859
} |
32,782 | Imagine a programming language with these rule: The only character with meaning, by default, is -> to define relations. Relations take some text and return some text, there’s no name binding or “arguments”. Relations can be applied by typing the first argument. If a relation returns another relation, it can be applied ... | 8c9846c15c525fb803ca4d34e344a414 | {
"intermediate": 0.3707491457462311,
"beginner": 0.18334755301475525,
"expert": 0.44590330123901367
} |
32,783 | import time
from streamlit.delta_generator import DeltaGenerator
import streamlit as st
import os,sys
import importlib.util
import inspect
#from here https://github.com/harahu/st-clean-slate-rendering/blob/main/__main__.py
def get_clean_rendering_container() -> DeltaGenerator:
"""Makes sure we can render from a cl... | 2cdd534ca677f345258592ba9fed2e4f | {
"intermediate": 0.3335764706134796,
"beginner": 0.468639999628067,
"expert": 0.19778352975845337
} |
32,784 | my python code has error: AttributeError: 'DataFrame' object has no attribute 'append', how to change append? | 91cea99ad0b90d231f2f2b057921153e | {
"intermediate": 0.7034324407577515,
"beginner": 0.11426914483308792,
"expert": 0.1822984218597412
} |
32,785 | Hadoop MapReduce
Consider the following tables stored in CSV files: airport.csv, airline.csv, and flight.csv
Airport(code, city, state)
Airline(name, stock)
Flight(number, origin, dest, airline, price)
Example data:
Airport.csv
LAX,Los Angeles, CA
SFO, San Francisco, CA
JFK, New York City,NY
SJO, San Jose, ... | 553074bd7c23efd51783ead88aa5cf9e | {
"intermediate": 0.45785143971443176,
"beginner": 0.2207629531621933,
"expert": 0.32138562202453613
} |
32,786 | private static void parseAndInitItems(String json, ItemType typeItem) {
JSONParser parser = new JSONParser();
try {
Object obj = parser.parse(json);
JSONObject jparser = (JSONObject)obj;
JSONArray jarray = (JSONArray)jparser.get("items");
for(int i = 0; i < jarray.size(... | e6412186f4b4334199e0360fbb1e6c50 | {
"intermediate": 0.31658193469047546,
"beginner": 0.4587089717388153,
"expert": 0.22470910847187042
} |
32,787 | Using the below program which is reading a data file(student.txt file) from the disk into
array of structure which has 10 elements .
Assume that data is sorted based on student number.
Complete the below program for binary search operation.
Read a student from the monitor and find and list his name , grade
and the p... | 7c6f83f4c05ba4895518cfc552920b29 | {
"intermediate": 0.44586488604545593,
"beginner": 0.23810864984989166,
"expert": 0.3160264790058136
} |
32,788 | private static void parseAndInitItems(String json, ItemType typeItem) {
JSONParser parser = new JSONParser();
try {
Object obj = parser.parse(json);
JSONObject jparser = (JSONObject)obj;
JSONArray jarray = (JSONArray)jparser.get("items");
for(int i = 0; i < jarray.size(... | 8c3a379f7e519136f6f6187827053d2b | {
"intermediate": 0.3308432102203369,
"beginner": 0.49844273924827576,
"expert": 0.17071399092674255
} |
32,789 | The work of a highly protective security program in cpp using oop | 8ccb3aef26af37320b387747904b8f0b | {
"intermediate": 0.2556125223636627,
"beginner": 0.27441301941871643,
"expert": 0.46997445821762085
} |
32,790 | in C add another option to the menu that lets the player do something other than look around the room they are in, move rooms or quit the game. Explain the steps taken to achieve this functionality
// we need the include files io and stdlib and string and stdbool and time
// we need to define a constant for the number ... | 4bd1046d2c32f97c9ee3e62cc5d606f7 | {
"intermediate": 0.40719252824783325,
"beginner": 0.3706328868865967,
"expert": 0.22217456996440887
} |
32,791 | Lua code example with using "gui.set_font()" (Defold engine) | 631425040bb488d5649274992d03192f | {
"intermediate": 0.37998688220977783,
"beginner": 0.3242793381214142,
"expert": 0.295733779668808
} |
32,792 | I am a teacher of English teaching IT. Can you make me a crossword puzzle with computer output terms,please | 6ec8ce8cb6cd9fe5a2fa7d3ce8e05f6d | {
"intermediate": 0.3400869369506836,
"beginner": 0.46497830748558044,
"expert": 0.19493471086025238
} |
32,793 | create regular expression except a one space | 8fb622af00a76c312ed5d6932eab6cd6 | {
"intermediate": 0.3692026734352112,
"beginner": 0.3410890996456146,
"expert": 0.28970828652381897
} |
32,794 | import pandas as pd
import numpy as np
from sklearn.preprocessing import StandardScaler
from sklearn.linear_model import Perceptron
from sklearn.model_selection import train_test_split
from sklearn.metrics import accuracy_score, precision_score, recall_score
import matplotlib.pyplot as plt
def perceptron_classifier_on... | 5cf2bf68284b945d17725028ace45449 | {
"intermediate": 0.3890320956707001,
"beginner": 0.3016281723976135,
"expert": 0.3093397319316864
} |
32,795 | give em the python code for an application which can displays 5 pictures each tuime a button is pressed | 0a8960d3f189b5cdfce893822c71b107 | {
"intermediate": 0.33761435747146606,
"beginner": 0.12159773707389832,
"expert": 0.5407878756523132
} |
32,796 | import java.time.LocalDate;
public class ElectricityRecord {
LocalDate date;
double israeliLinesMWs;
double gazaPowerPlantMWs;
double egyptianLinesMWs;
double totalDailySupply;
double overallDemand;
double powerCutsHours;
double temperature;
ElectricityRecord next;
public Elect... | f0f66344f5ae607ee17510222ba4bdf6 | {
"intermediate": 0.33579882979393005,
"beginner": 0.449049174785614,
"expert": 0.21515199542045593
} |
32,797 | private static void parseAndInitItems(String json, ItemType typeItem) {
JSONParser parser = new JSONParser();
try {
Object obj = parser.parse(json);
JSONObject jparser = (JSONObject)obj;
JSONArray jarray = (JSONArray)jparser.get("items");
for(int i = 0; i < jarray.size(... | 69d8dc2b8b9952ea42e19407c2e5fa1b | {
"intermediate": 0.31658193469047546,
"beginner": 0.4587089717388153,
"expert": 0.22470910847187042
} |
32,798 | In android studio/kotlin I need to add an intent to the button that would open the default email client and pre-fill some of the email form fields (recipient,subject and main body text) | 6d567cc7fca589bc1ef41f026c80663e | {
"intermediate": 0.6156898140907288,
"beginner": 0.11832302808761597,
"expert": 0.26598718762397766
} |
32,799 | accuracy = accuracy_score(y_test, y_predection) * 100
precision = precision_score(y_test, y_predection, average = "binary", pos_lable = 1) * 100
recall = recall_score(y_test, y_predection, average = "binary", pos_lable = 1) * 100 | 40d0c14175f9207dd36b8c420574d712 | {
"intermediate": 0.2777509093284607,
"beginner": 0.31090426445007324,
"expert": 0.4113447368144989
} |
32,800 | Write a program that starts by drawing the largest circle that can fully fit on the canvas (radius = 200) and continues drawing circles as long as the radius is greater than 0. Each time a circle is drawn, the radius should decrease by 20. The circle colors should alternate between red and black.
Use the variable radi... | 1d5884b1044aec3ba93f09c5ed31db0c | {
"intermediate": 0.2417546957731247,
"beginner": 0.5066166520118713,
"expert": 0.251628577709198
} |
32,801 | private static void parseAndInitItems(String json, ItemType typeItem) {
JSONParser parser = new JSONParser();
try {
Object obj = parser.parse(json);
JSONObject jparser = (JSONObject)obj;
JSONArray jarray = (JSONArray)jparser.get("items");
for(int i = 0; i < jarray.size(... | 0062d3a6ae266cccbe859492a648ee18 | {
"intermediate": 0.31658193469047546,
"beginner": 0.4587089717388153,
"expert": 0.22470910847187042
} |
32,802 | private static void parseAndInitItems(String json, ItemType typeItem) {
JSONParser parser = new JSONParser();
try {
Object obj = parser.parse(json);
JSONObject jparser = (JSONObject)obj;
JSONArray jarray = (JSONArray)jparser.get(“items”);
for(int i = 0; i < jarray.size(); ++i) {
JSONObject item = (JSONObject)jarray.g... | cf0620e42030620a702f6766070c7f26 | {
"intermediate": 0.2890935242176056,
"beginner": 0.5583557486534119,
"expert": 0.15255074203014374
} |
32,803 | write an expression that uses a camera to orbit 180 degrees around a subject in after effects | e2c751f7505a9b2322101fb92d5c8583 | {
"intermediate": 0.31002169847488403,
"beginner": 0.16381427645683289,
"expert": 0.5261639952659607
} |
32,804 | import pandas as pd
import numpy as np
from sklearn.preprocessing import StandardScaler
from sklearn.linear_model import Perceptron
from sklearn.model_selection import train_test_split
from sklearn.metrics import accuracy_score, precision_score, recall_score
import matplotlib.pyplot as plt
def perceptron_classifier_on... | 9fdc198e48a982a9a4a5ca7fa4b90971 | {
"intermediate": 0.3890320956707001,
"beginner": 0.3016281723976135,
"expert": 0.3093397319316864
} |
32,805 | Create an easy and elegant app with react native (in javascript) who could translate in realtime a discussion between 2 people, you can use SeamlessM4T from meta to implement the IA. One or two page maximum. The goal is to have a futuritic application like in an episode of blackmirror, the netflix tv show | 5b68b3bea6c4993765a5f97412513651 | {
"intermediate": 0.4452442526817322,
"beginner": 0.25396037101745605,
"expert": 0.300795316696167
} |
32,806 | public class GarageItemsLoader {
public static HashMap<String, Item> items;
private static int index = 1;
public static void loadFromConfig(String turrets, String hulls, String colormaps, String inventory, String subscription) {
if (items == null) {
items = new HashMap();
}
for(int... | eea314a1c1fea3806e201631a554d1e0 | {
"intermediate": 0.3256196975708008,
"beginner": 0.5302889347076416,
"expert": 0.1440914422273636
} |
32,807 | Create the HTML and the CSS and JavaScript from this https://accountantonline.ie/ | 7eadd5cb5287e2eb4341fbd3fe2d5c6c | {
"intermediate": 0.36700958013534546,
"beginner": 0.169104665517807,
"expert": 0.46388575434684753
} |
32,808 | <?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_heigh... | cd85d169d697ddf65e520bfced7e756f | {
"intermediate": 0.26583972573280334,
"beginner": 0.5518321990966797,
"expert": 0.18232807517051697
} |
32,809 | python code using BiLSTM encoder and BiLSTM decoder rnn to translate English text to Arabic text by splitting data from file into train. validate and test ,Tokenize the sentences and convert them into numerical representations ,Pad or truncate the sentences to a fixed length and examples translation from test data | a8c59132c7a0bfdfbaa146c002e8ad21 | {
"intermediate": 0.3731970489025116,
"beginner": 0.11263254284858704,
"expert": 0.5141704082489014
} |
32,810 | python code using LSTM encoder and BiLSTM decoder rnn to translate English text to Arabic text by splitting data from file into train. validate and test ,Tokenize the sentences and convert them into numerical representations ,Pad or truncate the sentences to a fixed length and examples translation from test data | bb2f12757cf056c71119091394fa9f45 | {
"intermediate": 0.36776021122932434,
"beginner": 0.11787638068199158,
"expert": 0.5143634080886841
} |
32,811 | смотри у меня в MainActivity есть <com.jetradarmobile.snowfall.SnowfallView
android:id="@+id/snow" и во Фрагменте Profile есть switch1 мне нужно сделать так если я нажимаю на свитч то снег становиться видимым и при перезапуске сохраняет свое состояние а если я выключаю свитч то снег пропадает <Switch
... | 782942f2d1b2e261d3525ed8ee37339a | {
"intermediate": 0.3037712872028351,
"beginner": 0.5210909843444824,
"expert": 0.1751376837491989
} |
32,812 | hello | a79afdcfa3c07404cc3f9fdcb8263a39 | {
"intermediate": 0.32064199447631836,
"beginner": 0.28176039457321167,
"expert": 0.39759764075279236
} |
32,813 | Is this a valid way to put the commands they need to run in the command line? | 58ce920e968fb6e980b14794c80ba358 | {
"intermediate": 0.4189777374267578,
"beginner": 0.268742173910141,
"expert": 0.3122800588607788
} |
32,814 | Is this valid markdown? | 3bc8442fc6900f70e6d3d333f4cffc5c | {
"intermediate": 0.28957703709602356,
"beginner": 0.3079226315021515,
"expert": 0.4025002717971802
} |
32,815 | Что такое Spring стартер? Как его создать? | 3d144df16902213aff70fc5650044920 | {
"intermediate": 0.44596266746520996,
"beginner": 0.26930782198905945,
"expert": 0.2847295105457306
} |
32,816 | private async Task<T> getAsync<T>(string url, IEnumerable<KeyValuePair<string, string>> query) {
HttpClient client = new HttpClient();
using (HttpResponseMessage response = await client.GetAsync($"{url}?{string.Join("&", query.Select(kv => $"{kv.Key}={HttpUtility.UrlEncode(kv.Value)}"))}")) {
... | aefa871ee77eb67eab67bb13ff20a00f | {
"intermediate": 0.4760763347148895,
"beginner": 0.3111456036567688,
"expert": 0.21277807652950287
} |
32,817 | как улучшить этот код?
private async Task<T> getAsync<T>(string url, IEnumerable<KeyValuePair<string, string>> query) {
HttpClient client = new HttpClient();
using (HttpResponseMessage response = await client.GetAsync($"{url}?{string.Join("&", query.Select(kv => $"{kv.Key}={HttpUtility.UrlEncode... | 28b1169a0606f9ad61dfd10f0d6525fb | {
"intermediate": 0.47744640707969666,
"beginner": 0.3508308231830597,
"expert": 0.17172276973724365
} |
32,818 | Hi give me a python code to give me an analysis of nifty 50 considering OI data, Fii & DII data which I can run daily before market opens | de1cb6ec217b68331e19160316332561 | {
"intermediate": 0.5102389454841614,
"beginner": 0.09370995312929153,
"expert": 0.39605119824409485
} |
32,819 | как улучшить этот код?
private async Task<T> getAsync<T>(string url, IEnumerable<KeyValuePair<string, string>> query) {
HttpClient client = new HttpClient();
using (HttpResponseMessage response = await client.GetAsync($"{url}?{string.Join("&", query.Select(kv => $"{kv.Key}={HttpUtility.UrlEncode... | 94ceb51581cd773b80639f1055c0af89 | {
"intermediate": 0.47744640707969666,
"beginner": 0.3508308231830597,
"expert": 0.17172276973724365
} |
32,821 | Can you give me python to first gather historical stock data on Indian stock market and then will calculate and filter companies showing 10% gain in 2-3 months and showing good price volume action | 24ec15613bf4c0309c09914edc9f0806 | {
"intermediate": 0.5186929106712341,
"beginner": 0.06157343089580536,
"expert": 0.4197337031364441
} |
32,822 | как улучшить этот код?
using (HttpClient client = new HttpClient()) {
using (HttpResponseMessage response = await client.GetAsync($"{url}?{url2}"))}")) {
response.EnsureSuccessStatusCode();
using (Stream stream = await response.Content.ReadAsStreamAsync()) {
... | 4aeab459384d5110782125fd060f51e4 | {
"intermediate": 0.417071133852005,
"beginner": 0.3739292323589325,
"expert": 0.2089996635913849
} |
32,823 | как улучшить этот код?
private async Task<T> getAsync<T>(string url, IEnumerable<KeyValuePair<string, string>> query) {
using (HttpClient client = new HttpClient()) {
using (HttpResponseMessage response = await client.GetAsync($"{url}?{url2}")) {
response.EnsureSuccessStatusCode();
u... | 1f7f7cedf411bd52985859bc4195158c | {
"intermediate": 0.4913078844547272,
"beginner": 0.34476956725120544,
"expert": 0.163922518491745
} |
32,824 | How do I give elements a screen reader label | 596a5d87e0732a7ea7ace9cd9d7ff633 | {
"intermediate": 0.3610667884349823,
"beginner": 0.22376681864261627,
"expert": 0.4151664078235626
} |
32,825 | in c++ wxgrid, SelectAll() select all the rows but I want to select all the shown rows only? Do I have to iterate over all the rows, checking if they are shown and then selecting them? | c9b96ec83ba30438b7aeb5a48605e876 | {
"intermediate": 0.6516547203063965,
"beginner": 0.1236456111073494,
"expert": 0.2246996909379959
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.