row_id
int64
0
48.4k
init_message
stringlengths
1
342k
conversation_hash
stringlengths
32
32
scores
dict
1,103
add a text view of the latest data from a node of a firebase database
42ce11c479353585c9737594f6665e6a
{ "intermediate": 0.4443676471710205, "beginner": 0.22819462418556213, "expert": 0.32743778824806213 }
1,104
Fix the error java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3 . private void cannyImage() { if (image != null) { String inputMask = JOptionPane.showInputDialog(this, "Enter a mask size (odd number >= 3):"); int kernelSize = Integer.parseInt(inputMask); if (kernelSize % 2 == 0 || ...
46176350d06834b176fe166c3e9d5b3c
{ "intermediate": 0.32795289158821106, "beginner": 0.39407870173454285, "expert": 0.2779684364795685 }
1,105
Fix the error Exception in thread "AWT-EventQueue-0" java.lang.ArrayIndexOutOfBoundsException: Index 11 out of bounds for length 3. In this code. private void cannyImage() { if (image != null) { String inputMask = JOptionPane.showInputDialog(this, "Enter a mask size (odd number >= 3):"); int kernelSize = Intege...
c9ea8b1e8f88db78ceb03e775d36d197
{ "intermediate": 0.3604711890220642, "beginner": 0.3814069330692291, "expert": 0.2581218481063843 }
1,106
Write an open processing sketch in java mode that will accept pasted javascript and html code and return all the div elements that are user inputs such as buttons, radios, and text areas
96c92a4560b659198e907dad203be48b
{ "intermediate": 0.6059431433677673, "beginner": 0.09505467116832733, "expert": 0.29900217056274414 }
1,107
Fix the code. public void actionPerformed(ActionEvent e) { if (e.getSource() == cannyButton) { cannyImage(); } } private void cannyImage() { if (image != null) { String inputMask = JOptionPane.showInputDialog(this,"Enter a mask size (odd number >= 3)"); int kernelSize = Integer.parseInt(inputMask); if ...
f0d7f1fa007e9347544322a3ff6c3d2d
{ "intermediate": 0.34108686447143555, "beginner": 0.4821556806564331, "expert": 0.17675743997097015 }
1,108
有一个类结构如下,现在用C# newtonsoft.json把一个json转为该对象 public class Menu { public int id { get; set; } public string createTime { get; set; } public string updateTime { get; set; } public object parentId { get; set; } public string name { get; set; } public string router { get; set; } public int type {...
8e69f040556335101d1a39d32d5d5949
{ "intermediate": 0.3622492551803589, "beginner": 0.46040135622024536, "expert": 0.17734943330287933 }
1,109
In python, make a machine learning model to predict a 5x5 minesweeper game. You can’t make it random or make it predict 2 same results in a row if a new game is started. You have data for the past 30 games [5, 12, 13, 4, 17, 19, 4, 18, 21, 1, 6, 11, 7, 15, 22, 14, 18, 19, 1, 19, 20, 9, 16, 17, 1, 19, 20, 6, 14, 24, 15,...
bde859e151658abe021fdaa658e033eb
{ "intermediate": 0.14971747994422913, "beginner": 0.07476743310689926, "expert": 0.775515079498291 }
1,110
write a javascript code that will return all the js paths of user interactive elements from a webpage
3a0cdd1b2fe4ba7d9e5131b1ab5e9a1a
{ "intermediate": 0.4872904419898987, "beginner": 0.2188446968793869, "expert": 0.2938648462295532 }
1,111
I want you to write a trading bot for a crypto exchange. I will give you the strategy and you will transform it into the code. Can you do this?
2b86823754baeeed8166d756c569de0c
{ "intermediate": 0.2449059635400772, "beginner": 0.21780917048454285, "expert": 0.537284791469574 }
1,112
tracking face,hands and shoulder shrugging through out the video
82fbbae715849192764fea6943a33031
{ "intermediate": 0.326013445854187, "beginner": 0.29102474451065063, "expert": 0.38296183943748474 }
1,113
Create a C program where it does the following: Expect three points from stdin, one per line. Verify each point is EXACTLY "(fx, fy)" (where fx and fy are floating point numbers) Output the area of the triangle defined by those, to two places.
8e136658eef38c2e7c62d2ef65603c3f
{ "intermediate": 0.434052973985672, "beginner": 0.2773147225379944, "expert": 0.2886323630809784 }
1,114
I am trying to use a textview to display the latest data from the database textresult.java package com.example.profile; import androidx.annotation.NonNull; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.util.Log; import android.widget.TextView; import com.google.firebase.da...
2d80baa6c523afb1a7ccced939dcefa3
{ "intermediate": 0.38961705565452576, "beginner": 0.37159377336502075, "expert": 0.23878921568393707 }
1,115
en python:10 KEY OFF 20 CLS 30 PRINT " ######################################" 40 PRINT " # #" 50 PRINT " # Probit analysis program #" 60 PRINT " # ...
fa69474ebd1de90d977272ab39d211ce
{ "intermediate": 0.20770958065986633, "beginner": 0.4401218295097351, "expert": 0.35216856002807617 }
1,116
persistentMarkers: Map<Float, Marker>? = null, please give an example on how to create a persistent marker
e6037264caa4ed12cb449ce8fb1a9830
{ "intermediate": 0.4373495876789093, "beginner": 0.15803484618663788, "expert": 0.4046155512332916 }
1,117
добавить в код построения гистограмм изображений (исходных и преобразованных). public void actionPerformed(ActionEvent e) { if (e.getSource() == openButton) { openImage(); } else if (e.getSource() == processButton) { processImage(); } else if (e.getSource() == brightnessButton) { brightnessImage(); ...
1ca2a04db2b9216a680de5f7336df70d
{ "intermediate": 0.4218127131462097, "beginner": 0.3409804105758667, "expert": 0.23720687627792358 }
1,118
convert this to var: let monthlyInsurance = 0;
47798d703e2223d439608d1dc6459f0d
{ "intermediate": 0.2023191750049591, "beginner": 0.6382609605789185, "expert": 0.15941983461380005 }
1,119
I have an excel sheet
82ba5588865f3dc34c33874fc48a3f32
{ "intermediate": 0.2836819887161255, "beginner": 0.30706000328063965, "expert": 0.40925803780555725 }
1,120
where from download haarcascade_shoulder.xml
d1c4e9cad95f09307f02e04c3da06b51
{ "intermediate": 0.39911481738090515, "beginner": 0.23114852607250214, "expert": 0.3697367012500763 }
1,121
почему не строится гистограмма преобразованного изображения. public void actionPerformed(ActionEvent e) { if (e.getSource() == openButton) { openImage(); } else if (e.getSource() == processButton) { processImage(); } else if (e.getSource() == brightnessButton) { brightnessImage(); } else if (e....
d03680b64db41b7fe4a7766201d0a346
{ "intermediate": 0.21162033081054688, "beginner": 0.5383402705192566, "expert": 0.2500394880771637 }
1,122
replace let with var "use strict"; var readlineSync = require('readline-sync'); /* Author: Liam Butler Date: 3/6/23 Title: PROG1700 Assignment 3- Q1 Timesheet */ // DO NOT EDIT: The main function to house our program code function main() { //input, allows the user to input the days they have worked let hours ...
830695d2fd5feb477c151640b54c3d55
{ "intermediate": 0.35627281665802, "beginner": 0.3474205434322357, "expert": 0.2963065803050995 }
1,123
you need to predict a minesweper game. a 5x5 field. You've data for the past 3 games, but the data changes. The user inputs the amount of mines and the amount of spots he wants predicted. If the user inputs 3 mines and 5 safe spots, you have to predict 5 safe spots, but the predictions cannot be the same as last game,...
3235e8c89528c7cf2e1809a218bbf04e
{ "intermediate": 0.2201409637928009, "beginner": 0.14790937304496765, "expert": 0.6319496631622314 }
1,124
fix the code package com.example.profile; import androidx.annotation.NonNull; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.util.Log; import android.widget.TextView; import com.google.firebase.database.DataSnapshot; import com.google.firebase.database.DatabaseError; import ...
b6a9c4de3d1c3be44348b92a2501b7a2
{ "intermediate": 0.32118138670921326, "beginner": 0.3539513945579529, "expert": 0.32486721873283386 }
1,125
fs.writeFile(outputFile, modifiedText, function(err) { ^ ReferenceError: modifiedText is not defined at main (C:\Users\Liam Butler\Documents\PROG1700\prog-1700--assignment-4-liamb0469148\q1.js:53:27) at Object.<anonymous> (C:\Users\Liam Butler\Documents\PROG1700\prog-1700--assignment-...
9497e4821fd83134dd6b0ff5da3a60f3
{ "intermediate": 0.3185476064682007, "beginner": 0.4680107533931732, "expert": 0.2134416252374649 }
1,126
Задание: Дописать код C++ (ВАЖНО пиши код используя markdown cpp
5bea33540204a18eab3c3378b5ba68eb
{ "intermediate": 0.3292464017868042, "beginner": 0.4144262969493866, "expert": 0.2563273310661316 }
1,127
import os input_path = input("请输入需要拆分的合并后图片的路径:") # 输入合并后图片的路径 output_dir = input("请输入拆分后图片序列的保存路径:") # 输出拆分后图片序列的文件夹路径 grid_size = input("请输入拆分网格的行数和列数,用'x'连接:") # 用户输入拆分网格的行数和列数,比如 2x2、3x3 row_num, column_num = map(int, grid_size.strip().split('x')) index = 0 # 创建输出文件夹 if not os.path.exists(output_dir): os.maked...
5d34443565113eb8924a545a1a316ce5
{ "intermediate": 0.28548291325569153, "beginner": 0.43017178773880005, "expert": 0.2843453586101532 }
1,128
in python I have a string with this format and I want to extract the number and assign it to the other variable, like this: xp_skill_key = "f3" xp_f_key = 3 # number extracted How can I do this?
b0b6d081fb5287d86fe7b3426793d03e
{ "intermediate": 0.4036824107170105, "beginner": 0.298383504152298, "expert": 0.29793408513069153 }
1,129
PS C:\Users\Liam Butler\Documents\PROG1700\prog-1700--assignment-4-liamb0469148> node q2 node:internal/fs/utils:673 throw new ERR_INVALID_ARG_TYPE(propName, ['string', 'Buffer', 'URL'], path); ^ TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string or an instance of Buffer or URL. Receiv...
8cd0ffdaee97d6e41138012c17703804
{ "intermediate": 0.48928335309028625, "beginner": 0.3642755448818207, "expert": 0.14644113183021545 }
1,130
Добавь setImageIcon(transformedImage); в этот код. private void histogramImage() { // Создаем гистограмму исходного изображения int[] histogram = new int[256]; for (int i = 0; i < image.getWidth(); i++) { for (int j = 0; j < image.getHeight(); j++) { int pixel = image.getRGB(i, j); int red = (pixe...
0e244a6594169986d43fb984f497ec76
{ "intermediate": 0.2925761938095093, "beginner": 0.4736320674419403, "expert": 0.2337917536497116 }
1,131
Write a python implementation of insertion sort with example array.
65852634a740a459ce26741a5361653d
{ "intermediate": 0.4859830141067505, "beginner": 0.090789794921875, "expert": 0.4232272505760193 }
1,132
I want to Dial a code like (*858*45212323654#) on my android phone with C#.
5d5202cd71182cecf4620edc89c743c6
{ "intermediate": 0.4177435338497162, "beginner": 0.336880087852478, "expert": 0.2453763633966446 }
1,133
Assignment: Create a website for the Retail Camping Company (RCC), a camping equipment retailer moving to online sales. Requirements: 1. HTML (25 Marks) - Develop a website using HTML 5 with at least SIX (6) interlinked pages. - Content should include images of camping equipment, minimal text with visuals, and use of...
0cf484ecfea4ee71139aed35777525e1
{ "intermediate": 0.2922143042087555, "beginner": 0.4275197386741638, "expert": 0.2802659571170807 }
1,134
Hello. I have a numpy array in python. This array has values from 0 to 35 in integer representing tiles of a map. I also have a tile map. What I need is to make a solution so I can convert integer array to an image with tiles from tile map and be able to show it in .ipynb file.
c235d12d50e5bd813624f9353a6ad4a3
{ "intermediate": 0.5909736752510071, "beginner": 0.13513199985027313, "expert": 0.2738943099975586 }
1,135
I want to remove the EditText Result.java package com.example.profile; import androidx.appcompat.app.AppCompatActivity; import androidx.drawerlayout.widget.DrawerLayout; import androidx.recyclerview.widget.LinearLayoutManager; import androidx.recyclerview.widget.RecyclerView; import androidx.annotation.NonNull; imp...
276448e44a29566c14bda4976bbc3a80
{ "intermediate": 0.30750343203544617, "beginner": 0.44310319423675537, "expert": 0.24939341843128204 }
1,136
is there is a way to dial a code on an Android device from a C# Windows application that doesn’t require ADB?
a3bcb68083b6586ad53d5bfc43ff3123
{ "intermediate": 0.6937079429626465, "beginner": 0.1302439123392105, "expert": 0.1760481297969818 }
1,137
"use strict"; /* Author: Liam Butler Assignment #: 4 Description: Q3 (BONUS): Battleship */ var fs = require("fs"); var gamemap = []; var targetmap = []; var missles = 30; var hitCount = 0; var shipssunk = [false, false, false, false, false]; function main() // <-- Don't change this line! { //load the map.txt file...
bb2aebbc5a445e644ebfd55a8f43699a
{ "intermediate": 0.3086564540863037, "beginner": 0.47921761870384216, "expert": 0.21212589740753174 }
1,138
Here's my code: _______________________ library(rvest) # create data frames for each section of data data_A <- data.frame( protocol_url_segment = character(), A.1 = character(), A.2 = character(), A.3 = character(), A.3.1 = character(), A.3.2 = character(), A.4.1 = character(), A.5.1 = character(), A.5.2 = chara...
69f1fee12ace872fbe349b5fba592e2a
{ "intermediate": 0.527786910533905, "beginner": 0.3039166331291199, "expert": 0.16829648613929749 }
1,139
kotlin txt file process to database room entity
c258cd267629925f01913775a1418a84
{ "intermediate": 0.45159074664115906, "beginner": 0.2229928821325302, "expert": 0.3254163861274719 }
1,140
переделай код, чтобы строилась гистограмма преобразованного изображения. // Создаем гистограмму преобразованного изображения int[] transformedHistogram = new int[256]; BufferedImage transformedImage = null; if (image != null) { transformedImage = copyImage(image); // Ваш код преобразования изображен...
edce33389ad4c58f68966616dd0bfeb3
{ "intermediate": 0.27017104625701904, "beginner": 0.4182847738265991, "expert": 0.3115442097187042 }
1,141
hello
8b9f2aa671cdfedf9049acf2ed55afbe
{ "intermediate": 0.32064199447631836, "beginner": 0.28176039457321167, "expert": 0.39759764075279236 }
1,142
pipes make me 3 tasks with solution
37819b9add07d691a3d5b5071a8efee2
{ "intermediate": 0.3112431466579437, "beginner": 0.3890542984008789, "expert": 0.29970258474349976 }
1,143
Hi, i’ve implemented the following ImageDataset Class and I want you to go through the code and check for any potential issues or loopholes. You are free to come up with any better ideas and modifications as well. So, Here is the code:# Implement ImageDataset class class ImageDataset(Dataset): def init(self, folder_nam...
de44984fae5a8b7ab446b30826b93f98
{ "intermediate": 0.37205228209495544, "beginner": 0.3062642514705658, "expert": 0.32168346643447876 }
1,144
Here's my code: _______________________ library(rvest) # create data frames for each section of data data_A <- data.frame( protocol_url_segment = character(), A.1 = character(), A.2 = character(), A.3 = character(), A.3.1 = character(), A.3.2 = character(), A.4.1 = character(), A.5.1 = character(), A.5.2 = chara...
faeb8d03fcd324aebcd83f642de8cf21
{ "intermediate": 0.527786910533905, "beginner": 0.3039166331291199, "expert": 0.16829648613929749 }
1,145
is there is a way to dial a code on an Android device from a C# Windows application that doesn’t require ADB or ADB bridge?
bca36baac7682f919ed2312f9c6e3db6
{ "intermediate": 0.6812052130699158, "beginner": 0.12804056704044342, "expert": 0.190754234790802 }
1,146
how to make this accepted json.loads() modifying the string only using python “{{message_agent}} Use this command to reach out for more information: “message_agent”, args: “name”: “main”, “message”: “<message>”;”
948fb4cdd855f993b4d6dd9c85289f3b
{ "intermediate": 0.4221298396587372, "beginner": 0.2842732071876526, "expert": 0.29359692335128784 }
1,147
My suggestion is , Can it be more optimized if we do computations on tensors instead of arrays like in this line here running_test_acc += (y_pred.argmax(dim=1) == y_batch).sum().item(). So, what’s your take and if I’m correct I want the computation to be done in tensors. Here is the code:def train_model(model, train_l...
99653f4e86c20f4f8dc2ce0c544508eb
{ "intermediate": 0.30868756771087646, "beginner": 0.48942017555236816, "expert": 0.2018921971321106 }
1,148
I am need to create a CSV file for me using Python. This CSV file will include both numbers and text, and I have a specific format that must be followed. We need to append the given config to the csv file and later data needs to be added to that. I have the data part written. Just need to append the config before addi...
164cce13470d4ea4f00de3a6f612b63b
{ "intermediate": 0.47531136870384216, "beginner": 0.23600374162197113, "expert": 0.2886848747730255 }
1,149
Could you explain how the kernel trick works? use numerical example and walk through it step by step by hand to prove your claims
2b9ce55d4e825b4d9067549e6c0737e9
{ "intermediate": 0.20638833940029144, "beginner": 0.11316654086112976, "expert": 0.68044513463974 }
1,151
<!DOCTYPE html> <meta charset="utf-8"> <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.2.2/d3.min.js"></script> <style> #controls { position: fixed; left: 0px; width: 20%; top: 0px; height: 10%; } #chart { position: fixed; left: 0px; right: 0px; top: 0px; bottom...
c59faf3102ae4b08ef6c5370186c8de8
{ "intermediate": 0.24774795770645142, "beginner": 0.5017282962799072, "expert": 0.2505236864089966 }
1,152
In python, make a machine learning model to predict a 5x5 minesweeper game. You can’t make it random or make it predict 2 same results in a row if a new game is started. You have data for the past 30 games [5, 12, 13, 4, 17, 19, 4, 18, 21, 1, 6, 11, 7, 15, 22, 14, 18, 19, 1, 19, 20, 9, 16, 17, 1, 19, 20, 6, 14, 24, 15,...
02ac12e279a39e52c1cf0d562ed2fb3a
{ "intermediate": 0.12122253328561783, "beginner": 0.06032956764101982, "expert": 0.8184478878974915 }
1,153
I forgot to set the rank for GPU here in this code: import torch import torch.nn as nn import torch.optim as optim from torch.utils.data import DataLoader from torch.utils.data.distributed import DistributedSampler import torch.distributed as dist import itertools # Initialize Distributed Training dist.init_process_gr...
db89354f351ed175aa15322c75645b72
{ "intermediate": 0.3153258264064789, "beginner": 0.4350565969944, "expert": 0.2496175915002823 }
1,154
In python, you need to create a predictor for a minesweeper game. You've data for the past 30 games with 3 mines in each. Each number in the list is a bomb location from the past 30 games.The field is a 5x5. List is:[5, 12, 13, 4, 17, 19, 4, 18, 21, 1, 6, 11, 7, 15, 22, 14, 18, 19, 1, 19, 20, 9, 16, 17, 1, 19, 20, 6, 1...
58753371bd615b1511b85eca74656c53
{ "intermediate": 0.18801794946193695, "beginner": 0.09280750900506973, "expert": 0.7191746234893799 }
1,155
Hi In python, you need to create a predictor for a minesweeper game. You've data for the past 30 games with 3 mines in each. Each number in the list is a bomb location from the past 30 games.The field is a 5x5. List is:[5, 12, 13, 4, 17, 19, 4, 18, 21, 1, 6, 11, 7, 15, 22, 14, 18, 19, 1, 19, 20, 9, 16, 17, 1, 19, 20, ...
f8da72c728956419ba2d560167b9057c
{ "intermediate": 0.29705488681793213, "beginner": 0.16599547863006592, "expert": 0.5369496941566467 }
1,156
b562bf0b-54e6-4185-8c50-0cabf793339c d510d03e-a6ad-427c-b2e9-aef730072049 is there a pattern in the strings I sent?
135bc4399600f6e3a2edf10e50f4b1d2
{ "intermediate": 0.4189550578594208, "beginner": 0.2565339505672455, "expert": 0.32451096177101135 }
1,157
use this string d510d03e-a6ad-427c-b2e9-aef730072049 I am trying to predict a minesweeper game out of the id of it. the board is a 5x5 one please help in python
7c6c89042c270b87e3f25516005e0366
{ "intermediate": 0.3266650438308716, "beginner": 0.3756372928619385, "expert": 0.29769769310951233 }
1,158
Java palindrome chwck function that takes str input please provide most effficient solutuon with explanation
5b58695f249d78535782d5d18766c293
{ "intermediate": 0.4086105227470398, "beginner": 0.3711739778518677, "expert": 0.22021552920341492 }
1,159
Java. Functuon takes input str return number of vowels. Y is not vowel. Most effficient solutuon
f09c473552bd555c69a713393bc67a60
{ "intermediate": 0.42289528250694275, "beginner": 0.22604382038116455, "expert": 0.3510608375072479 }
1,160
In python, you need to create a predictor for a minesweeper game. You've data for the past 30 games with 3 mines in each. Each number in the list is a bomb location from the past 30 games.The field is a 5x5. List is:[5, 12, 13, 4, 17, 19, 4, 18, 21, 1, 6, 11, 7, 15, 22, 14, 18, 19, 1, 19, 20, 9, 16, 17, 1, 19, 20, 6, 1...
ae86e8e48bf015e20e6ef287265eca4d
{ "intermediate": 0.18801794946193695, "beginner": 0.09280750900506973, "expert": 0.7191746234893799 }
1,161
[{locationId:"someLocationId ", id:"someId", title:"название кнопки" content:"текст",choices:[someId, someId]},{locationId:"someLocationId", id:"someId", title:"название кнопки" content: "text",choices:[someId, someId]},...] ///////////////////////// write JS func to visualize data format, we need it to show rectangles...
c8ffbdce0ba58e6b6e6ea0e386338e7f
{ "intermediate": 0.5038512349128723, "beginner": 0.2547435164451599, "expert": 0.24140521883964539 }
1,162
Evaluate these classes. using System; using System.Collections.Generic; using System.Linq; using System.Net.Sockets; using System.Text; using System.Threading.Tasks; namespace Assignment_4 { public class HashMap<K, V> : IMap<K, V> { /* Properties */ public Entry<K, V>[] Table { get; set; } ...
3bc43ae234d3e57104749c069013cede
{ "intermediate": 0.40267544984817505, "beginner": 0.4282904267311096, "expert": 0.16903413832187653 }
1,163
Как мне исправить ошибку? Ошибка при добавлении товара:ADOQuery1: Parameter 'name' not found C++ //--------------------------------------------------------------------------- #include <vcl.h> #pragma hdrstop #include <stdio.h> #include <string.h> #include <windows.h> #include "Unit108.h" //----------------------------...
6a1f38d710d399fe618a575001dbef17
{ "intermediate": 0.3351594805717468, "beginner": 0.36593908071517944, "expert": 0.29890140891075134 }
1,164
Can you generate the code for the snake game in HTML, CSS and Javascript?
e6bf40334c53280910764ae7d5f667df
{ "intermediate": 0.4715995192527771, "beginner": 0.3287428021430969, "expert": 0.19965767860412598 }
1,165
Hi, I've implemented the following train function. I think there are some issues with the accuracy calculations. I might be due to appending issues or might be a division issuse. And also look for other potential issues and feel free to modify the code. Even come with a much more optimized way. here is the code: def tr...
d0a05cced15210bb4f024ee030138536
{ "intermediate": 0.2744673490524292, "beginner": 0.4462796151638031, "expert": 0.2792530357837677 }
1,166
Java fynctuon takes string array are that models a non looping graph. First element of array is the number of nodes (n) in the array as a string. The next n elementsare nodes and can be anything. After nth element rest are connections betwwen nodes as elements. Example input: ["4","A","B","C","D","A-B","B-D","B-C","C-D...
9cb2b433a90b2cee51c8389c8e132067
{ "intermediate": 0.5957247018814087, "beginner": 0.08910457789897919, "expert": 0.3151707351207733 }
1,167
def putExchangeDataAndDb(self, statusError, typeExchange): zipPath = f'{squishinfo.testCase}/stmobile.zip' config = self.config[statusError][typeExchange] with open(zipPath, "rb") as outboxFile: outboxContent = outboxFile.read() files = { "outbox": (outboxFile.nam...
60e791a3be5e4bde2836b156cc72d7f9
{ "intermediate": 0.3607872426509857, "beginner": 0.3454729914665222, "expert": 0.29373979568481445 }
1,168
library(rvest) # create data frames for each section of data data_A <- data.frame( protocol_url_segment = character(), A.1 = character(), A.2 = character(), A.3 = character(), A.3.1 = character(), A.3.2 = character(), A.4.1 = character(), A.5.1 = character(), A.5.2 = character(), A.5.3 = character(), A.5.4 = char...
f2525b2ad89e25a49db8bd638c27bcc6
{ "intermediate": 0.3650023639202118, "beginner": 0.4172418713569641, "expert": 0.2177557498216629 }
1,169
from pyrogram import Client app = Client("my_bot", bot_token="AAFpAyKpaR6_QyfkFqYnPkXY2t2e1fEUc-w") # Определяем функцию для отправки сообщения @app.on_message() def send_message(): # Получаем объект чата по ID chat = app.get_chat(chat_id="-1001936058870") # Отправляем текстовое сообщение в чат Client...
8b65fd164a5c64c088181a2623a7bba2
{ "intermediate": 0.42967933416366577, "beginner": 0.2668026089668274, "expert": 0.3035181164741516 }
1,170
In python, you need to predict a minesweeper game on a 5x5 field. You need to predict 4 safe spots in a 3 mines game. You have data for the past 30 games played: [5, 12, 13, 4, 17, 19, 4, 18, 21, 1, 6, 11, 7, 15, 22, 14, 18, 19, 1, 19, 20, 9, 16, 17, 1, 19, 20, 6, 14, 24, 15, 20, 22, 7, 18, 21, 4, 16, 23, 5, 11, 19, 5,...
e3ece37754a1190c3d2a293103226433
{ "intermediate": 0.319151371717453, "beginner": 0.22913414239883423, "expert": 0.45171448588371277 }
1,171
Evaluate the following classes: ''' A module that encapsulates a web scraper. This module scrapes data from a website. ''' from html.parser import HTMLParser import urllib.request from datetime import datetime, timedelta import logging from dateutil.parser import parse class WeatherScraper(HTMLParser): """A parse...
af7a56af78ee25a4509ab67f49072781
{ "intermediate": 0.3676638603210449, "beginner": 0.49274396896362305, "expert": 0.13959212601184845 }
1,172
Нужно добавить код в макрос, чтобы он проверял изменения в столбцах на копируемых листах из книги, если были изменения , то он должен их добавить на Лист6, в строчки где содержится названия листов в столбце A. Sub MergeSheetsContainingAshan3() Dim SourceWorkbook As Workbook Dim SourceWorksheet As Worksheet Dim TargetWo...
bd03afeaf33e25029478102c2b68c703
{ "intermediate": 0.33682265877723694, "beginner": 0.47477591037750244, "expert": 0.18840143084526062 }
1,173
write me a page on html, with buttons and the ability to change the number, raising the level and adding characteristics, the name of the character is Fran, the character has the first level of 29HP and 17MP, each level receives 4 points to the characteristics of strength, endurance, dexterity, intelligence, magic, agi...
dd270d03c8b13b4ed9570f00c2b50753
{ "intermediate": 0.3493584990501404, "beginner": 0.29495227336883545, "expert": 0.3556891977787018 }
1,174
Сделай так, чтобы пользователь мог просматривать изображения и описание в TDBGrid, потому что на данный момент данные в этих двух столбцах отображаются description как WIDEMEMO а содержимое image как BLOB. Придумай решение этой проблемы. C++ Builder 10.4, RAD STUDIO //--------------------------------------------------...
be5de3dbc79e0edeb38151223fd51bc0
{ "intermediate": 0.37104377150535583, "beginner": 0.48080533742904663, "expert": 0.14815083146095276 }
1,175
Help me with my shiny app. First, let me show you my code: EUCTR_shiny.R: ________ EUCTR_function <- function(input_var) { [TRUNCATED] # Save the workbook to the file saveWorkbook(wb, file.path("outputs", paste0("EUCTR_", format(Sys.Date(), "%Y%m%d"), "_", format(Sys.time(), "%H%M"), ".xlsx"))) print(metadata, ro...
e286c3b9007b632cf8f807bc88b48941
{ "intermediate": 0.44430720806121826, "beginner": 0.4325993061065674, "expert": 0.12309353053569794 }
1,176
Help me with my shiny app. First, let me show you my code: EUCTR_shiny.R: ________ EUCTR_function <- function(input_var, status_update_fun) { [TRUNCATED] # Update progress message status_update_fun(cat(sprintf("\r%s%d/%d", progress_message, progress_index, total_codes))) [TRUNCATED] # Save the workboo...
f4e33944d0a9e5db69972617aeaa7616
{ "intermediate": 0.4521673917770386, "beginner": 0.4282147288322449, "expert": 0.11961791664361954 }
1,177
Hey GPT, I'm learning about the Hugging Face transformers library, and was wondering.. what are those "heads" they are talking about? For example, you pass a text to the tokenizer, or can pass multiple at once as an array/dictionary - but with the "QuestionAnswering" one, the tokenizer takes two text inputs for one que...
6a958a71a8bd5b62743247b4d29001d5
{ "intermediate": 0.5607644319534302, "beginner": 0.036025770008563995, "expert": 0.4032098352909088 }
1,178
rewrite this to be a function:
4d50dfca1686714c9359c9338d835991
{ "intermediate": 0.20021915435791016, "beginner": 0.5984486937522888, "expert": 0.20133215188980103 }
1,181
tell me how to incorporate you into a course
33c4941ae5151e0b80dfe2b332467589
{ "intermediate": 0.35658302903175354, "beginner": 0.25271058082580566, "expert": 0.3907063603401184 }
1,182
C++, RAD STUDIO. Измени Edit3 на TMemo, сделай так, чтобы пользователь в Edit2 мог вводить только число и запятые. Добавь проверку на загруженно ли изображение (не _blank.png) при нажатии на кнопку добавить.
5ea5053844501b79ab78e3708bdeff61
{ "intermediate": 0.4456748962402344, "beginner": 0.3306560218334198, "expert": 0.2236691117286682 }
1,183
escribe el codigo en unity c# de esta clase: "Clase GameManager (MonoBehaviour): - Variables: instance, faderObj, faderImg, gameOver, fadeSpeed, fadeTransparency, currentScene, async - Métodos: Awake(), Update(), LoadScene(sceneName), ReloadScene(), OnLevelFinishedLoading(scene, mode), FadeOut(faderObject, fader), Fade...
a5556b8452d657692a575bfcbbf716a7
{ "intermediate": 0.27355682849884033, "beginner": 0.519368588924408, "expert": 0.20707452297210693 }
1,184
You can create a method in the GameManager class to save the game data using PlayerPrefs. For example, you can create a SaveGame method that saves the current game progress: Clase GameManager (MonoBehaviour): - Variables: instance, faderObj, faderImg, gameOver, fadeSpeed, fadeTransparency, currentScene, async - Métodos...
cff2f9e26f5c9c4b3f81da0c53eb3ef8
{ "intermediate": 0.38462039828300476, "beginner": 0.4029976427555084, "expert": 0.2123819887638092 }
1,185
C++ BUILDER, RAD STUDIO IDE. Задание: Замени в коде Edit3 на TMemo, адаптируй использование Memo1. Добавь проверку на пустые поля Edit1, Memo1, Edit3. Код:
972d7586e82ce44c6b52bdebe51bdff9
{ "intermediate": 0.40439409017562866, "beginner": 0.2831701934337616, "expert": 0.31243568658828735 }
1,186
Analyze similar existing code in Unity C# for swapping positions in 2D match-3 games
116ea9ef824b8f6f23f3846fa28b604b
{ "intermediate": 0.5506443381309509, "beginner": 0.27987125515937805, "expert": 0.16948440670967102 }
1,187
Hey, can you explain the following code to me? It's inference code for "GPTQ-for-LLaMa", a branch of GPTQ for Meta's LLM so it can be quantized to 4 bit precision. I am not really interested in quantizing myself, but I'd like to know how I can run inference myself using PyTorch/HF Transformers on such a 4-bit quantized...
00671a0ff79723730eb8cc577b887051
{ "intermediate": 0.39677882194519043, "beginner": 0.4426107704639435, "expert": 0.1606103926897049 }
1,188
CSCI 1100 — Computer Science 1 Homework 8 Bears, Berries and Tourists Redux: Classes Overview This homework is worth 100 points toward your overall homework grade, and is due Wednesday, April 26, 2022 at 11:59:59 pm. It has three parts. The first two are not worth many points, and may end up being worth 0. They are mai...
dbf3da6c90731fde6abf100c4ab1b1b0
{ "intermediate": 0.37033259868621826, "beginner": 0.4572488069534302, "expert": 0.17241863906383514 }
1,189
python script that uses beautifulsoup to write the name, price and url to a .csv on https://www.customsneakers.ch/collections/alle-sneaker?page=1 from ?page=1 to ?page=5
12902020da0187ce2a106f076ceee8d8
{ "intermediate": 0.3765965700149536, "beginner": 0.22766202688217163, "expert": 0.39574134349823 }
1,190
python script that uses beautifulsoup to write the name, price and url to a .csv on https://www.customsneakers.ch/collections/alle-sneaker?page=1 from ?page=1 to ?page=5
2856f19fc9a8af2d987e7abdcd7bb439
{ "intermediate": 0.3765965700149536, "beginner": 0.22766202688217163, "expert": 0.39574134349823 }
1,191
python script that uses beautifulsoup to write the name, price and url to a .csv on https://www.customsneakers.ch/collections/alle-sneaker?page=1 from ?page=1 to ?page=5
cbc0f1ea44e8fe69f5eef83aa865aee2
{ "intermediate": 0.3765965700149536, "beginner": 0.22766202688217163, "expert": 0.39574134349823 }
1,192
python script that uses beautifulsoup to write the name, price and url to a .csv on https://www.customsneakers.ch/collections/alle-sneaker?page=1 from ?page=1 to ?page=5
0a43263cb81993d23fe5721decacbc58
{ "intermediate": 0.3765965700149536, "beginner": 0.22766202688217163, "expert": 0.39574134349823 }
1,193
python script that uses beautifulsoup to write the name, price and url to a .csv on https://www.customsneakers.ch/collections/alle-sneaker?page=1 from ?page=1 to ?page=5
f6acfbc7fdedb09c03ccaf98fbc5f4ad
{ "intermediate": 0.3765965700149536, "beginner": 0.22766202688217163, "expert": 0.39574134349823 }
1,194
if response.result.isSuccess { let data = response.result.value as! NSString print(data); let contacts = data.components(separatedBy: "|") let userDefault = UserDefaults.init(suiteName: "group.incomi...
68a7012b03b9f3b42b5807cd2ee257e4
{ "intermediate": 0.37098604440689087, "beginner": 0.5020914673805237, "expert": 0.12692245841026306 }
1,195
make it that the url used is https://www.customsneakers.ch/collections/alle-sneaker?page=1 and the ?page=5 goes from 1 to 5 def get_sneaker_data(base_url, page_number): url = f"{base_url}?page={page_number}“ response = requests.get(url) soup = BeautifulSoup(response.content, ‘html.parser’) sneaker_dat...
917fe918435cdd05483826364d5a5cd2
{ "intermediate": 0.40231019258499146, "beginner": 0.36252862215042114, "expert": 0.23516122996807098 }
1,196
what is m3u8 format
be04b7e0951d9f3d08fde47d8d7291da
{ "intermediate": 0.2658047378063202, "beginner": 0.4461957812309265, "expert": 0.28799939155578613 }
1,197
Como le agrego a este codigo una función que me de una pitido cuando no aparece una pregunta en Chegg para contestar?var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } ret...
53139ca9f545c3c3e9eb765c6b4451ec
{ "intermediate": 0.3526522219181061, "beginner": 0.41526442766189575, "expert": 0.23208335041999817 }
1,198
what is m3u8 format
8125069621a9c60cac2337dea97c89e8
{ "intermediate": 0.2658047378063202, "beginner": 0.4461957812309265, "expert": 0.28799939155578613 }
1,199
fscanf obtains spaces and line breaks
b3c667df1ee14174e53a21fe83cfb182
{ "intermediate": 0.3669750690460205, "beginner": 0.2652395963668823, "expert": 0.36778536438941956 }
1,200
Удалить дубликаты строчки в Лист6 при проверке названий в столбце A. Sub MergeSheetsContainingAshan4() Dim SourceWorkbook As Workbook Dim SourceWorksheet As Worksheet Dim TargetWorkbook As Workbook Dim TargetWorksheet As Worksheet Dim LastRow As Long Dim NextRow As Long Dim ExistingSheetRow As Long Dim SheetExists As B...
9d000a799d036c3bf7630dcc0aa4ddd8
{ "intermediate": 0.3980400264263153, "beginner": 0.37884026765823364, "expert": 0.22311966121196747 }
1,201
async_hooks.executionAsyncId()
2d1e2e2e8cf5199c33e3e030b3d9b43d
{ "intermediate": 0.4226439893245697, "beginner": 0.22715869545936584, "expert": 0.35019734501838684 }
1,202
is there is a way to dial a code on an Android device from a C# Windows application that doesn’t require ADB or ADB bridge?
ddfa23ca4270ec4216bda7f15d3e2cb1
{ "intermediate": 0.6812052130699158, "beginner": 0.12804056704044342, "expert": 0.190754234790802 }
1,203
For a given integer N, print all the squares of positive integers where the square is less than or equal to N, in ascending order. Use while loops and no quotations in the print statement
88df586660143d441cea37207c010998
{ "intermediate": 0.1367834210395813, "beginner": 0.7727622985839844, "expert": 0.09045427292585373 }
1,204
Here is AlexNet and train function implementation . class AlexNet_Modified(nn.Module): def __init__(self): super(AlexNet_Modified, self).__init__() self.features = nn.Sequential( nn.Conv2d(3, 96, kernel_size=11, stride=4), nn.BatchNorm2d(96), nn.ReLU(inplace=True...
e5f0b5370f25756620a24998df781f89
{ "intermediate": 0.2457571029663086, "beginner": 0.3492105305194855, "expert": 0.40503233671188354 }
1,205
Please explain how rust can cascade into lvvm
05d40796d973f93dd907c8f650c0d22e
{ "intermediate": 0.4201832115650177, "beginner": 0.17694570124149323, "expert": 0.40287116169929504 }