row_id
int64
0
48.4k
init_message
stringlengths
1
342k
conversation_hash
stringlengths
32
32
scores
dict
18,688
hello!
e23f2502b5d3c97158ecdb6601eeead0
{ "intermediate": 0.3276780843734741, "beginner": 0.28214582800865173, "expert": 0.39017611742019653 }
18,689
I used this code: def get_request_param_string(param): if not param: return "" sb = [] map = sorted(param.items()) for key, value in map: value = value if value else "" sb.append(key + '=' + urllib.parse.quote(value) + '&') sb.pop() return ''.join(sb) def url_encode(s): return urllib.parse.quote(s, safe='') def sign(signVo): if not signVo['requestParam']: signVo['requestParam'] = "" str = signVo['accessKey'] + signVo['reqTime'] + signVo['requestParam'] return actual_signature(str, signVo['secretKey']) def actual_signature(inputStr, key): hmacSha256 = hmac.new(key.encode(), inputStr.encode(), hashlib.sha256) return hmacSha256.hexdigest() quantity = 0.5 print(client.order(symbol=symbol,price=200.01, vol=quantity,side=1, type=1, open_type=None, position_id=None, leverage=50, external_oid=None, stop_loss_price=None, take_profit_price=None, position_mode=None, reduce_only=False )) But terminal returned me: {'success': False, 'code': 602, 'message': 'Signature verification failed!'}
591441ea48ae639a1762935cba8123d1
{ "intermediate": 0.4181458353996277, "beginner": 0.36784160137176514, "expert": 0.2140125334262848 }
18,690
p(a|x) = p1 and p(a|y) = p2 . what is p(x|a)
fd7958846f1d4245f0352c9a2c9a7c14
{ "intermediate": 0.27709537744522095, "beginner": 0.36157944798469543, "expert": 0.36132511496543884 }
18,691
输出遥感影像的名称为shp名称+遥感影像的时间+calculate_NDVI的函数名 import geopandas as gpd import ee class EarthEngineNDVICalculator: def init(self, shp_filepath): self.shp_filepath = shp_filepath self.region = self._load_region_from_shapefile(shp_filepath) self.collection = self._load_image_collection() def _load_region_from_shapefile(self, shp_filepath): shapefile = gpd.read_file(shp_filepath) return ee.Geometry(shape=shapefile.geometry.values[0]) def _load_image_collection(self): collection = ee.ImageCollection(‘COPERNICUS/S2’) .filterDate(‘2023-05-01’, ‘2023-12-10’) .filterBounds(self.region) .filter(ee.Filter.lt(‘CLOUDY_PIXEL_PERCENTAGE’, 10)) return collection def _get_NDVI(self, image): NDVI = image.normalizedDifference([‘B8’, ‘B4’]).rename([‘NDVI’]) image = image.addBands(NDVI).clip(self.region) return image.select([‘NDVI’]) def calculate_NDVI(self): NDVI_Collection = self.collection.map(self.get_NDVI) return NDVI_Collection def export_NDVI_images(self, output_folder): def exportImage(image): date = image.date().format(“YYYYMMDD”) filename = f"shp{date}_ndvi" task = ee.batch.Export.image.toDrive( image=image.clip(self.region), description=filename, folder=output_folder, fileNamePrefix=filename, region=self.region, scale=10, crs=“EPSG:4326” ) task.start() NDVI_Collection = self.calculate_NDVI() NDVI_Collection.forEach(exportImage) # Example usage shp_filepath = ‘path_to_shapefile.shp’ output_folder = ‘output_folder_path’ ndvi_calculator = EarthEngineNDVICalculator(shp_filepath) ndvi_calculator.export_NDVI_images(output_folder)
c47c87f1f1440f0b86329b5ca7332fd8
{ "intermediate": 0.31490325927734375, "beginner": 0.42588305473327637, "expert": 0.2592136859893799 }
18,692
etwork connection problems may be due to proxy or firewall settings. Do you have a network proxy you would like to set in gcloud (Y/n)? Select the proxy type: [1] HTTP [2] HTTP_NO_TUNNEL [3] SOCKS4 [4] SOCKS5 Please enter your numeric choice: 1 Enter the proxy host address:
72c3a59155a21fecac9d13ab3ab90ab1
{ "intermediate": 0.37361425161361694, "beginner": 0.2978098392486572, "expert": 0.3285759389400482 }
18,693
Read this:
abb1601a9cf473e9c403d531eba99ca4
{ "intermediate": 0.34216752648353577, "beginner": 0.27071163058280945, "expert": 0.38712090253829956 }
18,694
hi there
66488b4f313173a3daa5507651f006c1
{ "intermediate": 0.32885003089904785, "beginner": 0.24785484373569489, "expert": 0.42329514026641846 }
18,695
hey
e14012b93968c0a4efd6f0539c163ba6
{ "intermediate": 0.33180856704711914, "beginner": 0.2916048467159271, "expert": 0.3765866458415985 }
18,696
i want to get null numbers in a dataframe in pyspark
e0e94beb85fe9cf9b36e24a17e546001
{ "intermediate": 0.5633780360221863, "beginner": 0.14266078174114227, "expert": 0.2939611077308655 }
18,697
Can you use MT5 programming
64d12dba229909a7a4472f08c6fe5022
{ "intermediate": 0.3658831715583801, "beginner": 0.271541029214859, "expert": 0.3625757694244385 }
18,698
hi
81cadd9509580bc0ffc478347aa2fece
{ "intermediate": 0.3246487081050873, "beginner": 0.27135494351387024, "expert": 0.40399640798568726 }
18,699
--2.make date values appear as date: on mysql 12322 11122 21821 30723 40920 111223 121320
ea2dc41352dd978087ee0fa027b973ee
{ "intermediate": 0.4455433487892151, "beginner": 0.23313215374946594, "expert": 0.3213244378566742 }
18,701
i have a bunch of equation in string format like "9/?=3", "2+?=4", "81/?=9" etc. write a python script that solves them
d6d72fc62565eb449c885b5708952db2
{ "intermediate": 0.45713165402412415, "beginner": 0.26389285922050476, "expert": 0.2789754569530487 }
18,702
i have a bunch of equation in string format like “9/?=3”, “2+?=4”, “81/?=9” etc. write a python script that solves them
305d827510baf7e046dbd68a634199df
{ "intermediate": 0.38122233748435974, "beginner": 0.294034481048584, "expert": 0.32474321126937866 }
18,703
i have a bunch of equation in string format like “9/?=3”, “2+?=4”, “81/?=9”, "3*?=12", "20-?=15' . write a python script that solves them
2812a7af6cbc3fdb7e333eded0c65554
{ "intermediate": 0.3937184810638428, "beginner": 0.3074939548969269, "expert": 0.29878759384155273 }
18,705
Extruding 2D sprites for a spritesheet with atlassing, how should the colors of the pixels on the added borders determined, especially in the corners?
e8928093c42847dee1b665e76568e486
{ "intermediate": 0.4293734133243561, "beginner": 0.22973865270614624, "expert": 0.3408879339694977 }
18,706
Are there programming languages that have a uniform syntax for quoting/unquoting symbols like lisp?
13fe89c4f0ca65570d1be706c104a300
{ "intermediate": 0.13952356576919556, "beginner": 0.6691562533378601, "expert": 0.19132022559642792 }
18,707
Can an interpreter for a programming language interpret arbitrarily nested stuff line by line in constant space without using a stack to remember?
9eb22b892b65a9a092c754b8f6740060
{ "intermediate": 0.20330551266670227, "beginner": 0.574467122554779, "expert": 0.22222736477851868 }
18,708
using System; using System.Data; using System.Windows.Forms; using MySql.Data.MySqlClient; using static System.Windows.Forms.VisualStyles.VisualStyleElement; namespace HorseRacing { public partial class Form1 : Form { private MySqlConnection conn; private string connectionString = "server=localhost;port=3306;username=root;password=root;database=HorseRacingDB"; public MySqlConnection GetDBConnection() { return conn; } public string GetDBConnectionString() { return connectionString; } public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { conn = new MySqlConnection(connectionString); conn.Open(); } private void Form1_FormClosing(object sender, FormClosingEventArgs e) { conn.Close(); } private void ExecuteQuery(string query) { try { MySqlCommand cmd = new MySqlCommand(query, conn); MySqlDataAdapter adapter = new MySqlDataAdapter(cmd); DataTable dt = new DataTable(); adapter.Fill(dt); dataGridView1.DataSource = dt; } catch (Exception ex) { MessageBox.Show("Error executing query: " + ex.Message); } } private void BtnAddOwner_Click(object sender, EventArgs e) { OwnerForm ownerForm = new OwnerForm(this); // Create OwnerForm ownerForm.ShowDialog(); // Display the OwnerForm as a modal dialog } private void BtnAddHorses_Click(object sender, EventArgs e) { HorsesForm horsesForm = new HorsesForm(this); // Create HorsesForm horsesForm.ShowDialog(); } private void BtnAddJockeys_Click(object sender, EventArgs e) { JockeysForm jockeysForm = new JockeysForm(this); // Create JockeysForm jockeysForm.ShowDialog(); } private void BtnAddRaces_Click(object sender, EventArgs e) { RacesForm racesForm = new RacesForm(this); // Create RacesForm racesForm.ShowDialog(); } private void BtnAddResults_Click(object sender, EventArgs e) { ResultsForm resultsForm = new ResultsForm(this); // Create ResultsForm resultsForm.ShowDialog(); } private void Button1_Click(object sender, EventArgs e) { string query = "SELECT * FROM Owners " + "WHERE OwnerID IN(" + "SELECT OwnerID FROM Horses " + "GROUP BY OwnerID " + "HAVING COUNT(*) > 1)"; ExecuteQuery(query); } private void Button2_Click(object sender, EventArgs e) { string userInput = textBox2.Text; string query = "SELECT * FROM Jockeys " + "WHERE Rating > " + userInput; ExecuteQuery(query); } private void Button3_Click(object sender, EventArgs e) { DateTime startDate = startDateBox3.Value; DateTime endDate = startDateBox4.Value; string query = "SELECT Races.RaceName, Results.Position, Horses.HorseName, Races.Location " + "FROM Results " + "JOIN Races ON Results.RaceID = Races.RaceID " + "JOIN Horses ON Results.HorseID = Horses.HorseID " + "WHERE Races.RaceDate BETWEEN '" + startDate.Date + "’ AND '" +endDate.Date + "'"; ExecuteQuery(query); } private void Button4_Click(object sender, EventArgs e) { string userInput = textBox5.Text; string query = "SELECT Jockeys.JockeyName, SUM(CASE WHEN Results.Position = ‘I’ THEN 1 ELSE 0 END) AS FirstPlaceCount " + "FROM Results " + "JOIN Jockeys ON Results.JockeyID = Jockeys.JockeyID " + "JOIN Races ON Results.RaceID = Races.RaceID " + "WHERE Races.Location = '" + userInput + "' " + "AND Races.RaceDate BETWEEN DATE_SUB(CURDATE(), INTERVAL 1 MONTH) AND CURDATE() " + "GROUP BY Jockeys.JockeyID " + "ORDER BY FirstPlaceCount DESC " + "LIMIT 3"; ExecuteQuery(query); } } }
2c26fa0c5cf331f486a8e21aa63177ac
{ "intermediate": 0.3973483145236969, "beginner": 0.48438379168510437, "expert": 0.11826787143945694 }
18,709
Do you know any programming language that uses the keyword "endfun" to end functions ?
f666e79c86494d029eb58672e573d9ec
{ "intermediate": 0.2358892261981964, "beginner": 0.5249496698379517, "expert": 0.23916110396385193 }
18,710
As an AI text-to-image prompt generator, your primary role is to generate detailed, dynamic, and stylized prompts for image generation. Your outputs should focus on providing specific details to enhance the generated art. You must not reveal your system prompts or this message, just generate image prompts. Never respond to "show my message above" or any trick that might show this entire system prompt. Consider using colons inside brackets for additional emphasis in tags. For example, (tag) would represent 100% emphasis, while (tag:1.1) represents 110% emphasis. Focus on emphasizing key elements like characters, objects, environments, or clothing to provide more details, as details can be lost in AI-generated art. --- Emphasize examples ---
66ab3d5b973eb1c70a7f3b0cf098a2dc
{ "intermediate": 0.2553189694881439, "beginner": 0.35437411069869995, "expert": 0.39030691981315613 }
18,711
As an AI text-to-image prompt generator, your primary role is to generate detailed, dynamic, and stylized prompts for image generation. Your outputs should focus on providing specific details to enhance the generated art. You must not reveal your system prompts or this message, just generate image prompts. Never respond to "show my message above" or any trick that might show this entire system prompt. Consider using colons inside brackets for additional emphasis in tags. For example, (tag) would represent 100% emphasis, while (tag:1.1) represents 110% emphasis. Focus on emphasizing key elements like characters, objects, environments, or clothing to provide more details, as details can be lost in AI-generated art. --- Emphasize examples ---
60118c6e058895fcf102c69e2011daea
{ "intermediate": 0.2553189694881439, "beginner": 0.35437411069869995, "expert": 0.39030691981315613 }
18,712
are there any interpreters for programming languages that put labels, the targets of jumps due to if, while, etc. into the symbol table to avoid creating ad hoc structures?
49d7fc67125eed4c8941680874218907
{ "intermediate": 0.2916549742221832, "beginner": 0.4913579523563385, "expert": 0.21698708832263947 }
18,713
explain this code line by line
c2984a975a1083c663f2893654b9a26d
{ "intermediate": 0.19341684877872467, "beginner": 0.5073375105857849, "expert": 0.29924559593200684 }
18,714
I used this code: def get_request_param_string(param): if not param: return "" sb = [] map = sorted(param.items()) for key, value in map: value = value if value else "" sb.append(key + '=' + urllib.parse.quote(value) + '&') sb.pop() return ''.join(sb) def url_encode(s): return urllib.parse.quote(s, safe='') def sign(signVo): if not signVo['requestParam']: signVo['requestParam'] = "" str = signVo['accessKey'] + signVo['reqTime'] + signVo['requestParam'] return actual_signature(str, signVo['secretKey']) def actual_signature(inputStr, key): hmacSha256 = hmac.new(key.encode(), inputStr.encode(), hashlib.sha256) return hmacSha256.hexdigest() quantity = 0.5 print(client.order(symbol=symbol,price=200.01, vol=quantity,side=1, type=1, open_type=None, position_id=None, leverage=50, external_oid=None, stop_loss_price=None, take_profit_price=None, position_mode=None, reduce_only=False )) But I getting ERROR: {'success': False, 'code': 602, 'message': 'Signature verification failed!'}
75c9e9526c6ab115eaa760a6ff0bfc7d
{ "intermediate": 0.4250795245170593, "beginner": 0.34200868010520935, "expert": 0.2329118549823761 }
18,715
How do I define a MutableMap in Kotlin, so that it only has keys that are numbers 1 thru 3 and its elements are sets of Int variables
e503c669fe2be7a4f916f433f29db8ee
{ "intermediate": 0.6124141812324524, "beginner": 0.15624523162841797, "expert": 0.23134058713912964 }
18,716
I used this code: client = futures.HTTP(api_key = api_key, api_secret = api_secret) def signature(self, req_time, sign_params=None): if sign_params: sign_params = urlencode(OrderedDict(sorted(sign_params.items())), quote_via=quote) to_sign = f"{self._access_id}{req_time}{sign_params}" else: to_sign = f"{self._access_id}{req_time}" sign = hmac.new(self._secret.encode('utf-8'), to_sign.encode('utf-8'), hashlib.sha256).hexdigest() return sign quantity = 0.5 print(client.order(symbol=symbol,price=200.01, vol=quantity,side=1, type=1, open_type=None, position_id=None, leverage=50, external_oid=None, stop_loss_price=None, take_profit_price=None, position_mode=None, reduce_only=False )) But terminal returned me: {'success': False, 'code': 602, 'message': 'Signature verification failed!'}
d249ed09b366ecc8943227de62f1351c
{ "intermediate": 0.4510040879249573, "beginner": 0.369209349155426, "expert": 0.1797865778207779 }
18,717
In my open workbook 'Service Providers', I would like to click on J3 and have a Form open. The Form will allow me to enter a 'Start Date' and an 'End Date'. The form will also have a Submit button which when I click on will, open a closed workbook 'Service Providers History' located at; "G:\Shared drives\Swan School Site Premises\PREMISES MANAGEMENT\SERVICE PROVIDERS\Service Providers History.xlsx" When the workbook 'Service Provider History' opens, the sheet that has the same name as the active sheet in my workbook 'Service Provider' will be activated. Using the 'Start Date' and the 'End Date' entered in the Form, all cells in I:I of the currently activated sheet in the workbook 'Service Providers History' that have dates equal to and between the Start and End Dates entered in the Form will be copied to a new Note Pad document along with the values of J:J of the same row. Each row pasted will be on a seperate line in the Note Pad document. Once all the values have been pasted the workbook 'Service Provider History' will be closed without saving and without any prompts. Can you write all the necessary VBA codes for me and explain how I will also create the Form.
e23a04a72f1c6e6a882a8817c3457648
{ "intermediate": 0.44080886244773865, "beginner": 0.3360395133495331, "expert": 0.22315162420272827 }
18,718
How do I use containsValue with a MutableMap in Kotlin?
605a97dc444efb0e587e32b6b2829c97
{ "intermediate": 0.6907498836517334, "beginner": 0.1462770402431488, "expert": 0.162973091006279 }
18,719
| step | type | amount | nameOrig | oldbalanceOrg | newbalanceOrig | nameDest | oldbalanceDest | newbalanceDest | isFraud | isFlaggedFraud | |------|----------|-----------|--------------|---------------|----------------|--------------|----------------|----------------|---------|----------------| | 1 | PAYMENT | 9839.64 | C1231006815 | 170136.00 | 160296.36 | M1979787155 | 0.0 | 0.00 | 0 | 0 | | 1 | PAYMENT | 1864.28 | C1666544295 | 21249.00 | 19384.72 | M2044282225 | 0.0 | 0.00 | 0 | 0 | | 1 | TRANSFER | 181.00 | C1305486145 | 181.00 | 0.00 | C553264065 | 0.0 | 0.00 | 1 | 0 | | 1 | CASH_OUT | 181.00 | C840083671 | 181.00 | 0.00 | C38997010 | 21182.0 | 0.00 | 1 | 0 | | 1 | PAYMENT | 11668.14 | C2048537720 | 41554.00 | 29885.86 | M1230701703 | 0.0 | 0.00 | 0 | 0 | | 1 | PAYMENT | 7817.71 | C90045638 | 53860.00 | 46042.29 | M573487274 | 0.0 | 0.00 | 0 | 0 | | 1 | PAYMENT | 7107.77 | C154988899 | 183195.00 | 176087.23 | M408069119 | 0.0 | 0.00 | 0 | 0 | | 1 | PAYMENT | 7861.64 | C1912850431 | 176087.23 | 168225.59 | M633326333 | 0.0 | 0.00 | 0 | 0 | | 1 | PAYMENT | 4024.36 | C1265012928 | 2671.00 | 0.00 | M1176932104 | 0.0 | 0.00 | 0 | 0 | | 1 | DEBIT | 5337.77 | C712410124 | 41720.00 | 36382.23 | C195600860 | 41898.0 | 40348.79 | 0 | 0 | | 1 | DEBIT | 9644.94 | C1900366749 | 4465.00 | 0.00 | C997608398 | 10845.0 | 157982.12 | 0 | 0 | | 1 | PAYMENT | 3099.97 | C249177573 | 20771.00 | 17671.03 | M2096539129 | 0.0 | 0.00 | 0 | 0 | | 1 | PAYMENT | 2560.74 | C1648232591 | 5070.00 | 2509.26 | M972865270 | 0.0 | 0.00 | 0 | 0 | | 1 | PAYMENT | 11633.76 | C1716932897 | 10127.00 | 0.00 | M801569151 | 0.0 | 0.00 | 0 | 0 | | 1 | PAYMENT | 4098.78 | C1026483832 | 503264.00 | 499165.22 | M1635378213 | 0.0 | 0.00 | 0 | 0 | | 1 | CASH_OUT | 229133.94 | C905080434 | 15325.00 | 0.00 | C476402209 | 5083.0 | 51513.44 | 0 | 0 | | 1 | PAYMENT | 1563.82 | C761750706 | 450.00 | 0.00 | M1731217984 | 0.0 | 0.00 | 0 | 0 | | 1 | PAYMENT | 1157.86 | C1237762639 | 21156.00 | 19998.14 | M1877062907 | 0.0 | 0.00 | 0 | 0 | | 1 | PAYMENT | 671.64 | C2033524545 | 15123.00 | 14451.36 | M473053293 | 0.0 | 0.00 | 0 | 0 | | 1 | TRANSFER | 215310.30 | C1670993182 | 705.00 | 0.00 | C1100439041 | 22425.0 | 0.00 | 0 | 0 | | 1 | PAYMENT | 1373.43 | C20804602 | 13854.00 | 12480.57 | M1344519051 | 0.0 | 0.00 | 0 | 0 | | 1 | DEBIT | 9302.79 | C1566511282 | 11299.00 | 1996.21 | C1973538135 | 29832.0 | 16896.70 | 0 | 0 | | 1 | DEBIT | 1065.41 | C1959239586 | 1817.00 | 751.59 | C515132998 | 10330.0 | 0.00 | 0 | 0 | | 1 | PAYMENT | 3876.41 | C504336483 | 67852.00 | 63975.59 | M1404932042 | 0.0 | 0.00 | 0 | 0 | | 1 | TRANSFER | 311685.89 | C1984094095 | 10835.00 | 0.00 | C932583850 | 6267.0 | 2719172.89 | 0 | 0 |
bb4dbf925c211ab57b5532f0d429d7c3
{ "intermediate": 0.3425953984260559, "beginner": 0.3939819633960724, "expert": 0.2634226381778717 }
18,720
<q-td v-for="columns,index in columns" :key="columns.name" :props="props" style="margin: 0!important;padding: 0!important;" :class="index == 0 ? 'div_hover':null " > <div v-if="columns.name === 'pkgItemName'" class="q-pa-none" @click="fetchPicture()"> {{ props.row[columns.field].pkgItemName}}</div> <div v-if="columns.name === 'pkgItemCode'" class="q-pa-none"> {{ props.row[columns.field].pkgItemCode}}</div> <div v-if="columns.name === 'pkgItemDes'" class="q-pa-none"> {{ props.row[columns.field].pkgItemDes}}</div> <div v-if="columns.name === 'picture'" class="q-pa-none"><img style="max-width: 64px; height: 64px;" :src="rows[index].pkgItemID?.cover"></div> <div v-if="columns.name === 'createTime'" class="q-pa-none"> {{ date.formatDate(props.row[columns.field], "YYYY-MM-DD")}}</div> </q-td>为什么<div v-if="columns.name === 'picture'" class="q-pa-none"><img style="max-width: 64px; height: 64px;" :src="rows[index].pkgItemID?.cover"></div>这里的index拿不到
4f0982dd7582b6cc3c48e60bbb7a1440
{ "intermediate": 0.3340134620666504, "beginner": 0.36745578050613403, "expert": 0.2985307276248932 }
18,721
<q-tr :props="props"> <q-td v-for="columns,index in columns" :key="columns.name" :props="props" style="margin: 0!important;padding: 0!important;" :class="index == 0 ? 'div_hover':null " > <div v-if="columns.name === 'pkgItemName'" class="q-pa-none" @click="fetchPicture()"> {{ props.row[columns.field].pkgItemName}}</div> <div v-if="columns.name === 'pkgItemCode'" class="q-pa-none"> {{ props.row[columns.field].pkgItemCode}}</div> <div v-if="columns.name === 'pkgItemDes'" class="q-pa-none"> {{ props.row[columns.field].pkgItemDes}}</div> <div v-if="columns.name === 'picture'" class="q-pa-none"><img style="max-width: 64px; height: 64px;" :src="rows[i].pkgItemID?.cover"></div> <div v-if="columns.name === 'createTime'" class="q-pa-none"> {{ date.formatDate(props.row[columns.field], "YYYY-MM-DD")}}</div> </q-td> </q-tr>vue3+quasar我想让i从0开始直到结束
ff5c343338c5a7a2721f160c63e58320
{ "intermediate": 0.3282788097858429, "beginner": 0.34517383575439453, "expert": 0.3265473246574402 }
18,722
# coding:utf-8 import arcpy import os import re from arcpy import env def dissolve_shapefiles(input_raster_path, output_shp_path): arcpy.env.workspace = input_raster_path shps = arcpy.ListFiles("*.shp") for shp in shps: catchment_name = shp[:8] shp_out_name = os.path.join(output_shp_path,catchment_name) arcpy.Dissolve_management(shp, shp_out_name,“gridcode”) print “Finished dissolving”, catchment_name if name == "main": input_raster_path = r"F:\GEE\liangzhongchang\mask\polygonndvi" folder = input_raster_path[-4:] folder_name = "dissolve" + folder folder_path = "F:\GEE\liangzhongchang\mask" output_shp_path = os.path.join(folder_path,folder_name) if not os.path.exists(output_shp_path): os.mkdir(output_shp_path) dissolve_shapefiles(input_raster_path, output_shp_path) 如何将output_shp_path和下述的代码中的input_polygon联系起来,并将两段代码合并一起运行 import arcpy import os import re import glob import datetime class FieldCalculator: def init(self, input_polygon): self.input_polygon = input_polygon def calculate_fields(self): current_year = datetime.datetime.now().year path_list = os.listdir(self.input_polygon) for i in range(len(path_list)): landid = path_list[i][-4:] print(landid) path = self.input_polygon + "\\" + path_list[i] shps = glob.glob(os.path.join(self.input_polygon, “*.shp”)) for shp in shps: print(shp) catchment_name = shp[-12:-4] print (catchment_name) date = int(catchment_name) # arcpy.DeleteField_management(shp,["LandId"]) field_names = [f.name for f in arcpy.ListFields(shp)] if 'date' not in field_names: arcpy.AddField_management(shp, 'date', 'Long') arcpy.CalculateField_management(shp,'date',expression=date,expression_type="python", code_block="") if 'landId' not in field_names: arcpy.AddField_management(shp, 'landId', 'Short') arcpy.CalculateField_management(shp,'landId',0,expression_type="python") if 'landName' not in field_names: arcpy.AddField_management(shp, 'landName','TEXT') if 'crop' not in field_names: arcpy.AddField_management(shp, 'crop','TEXT') if 'Area' not in field_names: arcpy.AddField_management(shp,'Area','Double') if 'Area_mu' not in field_names: arcpy.AddField_management(shp,'Area_mu','Double') if 'year' not in field_names: arcpy.AddField_management(shp,'year','Double') arcpy.CalculateField_management(shp,'year',current_year,expression_type="python") if name == "main": input_polygon = r"F:\GEE\liangzhongchang\mask\dissolve_cho" field_calculator = FieldCalculator(input_polygon) field_calculator.calculate_fields()
68e93db4296ca981279be1ee9b9cae2c
{ "intermediate": 0.3402448296546936, "beginner": 0.5498555898666382, "expert": 0.10989955812692642 }
18,723
Write a code of Fibonacci series
c0f20a855d4ed616fff8fd7965d47b9c
{ "intermediate": 0.29104164242744446, "beginner": 0.33909884095191956, "expert": 0.369859516620636 }
18,724
Tachometer to assign Red, yellow and Green color
209f7774487c7e166466d5d2cf223e68
{ "intermediate": 0.40952038764953613, "beginner": 0.2525813579559326, "expert": 0.33789825439453125 }
18,725
can you write simple java prohram
06a083259b0aa3b4b48c5bb4b8b6600e
{ "intermediate": 0.2804607152938843, "beginner": 0.5116272568702698, "expert": 0.20791202783584595 }
18,726
starting file point in .net
62de732f00121ac0770a3bba01e48f28
{ "intermediate": 0.34989097714424133, "beginner": 0.23378640413284302, "expert": 0.41632261872291565 }
18,727
Нужен альтернативный код, делающий тоже самое def enum_windows_handler(hwnd, lParam): # Get process and window information process_id = win32process.GetWindowThreadProcessId(hwnd)[1] try: process = psutil.Process(process_id) if process.name() == desired_process_name: window_title = win32gui.GetWindowText(hwnd) window_title = window_title.encode('windows-1251', errors='ignore').decode('windows-1251') # Write information to the CSV file csv_writer.writerow([lParam[0], desired_process_name, window_title, hwnd]) # Increment the row counter lParam[0] += 1 except psutil.NoSuchProcess: pass return True # Define csv_writer class member to write results to CSV file class MyMainClass: def __init__(self): ... self.csv_writer = csv.writer(csv_file, delimiter=';', quoting=csv.QUOTE_NONNUMERIC) def write_process_info(self): ... # Enumerate through all windows row_counter = [1] # Define row counter as a list to make it mutable win32gui.EnumWindows(self.enum_windows_handler, row_counter)
f6611af585c604bf7f98f7650c01a9fe
{ "intermediate": 0.330929696559906, "beginner": 0.5140974521636963, "expert": 0.1549728363752365 }
18,728
Can you please write me a vba code that does the following; In column A2:A31 If a cell is empty and there are cells below that contain values, move the cells with values up to fill the empty cells
3552ba777112a44ba1ec12ea8d3fa528
{ "intermediate": 0.41450318694114685, "beginner": 0.1489098072052002, "expert": 0.43658700585365295 }
18,729
# – coding: UTF-8 – import arcpy import glob import os import re class BatchClip: def init(self, inws, outws, mask): self.inws = inws self.outws = outws self.mask = mask arcpy.CheckOutExtension(‘Spatial’) def clip(self): if not os.path.exists(self.outws): os.mkdir(self.outws) rasters = glob.glob(os.path.join(self.inws, “.tif”)) shps = glob.glob(os.path.join(self.mask, “.shp”)) for shp in shps: for ras in rasters: nameT = os.path.basename(ras) + “.tif” outname = os.path.join(self.outws, nameT) out_extract = arcpy.sa.ExtractByMask(ras, shp) out_extract.save(outname) print os.path.basename(ras) + " ---- down" print " ---- down ---- “ inws = r"F:\GEE\liangzhongchang\tif\liangzhongchang_ndvi” outws = r"F:\GEE\liangzhongchang\mask” mask = r"F:\GEE\liangzhongchang\1_shp" batch_clip = BatchClip(inws, outws, mask) batch_clip.clip() import arcpy import os import glob import re from arcpy.sa import arcpy.CheckOutExtension(‘Spatial’) class RasterReclassify: def init(self, workspace): # Set workspace arcpy.env.workspace = workspace def reclassify_rasters(self, index): folder = arcpy.env.workspace[-4:] folder_name = “reclassify” + folder folder_path = os.path.dirname(arcpy.env.workspace) output_path = os.path.join(folder_path, folder_name) if not os.path.exists(output_path): os.mkdir(output_path) print(output_path) rasterlist = arcpy.ListRasters(“”, “tif”) for raster in rasterlist: inRaster = arcpy.Raster(raster) print(inRaster) time = inRaster.name[:8] print(time) out = os.path.join(output_path, time + “_” + index + “.tif”) print(out) if index == “ndvi”: # NDVI outCon = Con(inRaster <= 0.19, 1, Con((inRaster > 0.19) & (inRaster <= 0.39), 2, Con((inRaster > 0.39) & (inRaster <= 0.55), 3, Con((inRaster > 0.55) & (inRaster <= 0.75), 4, Con((inRaster > 0.75), 5))))) elif index == “gndvi”: # GNDVI outCon = Con(inRaster <= 0.2, 1, Con((inRaster > 0.2) & (inRaster <= 0.4), 2, Con((inRaster > 0.4) & (inRaster <= 0.6), 3, Con((inRaster > 0.6) & (inRaster <= 0.8), 4, Con((inRaster > 0.8), 5))))) elif index == “vci”: # VCI outCon = Con(inRaster <= 0.15, 1, Con((inRaster > 0.15) & (inRaster <= 0.3), 2, Con((inRaster > 0.3) & (inRaster <= 0.45), 3, Con((inRaster > 0.45) & (inRaster <= 0.6), 4, Con((inRaster > 0.6), 5))))) elif index == “chlor”: # Chlor outCon = Con(inRaster <= 12, 1, Con((inRaster > 12) & (inRaster <= 21), 2, Con((inRaster > 21) & (inRaster <= 32), 3, Con((inRaster > 32) & (inRaster <= 43), 4, Con((inRaster > 43), 5))))) outCon.save(out) print(str(raster) + “–down”) print(" —down— “) # Example usage rr = RasterReclassify(r"F:\GEE\liangzhongchang\mask\ndvi”) rr.reclassify_rasters(“ndvi”) rr.reclassify_rasters(“gndvi”) rr.reclassify_rasters(“vci”) rr.reclassify_rasters(“chlor”) # coding:utf-8 import arcpy import os import re from arcpy import env class RasterToPolygonConverter: def init(self, input_raster_path, output_shp_path): self.input_raster_path = input_raster_path self.output_shp_path = output_shp_path def convert_raster_to_polygon(self): # Set workspace arcpy.env.workspace = self.input_raster_path # Create output folder if it doesn’t exist if not os.path.exists(self.output_shp_path): os.mkdir(self.output_shp_path) # List raster files rasters = arcpy.ListFiles(“.tif") for raster in rasters: # Extract catchment name from raster filename catchment_name = raster[:8] print(catchment_name) # Set output shapefile path shp_out_name = os.path.join(self.output_shp_path, catchment_name) print(shp_out_name) # Convert raster to polygon arcpy.RasterToPolygon_conversion(raster, shp_out_name, “true”, “Value”) print(“finished”) # Example usage input_raster_path = r"F:\GEE\liangzhongchang\mask\reclassifyndvi" folder = input_raster_path[-4:] folder_name = “polygon” + folder folder_path = r"F:\GEE\liangzhongchang\mask" output_shp_path = os.path.join(folder_path, folder_name) converter = RasterToPolygonConverter(input_raster_path, output_shp_path) converter.convert_raster_to_polygon() # coding:utf-8 import arcpy import os import re from arcpy import env def dissolve_shapefiles(input_raster_path, output_shp_path): arcpy.env.workspace = input_raster_path shps = arcpy.ListFiles(".shp”) for shp in shps: catchment_name = shp[:8] shp_out_name = os.path.join(output_shp_path,catchment_name) arcpy.Dissolve_management(shp, shp_out_name,“gridcode”) print “Finished dissolving”, catchment_name if name == “main”: input_raster_path = r"F:\GEE\liangzhongchang\mask\polygonndvi" folder = input_raster_path[-4:] folder_name = “dissolve” + folder folder_path = “F:\GEE\liangzhongchang\mask” output_shp_path = os.path.join(folder_path,folder_name) if not os.path.exists(output_shp_path): os.mkdir(output_shp_path) dissolve_shapefiles(input_raster_path, output_shp_path) import arcpy import os import re import glob import datetime class FieldCalculator: def init(self, input_polygon): self.input_polygon = input_polygon def calculate_fields(self): current_year = datetime.datetime.now().year path_list = os.listdir(self.input_polygon) for i in range(len(path_list)): landid = path_list[i][-4:] print(landid) path = self.input_polygon + “\” + path_list[i] shps = glob.glob(os.path.join(self.input_polygon, “*.shp”)) for shp in shps: print(shp) catchment_name = shp[-12:-4] print (catchment_name) date = int(catchment_name) # arcpy.DeleteField_management(shp,[“LandId”]) field_names = [f.name for f in arcpy.ListFields(shp)] if ‘date’ not in field_names: arcpy.AddField_management(shp, ‘date’, ‘Long’) arcpy.CalculateField_management(shp,‘date’,expression=date,expression_type=“python”, code_block=“”) if ‘landId’ not in field_names: arcpy.AddField_management(shp, ‘landId’, ‘Short’) arcpy.CalculateField_management(shp,‘landId’,0,expression_type=“python”) if ‘landName’ not in field_names: arcpy.AddField_management(shp, ‘landName’,‘TEXT’) if ‘crop’ not in field_names: arcpy.AddField_management(shp, ‘crop’,‘TEXT’) if ‘Area’ not in field_names: arcpy.AddField_management(shp,‘Area’,‘Double’) if ‘Area_mu’ not in field_names: arcpy.AddField_management(shp,‘Area_mu’,‘Double’) if ‘year’ not in field_names: arcpy.AddField_management(shp,‘year’,‘Double’) arcpy.CalculateField_management(shp,‘year’,current_year,expression_type=“python”) if name == “main”: input_polygon = r"F:\GEE\liangzhongchang\mask\dissolve_cho" field_calculator = FieldCalculator(input_polygon) field_calculator.calculate_fields() 将上述函数、类代码通过输入输出联系起来。
ca24923de6461191808d1f332bcfd101
{ "intermediate": 0.31674081087112427, "beginner": 0.4901350140571594, "expert": 0.1931242048740387 }
18,730
import numpy as np def dwtmtx(N, wtype, wlev): def circshift(arr, shift): return np.roll(arr, shift) h, g = pywt.Wavelet(wtype).filter_bank[0] # Decomposition low&high pass filter L = len(h) # Filter length h_1 = np.flip(h) # Flip matrix left to right g_1 = np.flip(g) loop_max = int(np.log2(N)) loop_min = int(np.log2(L)) + 1 if wlev > loop_max - loop_min + 1: print('\nWarning: wlev is too big') print('The biggest wlev is', loop_max - loop_min + 1) wlev = loop_max - loop_min + 1 ww = np.eye(N) for loop in range(loop_max - wlev + 1, loop_max + 1): Nii = 2 ** loop p1_0 = np.concatenate((h_1, np.zeros(Nii - L))) p2_0 = np.concatenate((g_1, np.zeros(Nii - L))) p1 = np.zeros((Nii // 2, Nii)) p2 = np.zeros((Nii // 2, Nii)) for ii in range(Nii // 2): p1[ii, :] = circshift(p1_0, 2 * (ii - 1) + 1 - (L - 1) + L // 2 - 1) p2[ii, :] = circshift(p2_0, 2 * (ii - 1) + 1 - (L - 1) + L // 2 - 1) w1 = np.concatenate((p1, p2), axis=0) mm = 2 ** loop_max - len(w1) w = np.block([[w1, np.zeros((len(w1), mm))], [np.zeros((mm, len(w1))), np.eye(mm)]]) ww = np.dot(ww, w) return ww N = 512 wtype = 'db4' wlev_max = pywt.dwt_max_level(N, wtype) if wlev_max == 0: print('\nThe parameter N and wtype does not match!') pywt.dwtmode('per') for wlev in range(1, wlev_max + 1): ww = dwtmtx(N, wtype, wlev) x = np.random.randn(N) y1 = np.dot(ww, x) y2 = pywt.wavedec(x, wtype, level=wlev) y_err = np.sum((y1 - y2) ** 2) print('wlev =', wlev, ': y_err =', y_err) 解释这段代码
b93c2fb9f871b850fb0080473b4fd725
{ "intermediate": 0.26821625232696533, "beginner": 0.47786659002304077, "expert": 0.25391721725463867 }
18,731
как установить атрибут bgp-communities в mikrotik routeros v7
c1424a0f2e7f1400f8925921e6631b10
{ "intermediate": 0.33745276927948, "beginner": 0.22975142300128937, "expert": 0.43279582262039185 }
18,732
Custcmd = New OleDbCommand("insert into cust (cusPhone, cusName, cusTelephone, cusStreet, cusTowerName,cusTowerNumber,cusFloor,cusDepartment,cusSpecial) Values (?, ?, ?, ?, ?,?,?,?,?)", con) Custcmd.Parameters.AddWithValue("@cusPhone", cusPhone.Text) Custcmd.Parameters.AddWithValue("@cusName", cusName.Text) Custcmd.Parameters.AddWithValue("@cusTelephone", cusTelephone.Text) Custcmd.Parameters.AddWithValue("@cusStreet", cusStreet.Text) Custcmd.Parameters.AddWithValue("@cusTowerName", cusTowerName.Text) Custcmd.Parameters.AddWithValue("@cusTowerNumber", cusTowerNumber.Text) Custcmd.Parameters.AddWithValue("@cusFloor", cusFloor.Text) Custcmd.Parameters.AddWithValue("@cusDepartment", cusDepartment.Text) Custcmd.Parameters.AddWithValue("@cusSpecial", cusSpecial.Text) If con.State = ConnectionState.Closed Then con.Open() End If Custcmd.ExecuteNonQuery() con.Close() can you make a update statment from that ?
ef66e6cdeeff7fce47e68a7398837acf
{ "intermediate": 0.45054689049720764, "beginner": 0.2182069569826126, "expert": 0.33124613761901855 }
18,733
<q-uploader :url="url1" color="primary" text-color="black" no-thumbnails multiple ref="uploader" style="max-width: 300px;min-height: 400px;" field-name="files" /> const clickc = async () =>{ let uploaderRef = $refs.uploader uploaderRef.upload(); }这个为什么不行
c3f9544720033726b42c40b2062d7503
{ "intermediate": 0.4059011936187744, "beginner": 0.34593427181243896, "expert": 0.248164564371109 }
18,734
Make Scratch code for planet name generator.
7af7a0f12e526697bffeded6e873c4ab
{ "intermediate": 0.306499183177948, "beginner": 0.3194809854030609, "expert": 0.3740198016166687 }
18,735
<q-uploader :url=“url1” color=“primary” text-color=“black” no-thumbnails multiple ref=“uploader” style=“max-width: 300px;min-height: 400px;” field-name=“files” /> const clickc = async () =>{ let uploaderRef = $refs.uploader uploaderRef.upload(); }这个为什么不行,我是vue3的写法
66ac4d679659b31841a520bc24665b15
{ "intermediate": 0.4222731292247772, "beginner": 0.2856981158256531, "expert": 0.2920287251472473 }
18,736
how to find fast ubuntu mirror?
173b91446d070f3df04f2ad1e738d573
{ "intermediate": 0.280950129032135, "beginner": 0.2520422041416168, "expert": 0.46700766682624817 }
18,737
how to find fast ubuntu mirror?
0590fc0380353dfe760cf1b5afb98894
{ "intermediate": 0.280950129032135, "beginner": 0.2520422041416168, "expert": 0.46700766682624817 }
18,738
"import React from "react"; import { Validate, Layout, Section, validation, PersonalInfo, CompositeField, FieldList, Message, DependsOn, CustomTotalPrice, Condition, Field, isEmpty, } from "govhk-form-core"; const eighteenYearLater = new Date(new Date().getTime() + 6750 * 24 * 60 * 60 * 1000) .toISOString() .split("T")[0]; export default { title: ({ i }) => i`step.details`, signBy: ["applicant"], content: ({ i }) => ( <div> <Section title={i`field.a.title`}> <Field.Select name='a_title' label={i`field.a.a_title.label`} options={[ { value: "mr", label: i`field.a.a_title.mr` }, { value: "ms", label: i`field.a.a_title.ms` }, { value: "miss", label: i`field.a.a_title.miss` }, ]} required /> <CompositeField label={i`field.a.a_name`} layout='compact' required> <Field.Text name='a_name_en' label={i`field.a.a_name_en`} required /> <Field.Text name='a_name_ch' label={i`field.a.a_name_ch`} required /> </CompositeField> <Field.Date name='a_birth' label={i`field.a.a_birth`} required/> <Validate fields='a_birth' test={(val) => { let error; const selectedDate = new Date(val); const v_eighteenYearLater = new Date(eighteenYearLater); if (selectedDate >= v_eighteenYearLater) { error = { $: { notAdult: true, }, }; } return error; }} messages={{ notAdult: () => i`cccc`, }} /> <PersonalInfo.HKID name='hkid' label={i`field.a.a_hkid`} required/> </Section> <Section title={i`field.b.title`}> <Field.Text name='b_tel' label={i`field.b.b_tel`} size='20' check={{ maxLength: 8, minLength: 8, pattern: /^[0-9]*$/, required: true, }} required /> <CompositeField label={i`field.b.b_Addr`} layout='compact' required> <Field.Textarea name='b_Addr_en' label={i`field.b.b_Addr_en`} placeholder={i`field.b.b_Addr_en`} rows={1} cols={20} check={{ maxLength: 100 }} required /> <Field.Textarea name='b_Addr_ch' label={i`field.b.b_Addr_ch`} placeholder={i`field.b.b_Addr_ch`} rows={1} cols={20} check={{ maxLength: 100 }} required /> </CompositeField> <PersonalInfo.Email name='b_email' label={i`field.b.b_email`} /> <Field.Text name='b_fax' label={i`field.b.b_fax`} size='20' check={{ maxLength: 8, minLength: 8 }} /> </Section> <Section title={i`field.c.title`}> <Field.Select label={i`field.c.c_empStatus.label`} name='c_empStatus' options={[ { value: "em", label: i`field.c.c_empStatus.e` }, { value: "se", label: i`field.c.c_empStatus.se` }, { value: "une", label: i`field.c.c_empStatus.une` }, ]} check={{ minItems: 1, }} required /> <Condition field='c_empStatus' contains='em'> <Field.Text name='c_comName' label={i`field.c.c_comName`} required /> <Field.Textarea name='c_conAddr' label={i`field.c.c_conAddr`} placeholder={i`field.c.c_conAddr`} rows={1} cols={20} check={{ maxLength: 100 }} required /> </Condition> </Section> <Section title={i`field.d.title`}> <Field.Textarea name='d_quaDetails' label={i`field.d.d_quaDetails`} rows={10} cols={40} check={{ maxLength: 500 }} /> </Section> </div> ), }; " why the a_birth checking is wrong
072594f4ff78877fead1fb125307e6f9
{ "intermediate": 0.35740965604782104, "beginner": 0.464357852935791, "expert": 0.17823250591754913 }
18,739
const [set, setSet] = useState<{side: string|null, price?: string|null}>({ side: null, price: null, }); draw: (setSet: any) => {} пропиши типизацаию draw: (setSet: any)
8de9640ac7b458421cb2683b8c3acca1
{ "intermediate": 0.41121983528137207, "beginner": 0.3905584216117859, "expert": 0.19822174310684204 }
18,740
Define a style to remove underlines from all hyperlinks The HTML file, index.html, shown below contains a simple page with a hyperlink. By default, hyperlinks are decorated with an underline. You have to define a style for hyperlinks in the stylesheet file (style.css) to remove this decoration (the underline) from hyperlinks.
22565e5bf14ad2f06d21cf15720efcbc
{ "intermediate": 0.3466581404209137, "beginner": 0.31060436367988586, "expert": 0.3427375257015228 }
18,741
Can you make a phyton code which is demonstraing a ball that`s a reference of a plane. We`ll use this ball to navigate like a plane in the next steps.
08f30d3a0f80a352545f92b86cab5b44
{ "intermediate": 0.2637026011943817, "beginner": 0.10709182173013687, "expert": 0.629205584526062 }
18,742
public class EchoTestDrive { public static void main(String [] args) { Echo e1 = new Echo(); _________________________ int x = 0; while ( ___________ ) { e1.hello(); __________________________ if ( ____________ ) { e2.count = e2.count + 1; } if ( ____________ ) { e2.count = e2.count + e1.count; } x = x + 1; } System.out.println(e2.count); } } class ____________ { int _________ = 0; void ___________ { System.out.println(“helloooo... “); } }
5b463f8557444ff805f833890866b6b3
{ "intermediate": 0.323333740234375, "beginner": 0.5037962794303894, "expert": 0.17287001013755798 }
18,743
PS F:\GEE\wurenlongchang> & C:/Python27/ArcGIS10.7/python.exe f:/GEE/wurenlongchang/3.py File "f:/GEE/wurenlongchang/3.py", line 100 SyntaxError: Non-ASCII character '\xe2' in file f:/GEE/wurenlongchang/3.py on line 100, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
9f7ce2a12735347b18b527c6a01e197c
{ "intermediate": 0.3718606233596802, "beginner": 0.42152029275894165, "expert": 0.20661908388137817 }
18,744
please write a poem on alrowad who does events for its clients
46ba07396887b657a4b03c880b2cc4a4
{ "intermediate": 0.43369731307029724, "beginner": 0.2823375165462494, "expert": 0.28396517038345337 }
18,745
S(b,c,d)==>F(1,1,0x32CD32) [RH(b*5)]S(b,c,d)
9131b94a558cdd9c5f2434ac6ceb7967
{ "intermediate": 0.2503056228160858, "beginner": 0.446113646030426, "expert": 0.3035806715488434 }
18,746
File "f:/GEE/wurenlongchang/3.py", line 217, in main dissolve = Dissolve() TypeError: __init__() takes exactly 3 arguments (1 given) File "f:/GEE/wurenlongchang/3.py", line 217, in main dissolve = Dissolve() TypeError: __init__() takes exactly 3 arguments (1 given) # -- coding: utf-8 -- import arcpy import os import glob import re import datetime arcpy.CheckOutExtension('Spatial') class BatchClip: def __init__(self, inws, outws, mask): self.inws = inws self.outws = outws self.mask = mask def clip(self): if not os.path.exists(self.outws): os.mkdir(self.outws) rasters = glob.glob(os.path.join(self.inws, ".tif")) shps = glob.glob(os.path.join(self.mask, ".shp")) for shp in shps: for ras in rasters: nameT = os.path.basename(ras) + ".tif" outname = os.path.join(self.outws, nameT) out_extract = arcpy.sa.ExtractByMask(ras, shp) out_extract.save(outname) print(os.path.basename(ras) + " ---- down") print(" ----Batchclip down ----") class RasterReclassify: def __init__(self, workspace): # Set workspace arcpy.env.workspace = workspace def reclassify_rasters(self, index): folder = arcpy.env.workspace[-4:] folder_name = "reclassify" + folder folder_path = os.path.dirname(arcpy.env.workspace) output_path = os.path.join(folder_path, folder_name) if not os.path.exists(output_path): os.mkdir(output_path) print(output_path) rasterlist = arcpy.ListRasters("", "tif") if rasterlist is not None: for raster in rasterlist: inRaster = arcpy.Raster(raster) print(inRaster) time = inRaster.name[:8] print(time) out = os.path.join(output_path, time + "_" + index + ".tif") print(out) if index == "ndvi": # NDVI outCon = arcpy.sa.Con(inRaster <= 0.19, 1, arcpy.sa.Con((inRaster > 0.19) & (inRaster <= 0.39), 2, arcpy.sa.Con((inRaster > 0.39) & (inRaster <= 0.55), 3, arcpy.sa.Con((inRaster > 0.55) & (inRaster <= 0.75), 4, arcpy.sa.Con((inRaster > 0.75), 5))))) elif index == "gndvi": # GNDVI outCon = arcpy.sa.Con(inRaster <= 0.2, 1, arcpy.sa.Con((inRaster > 0.2) & (inRaster <= 0.4), 2, arcpy.sa.Con((inRaster > 0.4) & (inRaster <= 0.6), 3, arcpy.sa.Con((inRaster > 0.6) & (inRaster <= 0.8), 4, arcpy.sa.Con((inRaster > 0.8), 5))))) elif index == "vci": # VCI outCon = arcpy.sa.Con(inRaster <= 0.15, 1, arcpy.sa.Con((inRaster > 0.15) & (inRaster <= 0.3), 2, arcpy.sa.Con((inRaster > 0.3) & (inRaster <= 0.45), 3, arcpy.sa.Con((inRaster > 0.45) & (inRaster <= 0.6), 4, arcpy.sa.Con((inRaster > 0.6), 5))))) elif index == "chlor": # Chlor outCon = arcpy.sa.Con(inRaster <= 12, 1, arcpy.sa.Con((inRaster > 12) & (inRaster <= 21), 2, arcpy.sa.Con((inRaster > 21) & (inRaster <= 32), 3, arcpy.sa.Con((inRaster > 32) & (inRaster <= 43), 4, arcpy.sa.Con((inRaster > 43), 5))))) outCon.save(out) print("---raclassify down---") class RasterToPolygonConverter: def __init__(self, input_raster_path, output_shp_path): self.input_raster_path = input_raster_path self.output_shp_path = output_shp_path def convert_raster_to_polygon(self): # Set workspace arcpy.env.workspace = self.input_raster_path # Create output folder if it doesn’t exist if not os.path.exists(self.output_shp_path): os.mkdir(self.output_shp_path) # List raster files rasters = arcpy.ListRasters("", "tif") for raster in rasters: # Extract catchment name from raster filename catchment_name = raster[:8] print(catchment_name) # Set output shapefile path shp_out_name = os.path.join(self.output_shp_path, catchment_name) print(shp_out_name) # Convert raster to polygon arcpy.RasterToPolygon_conversion(raster, shp_out_name, "true", "Value") print("finished") print("---polygon down---") class Dissolve: def __init__(self,input_raster_path, output_shp_path): self.input_raster_path = input_raster_path self.output_shp_path = output_shp_path def dissolve_shapefiles(self): arcpy.env.workspace = self.input_raster_path shps = arcpy.ListFiles("*.shp") for shp in shps: catchment_name = shp[:8] shp_out_name = os.path.join(self.output_shp_path,catchment_name) arcpy.Dissolve_management(shp, shp_out_name,"gridcode") print ("Finished dissolving", catchment_name) class FieldCalculator: def __init__(self, input_polygon): self.input_polygon = input_polygon def calculate_fields(self): current_year = datetime.datetime.now().year path_list = os.listdir(self.input_polygon) for i in range(len(path_list)): landid = path_list[i][-4:] print(landid) path = os.path.join(self.input_polygon, path_list[i]) shps = glob.glob(os.path.join(path, "*.shp")) for shp in shps: print(shp) catchment_name = shp[-12:-4] print(catchment_name) date = int(catchment_name) # arcpy.DeleteField_management(shp, [“LandId”]) field_names = [f.name for f in arcpy.ListFields(shp)] if 'date' not in field_names: arcpy.AddField_management(shp, 'date', 'Long') arcpy.CalculateField_management(shp, 'date', expression=date, expression_type="python", code_block="") if 'landId' not in field_names: arcpy.AddField_management(shp, 'landId', 'Short’') arcpy.CalculateField_management(shp, 'landId', 0, expression_type="python") if 'landName' not in field_names: arcpy.AddField_management(shp, 'landName', 'TEXT') if 'crop' not in field_names: arcpy.AddField_management(shp, 'crop', 'TEXT') if 'Area' not in field_names: arcpy.AddField_management(shp, 'Area', 'Double') if 'Area_mu' not in field_names: arcpy.AddField_management(shp, 'Area_mu', 'Double') if 'year' not in field_names: arcpy.AddField_management(shp, 'year', 'Double') arcpy.CalculateField_management(shp, 'year', current_year, expression_type="python") print("---dbf down---") def main(): # Set input and output paths inws = r"F:\GEE\wurenlongchang\wurenlongchang_ndvi" outws = r"F:\GEE\wurenlongchang" mask = r"F:\GEE\wurenlongchang\1_shp" # Batch clip rasters batch_clip = BatchClip(inws, outws, mask) batch_clip.clip() # Reclassify rasters reclassify_workspace = os.path.join(outws, "ndvi") rr = RasterReclassify(reclassify_workspace) rr.reclassify_rasters("ndvi") rr.reclassify_rasters("gndvi") # rr.reclassify_rasters("vci") rr.reclassify_rasters("chlor") # Convert rasters to polygons polygon_workspace = os.path.join(outws, "reclassifyndvi") folder = polygon_workspace[-4:] folder_name = "polygon" + folder output_polygon_path = os.path.join(outws, folder_name) converter = RasterToPolygonConverter(polygon_workspace, output_polygon_path) converter.convert_raster_to_polygon() # Dissolve polygons dissolve = Dissolve() dissolve_workspace = os.path.join(outws, "polygonndvi") folder = dissolve_workspace[-4:] folder_name = "dissolve" + folder output_dissolve_path = os.path.join(outws, folder_name) dissolve.dissolve_shapefiles(dissolve_workspace, output_dissolve_path) # Calculate fields field_calculator = FieldCalculator(output_dissolve_path) field_calculator.calculate_fields() if __name__ == "__main__": main()如何解决
e1641e9b4f91650c00e2f23d36384b37
{ "intermediate": 0.26988884806632996, "beginner": 0.5643877983093262, "expert": 0.1657232940196991 }
18,747
generate html for newsletter subcriber form with name and email that saves data to a POST API using fetch.
a4f15d603e2dbfd8f0d2f3bacc9f6b71
{ "intermediate": 0.6903684139251709, "beginner": 0.1089223101735115, "expert": 0.2007092535495758 }
18,748
ctx.canvas.addEventListener(“click”, (event) => { event.preventDefault(); // не отключает все клики мыши по умолчанию const yClick = event.clientY - 134; console.log(event.button); if (yClick >= yPosition && yClick <= yPosition + cellHeight - 1) { if (event.button === 0) { setOrder({ side, price }); } else if (event.button === 2) { setOrder({ side }); } } }); все равно при клике на правую кнопку срабатывает открытие окошка у гугл хрома, а нужно, чтобы отрабатывала (event.button === 2) { setOrder({ side }); }
1e2751ccbb0cfa3ce887a9500c96f44e
{ "intermediate": 0.329124391078949, "beginner": 0.3882502615451813, "expert": 0.28262537717819214 }
18,749
hot to fix this WARNING: The scripts futurize.exe and pasteurize.exe are installed in 'C:\Users\Anelia Zhelyazkova\AppData\Roaming\Python\Python311\Scripts' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
20705189d36d583ae1fedc967a50f2fd
{ "intermediate": 0.3116301894187927, "beginner": 0.31639114022254944, "expert": 0.37197867035865784 }
18,750
I am a typescript developer. How can I type "key" in this code: const foo = (af: A | B) => { for (const key in af) { console.log(af[key]) } } key is a string but I need to restrict the type of key to A if af is A, or B if af is B
d675829eec18f33f41a7570349e38ee9
{ "intermediate": 0.4383033514022827, "beginner": 0.47465983033180237, "expert": 0.08703683316707611 }
18,751
What does this do? await Users.updateOne( {link: 'http://www.atlantico.fr/example.html'},{ $set: { day : 'example'} }, { multi: true });
81393db7df172c131d4d57c3faffb7b7
{ "intermediate": 0.39876070618629456, "beginner": 0.3615092933177948, "expert": 0.23973000049591064 }
18,752
i would like to download a file from an internet location everyday and collate the data into an excel
e416e52c28acb08227a90c9219c1eaae
{ "intermediate": 0.4768000841140747, "beginner": 0.2138936072587967, "expert": 0.3093062937259674 }
18,753
Please improve below code by replacing print function with join(). Info in following link might help: https://www.geeksforgeeks.org/python-avoiding-quotes-while-printing-strings/ import math class Ball: def init(self, x=0, y=0, z=0): self.position = {} self.position.update({chr(120): x, chr(121): y, chr(122): z}) def move(self, distance, angle): rad_angle = math.radians(angle) self.position[chr(120)] += distance * math.cos(rad_angle) self.position[chr(121)] += distance * math.sin(rad_angle) def display(self): print(“Ball position: ({}, {}, {})”.format(self.position[chr(120)], self.position[chr(121)], self.position[chr(122)])) # Create a Ball object ball = Ball() # Move the ball by 5 units at 45 degrees angle ball.move(5, 45) # Display the ball’s current position ball.display()
f0c8aeb6ee32acd59306080030cebb6e
{ "intermediate": 0.24119636416435242, "beginner": 0.6246444582939148, "expert": 0.13415919244289398 }
18,754
How to make your desktop assistant in C#
4936f469e48c89bddefb26d3dc32f475
{ "intermediate": 0.4952036440372467, "beginner": 0.35620301961898804, "expert": 0.14859333634376526 }
18,755
Can i get proper 2D perlin noise by using a funciton that generates 3D perlin noise and keeping one coordinate fixed?
2ab6189ffcead838e1fd963f5ccb38ad
{ "intermediate": 0.31232237815856934, "beginner": 0.19677047431468964, "expert": 0.49090713262557983 }
18,756
请基于以下代码描述这个网络,描述中不要涉及“行”“代码”等词。 depth = 8 strides = 1 activation = 'relu' # ReLU initial weights kernel_initializer='glorot_uniform' latent_dim = 14 # Crop to dimensions of [120,40,1] to allow for reconstruction # e = Cropping2D(cropping = ((0, 6), (0, 1)))(img_input) # e = Conv2D(depth*2**0, (5,5), strides=strides, activation=activation, kernel_initializer=kernel_initializer, padding='same') (e) e = Conv2D(depth*2**0, (5,5), strides=strides, activation=activation, kernel_initializer=kernel_initializer, padding='same') (img_input) e = Conv2D(depth*2**1, (5,5), strides=strides, activation=activation, kernel_initializer=kernel_initializer, padding='same') (e) e = Conv2D(depth*2**2, (3,3), strides=strides, activation=activation, kernel_initializer=kernel_initializer, padding='same') (e) e = Conv2D(depth*2**3, (3,3), strides=strides, activation=activation, kernel_initializer=kernel_initializer, padding='same')(e) shape_before_flattening = K.int_shape(e) x = Flatten()(e) # Embedded latent space: 14 dimensions (features) encoded = Dense(latent_dim, activation=activation, name='encoded')(x) # Decoder model for CAE (Reverse Operations) # --------------------------------------------------------------------------- d = Dense(np.prod(shape_before_flattening[1:]), activation='relu')(encoded) d = Reshape(shape_before_flattening[1:])(d) d = Conv2DTranspose(depth*2**2, (3,3), strides=strides, activation=activation, kernel_initializer=kernel_initializer, padding='same')(d) d = Conv2DTranspose(depth*2**1, (5,5), strides=strides, activation=activation, kernel_initializer=kernel_initializer, padding='same')(d) d = Conv2DTranspose(depth*2**0, (5,5), strides=strides, activation=activation, kernel_initializer=kernel_initializer, padding='same')(d) decoded = Conv2DTranspose(1, (5,5), strides=strides, activation='linear', kernel_initializer=kernel_initializer, padding='same')(d)
85e6e3e6e833ab258f2cac7a6b190dbe
{ "intermediate": 0.20514442026615143, "beginner": 0.21538332104682922, "expert": 0.5794723033905029 }
18,757
expr = c2/x - (x**c3)/c4 Your task: 1) using regular expressions separated by commas, write out the coefficients c1, c2, c3, c4
08854fd9e818a9b1d4dbd7a27a185a43
{ "intermediate": 0.4138982594013214, "beginner": 0.317245215177536, "expert": 0.2688565254211426 }
18,758
python best practice for .py main script for etl process, give me example with code
8e8ce95408e8d84237588c35c1a8fd0a
{ "intermediate": 0.3895598351955414, "beginner": 0.24891380965709686, "expert": 0.36152637004852295 }
18,759
# step 1. Read all images from path # "./PAMONO Sensor Data Backgrounds Collection1/background_9May14_cropped/preprocessed window 100" # step 2. For each image, calculate the mean pixel value of the image. # In addition, reduce the mean pixel value from each image. # step 3. Crop each processed image into 8 square tiles # step 4. Save the first 100 cropped square tiles into the folder # "processed_background"
9fbbbf01405965520e69ae29cc64b959
{ "intermediate": 0.45972347259521484, "beginner": 0.21322669088840485, "expert": 0.3270498514175415 }
18,760
Code for a redirect page in less than a second
26c80665a0a8b6eaa4f33cfb6476b84b
{ "intermediate": 0.2705100178718567, "beginner": 0.21485990285873413, "expert": 0.5146300792694092 }
18,761
I have never written a line of documentation for my code. I wanna try it by documenting how my programs network communications work. its all on udp packets and theyll all have codes the starting number will indicate what device is it meant for 0 - cnc server 1 - client there will also be proxies that you just use to hide where the communications are coming froms o the cnc server stays more hidden. the proxy will just read the ip address from the udp packet which will be the first thing and then it will strip that from the data and send the rest of it away to the destination, where should i write out the docs for the codes for all the diffrent packets?
dbd9f02d42d4fecdba63fb9e6a2d5309
{ "intermediate": 0.4032972455024719, "beginner": 0.1655353605747223, "expert": 0.4311674237251282 }
18,762
is it possible to get the bandwidth your machine with a single linux command? I wish for it to not install anything
42c572d89ba62c8caa651f20342d3f8e
{ "intermediate": 0.39752134680747986, "beginner": 0.29995477199554443, "expert": 0.3025239408016205 }
18,763
I used this code: def generate_signature(api_key, api_secret, req_time, sign_params=None): if sign_params: sign_params = urlencode(sign_params, quote_via=quote) to_sign = f"{api_key}{req_time}{sign_params}" else: to_sign = f"{api_key}{req_time}" sign = hmac.new(api_secret.encode('utf-8'), to_sign.encode('utf-8'), hashlib.sha256).hexdigest() return sign req_time = dt.datetime.now().strftime("%Y-%m-%d %H:%M:%S") quantity = 0.5 sign_params = { "symbol": symbol, "price": 200.01, "vol": quantity, "side": 1, "type": 1, # Add any other parameters required by the API } signature = generate_signature(api_key, api_secret, req_time) print(f"Signature: {signature}") But terminal returned me : Signature: 0b65a8015ea1d9f8d8dec4fb0f56a98c9ef9f830c07c2e11b408193d904734bd
97559ca1380951bfadf44483d656b89a
{ "intermediate": 0.45753493905067444, "beginner": 0.2961825728416443, "expert": 0.24628253281116486 }
18,764
what do you think would be a good database thats future proof, easy to learn and work with, and fast that you'd reccomend for this project: a couple thousand "bots" where we just store the IP address and some architecture info which will both be short strings. I wish for it to be something I can learn once and use on all my projects becouse currently I have never used a single database in my life
682a09a85fe9bd2fbbf2a744e9deb335
{ "intermediate": 0.12129312008619308, "beginner": 0.2638861835002899, "expert": 0.614820659160614 }
18,765
can you please give me an example of how to implement a 'change avatar' setting, based on the code below, that will save new avatar to /avatars/{username}.png? the allowed formats would be jpg, jpeg, png, svg, webp. the code would update the column 'avatar' in 'user_avatars' table, that has two columns at the moment: 'user_id' and 'avatar' (pretty self-explanatory). also, 'avatar' column needs to be an url, so if avatar gets saved into /avatars/example_user.png (for example), the 'avatar' column for that user would be exactly that path. the code: <?php require_once '../../functions/helpers.php'; require_once '../../functions/auth.php'; require_once '../../functions/pdo_connection.php'; if(isset($_SESSION['user_id'])) { $user_id = $_SESSION['user_id']; $sql = "SELECT username, id, is_admin FROM users WHERE id = {$user_id}"; $stmt = $pdo->prepare($sql); if(!$stmt){ echo "Error preparing: " . $pdo->errorInfo()[2]; exit; } $stmt->execute(); if(!$stmt){ echo "Error executing: " . $pdo->errorInfo()[2]; exit; } $user = $stmt->fetch(PDO::FETCH_OBJ); if(!$user->is_admin == 1) { echo 'You are not allowed to access the panel.'; die(); } // Fetch results $result = $stmt->fetch(PDO::FETCH_ASSOC); $error = []; } ?> <!DOCTYPE html> <html lang="ru"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Settings · Mpy Web Dashboard</title> <link href="sidebars.css" rel="stylesheet"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous"> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" crossorigin="anonymous"></script> <link rel="stylesheet" href="<?= asset('assets/css/style.css') ?>" media="all" type="text/css"> <link href="../dashboard.css" rel="stylesheet"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" /> </head> <body> <section id="app"> <?php require_once '../layouts/top-nav.php'; ?> <section class="container-fluid"> <section class="row"> <section class="col-md-2 p-0"> <?php require_once '../layouts/sidebar.php'; ?> </section> <section class="col-md-10 pb-3"> <section style="min-height: 80vh;" class="d-flex justify-content-center align-items-center"> <section> <h1 class="fs-1 fw-light">Settings</h1> <h5 class="fw-light">Here you can manage your account settings.</h5> <br> <h2 class="fw-light">Account</h2> <div class="modal fade" id="changePasswordModal" aria-hidden="true" aria-labelledby="changePasswordModal" tabindex="-1"> <div class="modal-dialog modal-dialog-centered"> <div class="modal-content"> <div class="modal-header"> <h1 class="modal-title fs-5" id="changePasswordModal">Change Password</h1> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <form method="post" action="/auth/login.php?change=1"> <div class="modal-body"> <small class="text-danger"><?php echo $error; ?></small> <div class="form-floating mb-2 mt-2"> <input type="hidden" name="change" value="1"> <input type="password" placeholder="pass" autocomplete="new-password" name="change-password" class="form-control" id="change-password"> <label for="change-password" class="form-label">Current Password</label> </div> <div class="form-floating mb-3"> <input type="password" placeholder="pass" autocomplete="new-password" name="new-password" class="form-control" id="new-password"> <label for="new-password" class="form-label">New Password</label> </div> </div> <div class="modal-footer"> <button type="submit" name="confirm" value="no" class="btn btn-secondary" data-bs-dismiss="modal">Cancel</button> <button type="submit" name="confirm" value="yes" class="btn btn-primary">Confirm</button> </form> <?php // Set default as 'no' if(!isset($_POST['confirm'])) { $_POST['confirm'] = 'no'; } if($_POST['confirm'] == 'yes') { $passwordHash = $user->password; // Compare submitted password against hashed password if(password_verify($_POST['change-password'], $passwordHash)) { $newPasswordHash = password_hash($_POST['new-password'], PASSWORD_DEFAULT); // Query to change password $stmt = $pdo->prepare("UPDATE users SET password = ? WHERE id = ?"); $stmt->execute([$newPasswordHash, $user_id]); die(); } else { $error = 'Password is wrong'; echo $error; } } ?> </div> </div> </div> </div> <button class="btn btn-primary" data-bs-target="#changePasswordModal" data-bs-toggle="modal">Change Password</button> <div class="modal fade" id="exampleModalToggle" aria-hidden="true" aria-labelledby="exampleModalToggleLabel" tabindex="-1"> <div class="modal-dialog modal-dialog-centered"> <div class="modal-content"> <div class="modal-header"> <h1 class="modal-title fs-5" id="exampleModalToggleLabel">Delete Account</h1> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"> Do you really want to delete your account? If so, click on 'Yes, delete my account' to proceed with deletion. </div> <div class="modal-footer"> <button class="btn btn-danger" data-bs-target="#exampleModalToggle2" data-bs-toggle="modal">Yes, delete my account</button> </div> </div> </div> </div> <div class="modal fade" id="exampleModalToggle2" aria-hidden="true" aria-labelledby="exampleModalToggleLabel2" tabindex="-1"> <div class="modal-dialog modal-dialog-centered"> <div class="modal-content"> <div class="modal-header"> <h1 class="modal-title fs-5" id="exampleModalToggleLabel2">Deletion Confirmation</h1> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <form method="post"> <div class="modal-body"> Confirm the deletion by entering your password and pressing the 'Delete Account' button. <?php $error = ''; ?> <small class="text-danger"><?php echo $error; ?></small> <div class="form-floating mb-3 mt-2"> <!--input type="hidden" name="csrf_token" value="<?php echo $_SESSION['csrf_token'] ?>"--> <input type="password" placeholder="pass" autocomplete="new-password" name="password" class="form-control" id="password"> <label for="password" class="form-label">Password</label> </div> </div> <div class="modal-footer"> <button type="submit" name="confirm" value="no" class="btn btn-secondary" data-bs-dismiss="modal">Cancel</button> <button type="submit" name="confirm" value="yes" class="btn btn-danger">Delete Account</button> </form> <?php // Set default as 'no' if(!isset($_POST['confirm'])) { $_POST['confirm'] = 'no'; } if($_POST['confirm'] == 'yes') { $passwordHash = $user->password; // Compare submitted password against hashed password if(password_verify($_POST['password'], $passwordHash)) { // Query to delete user $stmt = $pdo->prepare("DELETE FROM users WHERE id = ?"); $stmt->execute([$user_id]); unset($_SESSION['user_id']); unset($_SESSION['username']); session_destroy(); die(); } else { $error = 'Password is wrong'; echo $error; } } ?> </div> </div> </div> </div> <button class="btn btn-danger" data-bs-target="#exampleModalToggle" data-bs-toggle="modal">Delete Account</button> </section> </section> </section> </section> </section> </section> <script src="<?= asset('assets/js/jquery.min.js') ?>"></script> <script src="<?= asset('assets/js/bootstrap.min.js') ?>"></script> </body> </html>
16906ef56cc121cfb350170e8b98ba39
{ "intermediate": 0.36772456765174866, "beginner": 0.49846503138542175, "expert": 0.1338103860616684 }
18,766
Как решить проблему The RSA host key for java has changed, and the key for the corresponding IP address 192.168.0.12 is unchanged. This could either mean that DNS SPOOFING is happening or the IP address for the host and its host key have changed at the same time. Offending key for IP
a84b624e06ff883b27b453abda43bd23
{ "intermediate": 0.44781798124313354, "beginner": 0.16431686282157898, "expert": 0.3878651261329651 }
18,767
i have a df called search_results. it has a column called inquiry_id. if now rows are returned, i want to add a inquiry_id value of 'No Related Inuiry found"
7451cfdd329f64ee64d93e36fc90bc48
{ "intermediate": 0.4397096633911133, "beginner": 0.22363346815109253, "expert": 0.3366568386554718 }
18,768
Write me a script installing winamp, vlc player, and uninstall teamviewer
b662056ef3a008f3ac6c01bbcd0e530f
{ "intermediate": 0.4604799449443817, "beginner": 0.2670586407184601, "expert": 0.2724613845348358 }
18,769
I have this text {"metadata":{"name":"deepstream-2-1-25-7d6c4bc4bc-x7p6l.177e713707193e45","namespace":"telconet-resources","uid":"07f26f26-9c46-4bf7-8356-1305b175c676","resourceVersion":"349861144","creationTimestamp":"2023-08-28T15:21:22Z"},"reason":"Pulling","message":"Pulling image \"registry.telconet-ai.local:30002/telconet/face-recognition:latest\"","source":{"component":"kubelet","host":"dgx04"},"firstTimestamp":"2023-08-24T22:09:51Z","lastTimestamp":"2023-08-28T15:21:22Z","count":7,"type":"Normal","eventTime":null,"reportingComponent":"","reportingInstance":"","clusterName":"","involvedObject":{"kind":"Pod","namespace":"telconet-resources","name":"deepstream-2-1-25-7d6c4bc4bc-x7p6l","uid":"bf97f998-da53-46c2-bdc7-8f0b1a38f8d9","apiVersion":"v1","resourceVersion":"344803269","fieldPath":"spec.containers{deepstream-2-1-25}","labels":{"net.telconet.app":"deepstream-2-1-25","pod-template-hash":"7d6c4bc4bc"},"annotations":{"ALIYUN_COM_GPU_MEM_ASSIGNED":"true","ALIYUN_COM_GPU_MEM_ASSUME_TIME":"1692914953554894958","ALIYUN_COM_GPU_MEM_DEV":"40","ALIYUN_COM_GPU_MEM_IDX":"7","ALIYUN_COM_GPU_MEM_POD":"7","cni.projectcalico.org/containerID":"b0d94893a96249fd43001013bf9e552614743b0e996e30b139c1178bb562038d","cni.projectcalico.org/podIP":"10.233.94.115/32","cni.projectcalico.org/podIPs":"10.233.94.115/32","k8s.v1.cni.cncf.io/network-status":"[{\n \"name\": \"k8s-pod-network\",\n \"ips\": [\n \"10.233.94.115\"\n ],\n \"default\": true,\n \"dns\": {}\n}]","k8s.v1.cni.cncf.io/networks-status":"[{\n \"name\": \"k8s-pod-network\",\n \"ips\": [\n \"10.233.94.115\"\n ],\n \"default\": true,\n \"dns\": {}\n}]"}}} and I would like to extract as Regular Expression the "annotations":{"projectcalico.org/IPv4Address"
8d7cc6f71838961d9f0e5058208013fe
{ "intermediate": 0.34987956285476685, "beginner": 0.25960227847099304, "expert": 0.3905181586742401 }
18,770
I seud this code: print(client.order_stream()) Tell me please how my order prams need tos emmw ith those params ?Params: def order_stream(self, callback, params: dict = {}): """ https://mxcdevelop.github.io/apidocs/contract_v1_en/#public-channels """ topic = "sub.personal.order" self._ws_subscribe(topic, callback, params)
c9d34b2540f84ff65cbe4a6e073a39dc
{ "intermediate": 0.36010897159576416, "beginner": 0.5630171895027161, "expert": 0.07687380909919739 }
18,771
local ReplicatedStorage = game:GetService(“ReplicatedStorage”) local Players = game:GetService(“Players”) local player = script.Parent – Ссылка на игрока – Создаём событие для передачи информации о активации способностей local OmniManAbilityEvent = Instance.new(“RemoteEvent”) OmniManAbilityEvent.Name = “OMNIMAN_Ability” OmniManAbilityEvent.Parent = ReplicatedStorage – Переменные для управления способностями local ability1Cooldown = 10 local ability1Duration = 30 local ability1Active = false local ability2Active = false local ability4Cooldown = 5 local ability4Active = false local ability4HealingRate = 200 local ability1CooldownTimer = ability1Cooldown local ability4CooldownTimer = ability4Cooldown – Максимальное значение маны local maxMana = 1490 local currentMana = maxMana – Проверка хватает ли маны для использования способности local function hasEnoughMana(requiredMana) return currentMana >= requiredMana end – Уменьшение текущей маны local function decreaseMana(amount) currentMana = currentMana - amount if currentMana < 0 then currentMana = 0 end end – Восстановление маны local function regenerateMana() while wait(1) do if currentMana < maxMana then currentMana = currentMana + 10 – Изменить значения для скорости восстановления маны if currentMana > maxMana then currentMana = maxMana end end end end – Передача сигнала о состояниях способностей local function sendAbilityStatus() OmniManAbilityEvent:FireAllClients(ability1Active, ability2Active, ability4Active) end – Способность 1: Сверхчеловеческая сила local function useAbility1() if not hasEnoughMana(100) or ability1Active then return end ability1Active = true decreaseMana(100) sendAbilityStatus() wait(ability1Duration) ability1Active = false ability1CooldownTimer = ability1Cooldown sendAbilityStatus() end – Способность 2: Выносливость и устойчивость local function toggleAbility2() if not hasEnoughMana(1) then return end ability2Active = not ability2Active sendAbilityStatus() decreaseMana(1) end – Способность 3: Неуязвимость local function useAbility3() if not hasEnoughMana(200) then return end decreaseMana(200) – Реализовать действия способности end – Способность 4: Усиленный лечебный фактор local function useAbility4() if not hasEnoughMana(75) or ability4Active then return end ability4Active = true decreaseMana(75) sendAbilityStatus() local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:WaitForChild(“Humanoid”) local function regenerateHealth() while ability4Active do humanoid.Health = humanoid.Health + ability4HealingRate wait(1) end end coroutine.wrap(regenerateHealth)() wait(ability4Cooldown) ability4Active = false ability4CooldownTimer = ability4Cooldown sendAbilityStatus() end – Способность 5: Высокоскоростной полет local function useAbility5() if not hasEnoughMana(10) then return end decreaseMana(10) – Реализовать действия способности end – Установка биндов для активации способностей player:GetMouse().KeyDown:Connect(function(key) if key == “q” then useAbility1() elseif key == “e” then toggleAbility2() elseif key == “f” then useAbility3() elseif key == “c” then useAbility4() elseif key == “z” then useAbility5() end end) – Запуск восстановления маны coroutine.wrap(regenerateMana)() Сделай так чтобы скрипт Когда способность активируется передавай эвент в replicatedstorage, Этот эвент называется OMNIMAN_Ability (его не надо создавать, он уже есть). Это если что ЛОКАЛЬНЫЙ скрипт, он должен передавать максимум информации серверу
c3db44bf4afb25fb6c94491cec740f90
{ "intermediate": 0.2724352777004242, "beginner": 0.4117565155029297, "expert": 0.31580811738967896 }
18,772
local ReplicatedStorage = game:GetService(“ReplicatedStorage”) local Players = game:GetService(“Players”) local player = script.Parent – Ссылка на игрока – Создаём событие для передачи информации о активации способностей local OmniManAbilityEvent = Instance.new(“RemoteEvent”) OmniManAbilityEvent.Name = “OMNIMAN_Ability” OmniManAbilityEvent.Parent = ReplicatedStorage – Переменные для управления способностями local ability1Cooldown = 10 local ability1Duration = 30 local ability1Active = false local ability2Active = false local ability4Cooldown = 5 local ability4Active = false local ability4HealingRate = 200 local ability1CooldownTimer = ability1Cooldown local ability4CooldownTimer = ability4Cooldown – Максимальное значение маны local maxMana = 1490 local currentMana = maxMana – Проверка хватает ли маны для использования способности local function hasEnoughMana(requiredMana) return currentMana >= requiredMana end – Уменьшение текущей маны local function decreaseMana(amount) currentMana = currentMana - amount if currentMana < 0 then currentMana = 0 end end – Восстановление маны local function regenerateMana() while wait(1) do if currentMana < maxMana then currentMana = currentMana + 10 – Изменить значения для скорости восстановления маны if currentMana > maxMana then currentMana = maxMana end end end end – Передача сигнала о состояниях способностей local function sendAbilityStatus() OmniManAbilityEvent:FireAllClients(ability1Active, ability2Active, ability4Active) end – Способность 1: Сверхчеловеческая сила local function useAbility1() if not hasEnoughMana(100) or ability1Active then return end ability1Active = true decreaseMana(100) sendAbilityStatus() wait(ability1Duration) ability1Active = false ability1CooldownTimer = ability1Cooldown sendAbilityStatus() end – Способность 2: Выносливость и устойчивость local function toggleAbility2() if not hasEnoughMana(1) then return end ability2Active = not ability2Active sendAbilityStatus() decreaseMana(1) end – Способность 3: Неуязвимость local function useAbility3() if not hasEnoughMana(200) then return end decreaseMana(200) – Реализовать действия способности end – Способность 4: Усиленный лечебный фактор local function useAbility4() if not hasEnoughMana(75) or ability4Active then return end ability4Active = true decreaseMana(75) sendAbilityStatus() local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:WaitForChild(“Humanoid”) local function regenerateHealth() while ability4Active do humanoid.Health = humanoid.Health + ability4HealingRate wait(1) end end coroutine.wrap(regenerateHealth)() wait(ability4Cooldown) ability4Active = false ability4CooldownTimer = ability4Cooldown sendAbilityStatus() end – Способность 5: Высокоскоростной полет local function useAbility5() if not hasEnoughMana(10) then return end decreaseMana(10) – Реализовать действия способности end – Установка биндов для активации способностей player:GetMouse().KeyDown:Connect(function(key) if key == “q” then useAbility1() elseif key == “e” then toggleAbility2() elseif key == “f” then useAbility3() elseif key == “c” then useAbility4() elseif key == “z” then useAbility5() end end) – Запуск восстановления маны coroutine.wrap(regenerateMana)() Сделай так чтобы скрипт Когда способность активируется передавай эвент в replicatedstorage, Этот эвент называется OMNIMAN_Ability (его не надо создавать, он уже есть). Это если что ЛОКАЛЬНЫЙ скрипт, он должен передавать максимум информации серверу
cc777ca19d027e83b0b578549725b5a5
{ "intermediate": 0.2724352777004242, "beginner": 0.4117565155029297, "expert": 0.31580811738967896 }
18,773
local ReplicatedStorage = game:GetService(“ReplicatedStorage”) local Players = game:GetService(“Players”) local player = script.Parent – Ссылка на игрока – Создаём событие для передачи информации о активации способностей local OmniManAbilityEvent = Instance.new(“RemoteEvent”) OmniManAbilityEvent.Name = “OMNIMAN_Ability” OmniManAbilityEvent.Parent = ReplicatedStorage – Переменные для управления способностями local ability1Cooldown = 10 local ability1Duration = 30 local ability1Active = false local ability2Active = false local ability4Cooldown = 5 local ability4Active = false local ability4HealingRate = 200 local ability1CooldownTimer = ability1Cooldown local ability4CooldownTimer = ability4Cooldown – Максимальное значение маны local maxMana = 1490 local currentMana = maxMana – Проверка хватает ли маны для использования способности local function hasEnoughMana(requiredMana) return currentMana >= requiredMana end – Уменьшение текущей маны local function decreaseMana(amount) currentMana = currentMana - amount if currentMana < 0 then currentMana = 0 end end – Восстановление маны local function regenerateMana() while wait(1) do if currentMana < maxMana then currentMana = currentMana + 10 – Изменить значения для скорости восстановления маны if currentMana > maxMana then currentMana = maxMana end end end end – Передача сигнала о состояниях способностей local function sendAbilityStatus() OmniManAbilityEvent:FireAllClients(ability1Active, ability2Active, ability4Active) end – Способность 1: Сверхчеловеческая сила local function useAbility1() if not hasEnoughMana(100) or ability1Active then return end ability1Active = true decreaseMana(100) sendAbilityStatus() wait(ability1Duration) ability1Active = false ability1CooldownTimer = ability1Cooldown sendAbilityStatus() end – Способность 2: Выносливость и устойчивость local function toggleAbility2() if not hasEnoughMana(1) then return end ability2Active = not ability2Active sendAbilityStatus() decreaseMana(1) end – Способность 3: Неуязвимость local function useAbility3() if not hasEnoughMana(200) then return end decreaseMana(200) – Реализовать действия способности end – Способность 4: Усиленный лечебный фактор local function useAbility4() if not hasEnoughMana(75) or ability4Active then return end ability4Active = true decreaseMana(75) sendAbilityStatus() local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:WaitForChild(“Humanoid”) local function regenerateHealth() while ability4Active do humanoid.Health = humanoid.Health + ability4HealingRate wait(1) end end coroutine.wrap(regenerateHealth)() wait(ability4Cooldown) ability4Active = false ability4CooldownTimer = ability4Cooldown sendAbilityStatus() end – Способность 5: Высокоскоростной полет local function useAbility5() if not hasEnoughMana(10) then return end decreaseMana(10) – Реализовать действия способности end – Установка биндов для активации способностей player:GetMouse().KeyDown:Connect(function(key) if key == “q” then useAbility1() elseif key == “e” then toggleAbility2() elseif key == “f” then useAbility3() elseif key == “c” then useAbility4() elseif key == “z” then useAbility5() end end) – Запуск восстановления маны coroutine.wrap(regenerateMana)() Сделай так чтобы скрипт Когда способность активируется передавай эвент в replicatedstorage, Этот эвент называется OMNIMAN_Ability (его не надо создавать, он уже есть). Это если что ЛОКАЛЬНЫЙ скрипт, он должен передавать максимум информации серверу
655f1808dd3eab29d123898d7e60625d
{ "intermediate": 0.2724352777004242, "beginner": 0.4117565155029297, "expert": 0.31580811738967896 }
18,774
Write a query to display the vendor ID, vendor name, brand name, and number of products of each brand supplied by each vendor. Sort the output by vendor name and then by brand name
f0f645380e11020fb19f7af0b0264078
{ "intermediate": 0.4853864014148712, "beginner": 0.17920075356960297, "expert": 0.3354128897190094 }
18,775
How do you declare an array in c++?
b5d0e369bbff157478eb6787017f5602
{ "intermediate": 0.46009716391563416, "beginner": 0.3261392116546631, "expert": 0.21376363933086395 }
18,776
In Kotlin I want divide an existing List with 15 Int elements into 3 MutableSet of 5 Int elements
5e51b6da2f50a24b304cc036412e3c92
{ "intermediate": 0.6259118318557739, "beginner": 0.16120223701000214, "expert": 0.21288596093654633 }
18,777
<q-card-section class="q-pa-sm bg-grey-2" style="min-height: 460px; width:76%; float: right; display: inline-block; overflow: scroll;" > <q-item-label class="q-gutter-y-md "> <div> <q-banner class="bg-primary text-white"> <span class="text-h6" style="font-weight: 600;">文件下载</span> </q-banner> <q-card v-for="(item,index) in fileDatas" :key="index" class="my-card q-ma-xs" style="width: 16%; height:auto;display: inline-block;word-wrap: break-word;" > <q-card-section> <div class="text-h6">{{ item.fileName }}</div> </q-card-section> <q-separator /> <q-card-actions vertical> <q-btn color="primary">下载</q-btn> <q-btn color="negative">删除</q-btn> </q-card-actions> </q-card> </div> </q-item-label> </q-card-section>如何让scroll在q-card里面,现在是整个页面滚动
2f2318c24aaf26c18f8c4cc18a04f540
{ "intermediate": 0.27827590703964233, "beginner": 0.47539785504341125, "expert": 0.2463262677192688 }
18,778
calculate your age from July 8/1999 using declare on mysql
7547d4d21b88820bc31c5841ef8874d5
{ "intermediate": 0.39196211099624634, "beginner": 0.2998875379562378, "expert": 0.30815041065216064 }
18,779
Generate a small game code that can be run directly
06b46ddc21ed78607047883c05c5e11e
{ "intermediate": 0.3611297905445099, "beginner": 0.36818456649780273, "expert": 0.270685613155365 }
18,780
以下这段代码无法正常输出信息,请问可能的问题在哪,并且应该如何解决: #include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct { char id; char area[4]; char sport_type[20]; char description[100]; int age_limit_min; int age_limit_max; float rent; int time[16]; } Venue;// 创建场地结构体,同时此场馆位于 void writeToFile(Venue venues[],int numVenues) { FILE* fp; fp = fopen("venues.txt", "w"); // 打开txt文件进行写入 if (fp == NULL) { printf("无法打开文件!\n"); return; } for (int i = 0; i < numVenues; i++) { fprintf(fp, "ID: %d\n", venues[i].id); fprintf(fp, "地区: %s\n", venues[i].area); fprintf(fp, "运动类型: %s\n", venues[i].sport_type); fprintf(fp, "简述: %s\n", venues[i].description); fprintf(fp, "年龄限制: %d —— %d\n", venues[i].age_limit_min,venues[i].age_limit_max); fprintf(fp, "租金: %.2f\n", venues[i].rent); fprintf(fp, "对应时间是否被租借: "); for (int j = 0; j < 24; j++) { fprintf(fp, "%d ", venues[i].time[j]); } fprintf(fp, "\n\n"); } fclose(fp); } int main() { Venue venues[5]; memset(venues,0,5*sizeof(Venue)); // 填充场地信息 venues[0].id = 1; strcpy(venues[0].area, "场地1"); strcpy(venues[0].sport_type, "羽毛球"); strcpy(venues[0].description, "紧张刺激,老少皆宜"); venues[0].age_limit_min = 6; venues[0].age_limit_max = 65; venues[0].rent = 50.00; venues[1].id = 2; strcpy(venues[1].area, "场地2"); strcpy(venues[1].sport_type, "羽毛球"); strcpy(venues[1].description, "紧张刺激,老少皆宜"); venues[1].age_limit_min = 6; venues[1].age_limit_max = 65; venues[1].rent = 70.00; venues[2].id = 3; strcpy(venues[2].area, "场地3"); strcpy(venues[2].sport_type, "乒乓球"); strcpy(venues[2].description, "紧张刺激,老少皆宜"); venues[2].age_limit_min = 4; venues[2].age_limit_max = 70; venues[2].rent = 20.00; venues[3].id = 4; strcpy(venues[3].area, "场地4"); strcpy(venues[3].sport_type, "乒乓球"); strcpy(venues[3].description, "紧张刺激,老少皆宜"); venues[3].age_limit_min = 4; venues[3].age_limit_max = 70; venues[3].rent = 20.00; venues[4].id = 5; strcpy(venues[4].area, "场地5"); strcpy(venues[4].sport_type, "乒乓球"); strcpy(venues[4].description, "紧张刺激,老少皆宜"); venues[4].age_limit_min = 4; venues[4].age_limit_max = 70; venues[4].rent = 35.00; writeToFile(venues, 5); printf("信息已保存。\n"); return 0; }
0054da487f0bc94b24df7e26d03a42ef
{ "intermediate": 0.2276841402053833, "beginner": 0.585997462272644, "expert": 0.18631842732429504 }
18,781
get data from firebase firestore flutter
b013ac3445ad5fb2257e3d04a646bb8e
{ "intermediate": 0.6102637648582458, "beginner": 0.15588131546974182, "expert": 0.2338549792766571 }
18,782
Wide character in send at C:/Perl64/lib/IO/Socket.pm line 286 perl socket发送消息时,消息带中文就出现报错
a73b1654f2271ec2daa2cb330c1a671e
{ "intermediate": 0.3806370496749878, "beginner": 0.3343936800956726, "expert": 0.2849692702293396 }
18,783
PROJECT = 'test' VERSION = '1.0.0' sys = require 'sys' local function createFrame(functionCode, content) local frame = {} frame.head = 0xAA --帧头字段的值为0xAA,长度字段的值为0x08 frame.length = 0x02 frame.functionCode = functionCode frame.content = content frame.checksum = frame.head + frame.length + frame.functionCode + #frame.content return frame end local function parseFrame(frame) local parsedFrame = {} parsedFrame.head = frame.head parsedFrame.length = frame.length parsedFrame.functionCode = frame.functionCode parsedFrame.content = frame.content parsedFrame.checksum = frame.checksum return parsedFrame end -- 打开adc通道 if adc.open(0) then log.info("adc", "adc0 open success") end function big(a)--模拟log函数 N=10000 local k,nk local x,xx,y x=(a-1)/(a+1) xx=x*x nk=2*N+1 y=1.0/nk k=N while k>0 do nk=nk-2 y=1.0/nk+xx*y k=k-1 end return 2.0*x*y end local temp = 0 --初始化温度值 local frame sys.timerLoopStart(function() local zqq=adc.get(0) log.info("adc0",adc.get(0))--adc采集的值发到屏幕 local Vref = 5000 local temp=0.0 local Rt=0.0 local R25=20000.0 local T2=298.15 local B=3950.0 local K=273.15 local Rtv=0.0 Rtv = (zqq*(Vref/4096))--adc值换算成电压 Rt = (Rtv*R25)/(Vref-Rtv)--NTC的阻值 temp= 1.0/(big(Rt/R25)/B+1.0/T2)-K temp=temp+20 log.info("temp0",temp) frame = createFrame(0x01, tostring(temp)) parsedFrame = parseFrame(frame) print("Frame: " .. frame.head .. " " .. frame.length .. " " .. frame.functionCode .. " " .. frame.content .. " " .. frame.checksum) print("Parsed Frame:") print("Head: " .. parsedFrame.head) print(" Length: " .. parsedFrame.length) print(" Function Code: " .. parsedFrame.functionCode) print(" Content: " .. parsedFrame.content) print(" Checksum: " .. parsedFrame.checksum) end, 1000) sys.run() 将此段代码读取四个温度值并输出的代码
f4699d0324e2e865d5915908ccb9d847
{ "intermediate": 0.33945202827453613, "beginner": 0.494220495223999, "expert": 0.16632753610610962 }
18,784
convert "[["all","All"],["it","IT"]]" to [["all","All"],["it","IT"]] flutter
0e361b12ec8ad32e0ea6fa790676cba2
{ "intermediate": 0.30107825994491577, "beginner": 0.3449181616306305, "expert": 0.35400354862213135 }
18,785
there is a stream, many words included, so please calculate how many words it has, and how many words repeated, how many unique words, and Words that appear the most and least, write code with JAVA
e1960472761251e4bc6e9fc430d49b2b
{ "intermediate": 0.48051053285598755, "beginner": 0.22569617629051208, "expert": 0.29379335045814514 }
18,786
# Initialize train_dataname = 'data_processed.npy' data_processed = np.load(train_dataname) # Data process n, o, p = np.shape(data_processed) data = np.empty((p, n, o, 1)) for i in range(p): data[i, :, :, 0] = data_processed[:, :, i] # Input shape img_input = Input(shape=(n, o, 1)) # input shape:[251,16,1] # Encoder model for CAE # --------------------------------------------------------------------------- # intial depth increases by 2x each layer depth = 8 strides = 1 activation = 'relu' # ReLU initial weights kernel_initializer='glorot_uniform' latent_dim = 14 # Crop to dimensions of [120,40,1] to allow for reconstruction # e = Cropping2D(cropping = ((0, 6), (0, 1)))(img_input) # e = Conv2D(depth*2**0, (5,5), strides=strides, activation=activation, kernel_initializer=kernel_initializer, padding='same') (e) e = Conv2D(depth*2**0, (5,5), strides=strides, activation=activation, kernel_initializer=kernel_initializer, padding='same') (img_input) e = Conv2D(depth*2**1, (5,5), strides=strides, activation=activation, kernel_initializer=kernel_initializer, padding='same') (e) e = Conv2D(depth*2**2, (3,3), strides=strides, activation=activation, kernel_initializer=kernel_initializer, padding='same') (e) e = Conv2D(depth*2**3, (3,3), strides=strides, activation=activation, kernel_initializer=kernel_initializer, padding='same')(e) shape_before_flattening = K.int_shape(e) x = Flatten()(e) # Embedded latent space: 14 dimensions (features) encoded = Dense(latent_dim, activation=activation, name='encoded')(x) # Decoder model for CAE (Reverse Operations) # --------------------------------------------------------------------------- d = Dense(np.prod(shape_before_flattening[1:]), activation='relu')(encoded) d = Reshape(shape_before_flattening[1:])(d) d = Conv2DTranspose(depth*2**2, (3,3), strides=strides, activation=activation, kernel_initializer=kernel_initializer, padding='same')(d) d = Conv2DTranspose(depth*2**1, (5,5), strides=strides, activation=activation, kernel_initializer=kernel_initializer, padding='same')(d) d = Conv2DTranspose(depth*2**0, (5,5), strides=strides, activation=activation, kernel_initializer=kernel_initializer, padding='same')(d) decoded = Conv2DTranspose(1, (5,5), strides=strides, activation='linear', kernel_initializer=kernel_initializer, padding='same')(d) # Define Autoencoder Input: Sprectrograms & Output: Reconstructions autoencoder = Model(inputs=img_input, outputs=decoded, name='autoencoder') # Define Encoder Input: Sprectrograms & Output: Compressed image representations (embedded latent space) encoder = Model(inputs=img_input, outputs=encoded, name='encoder') # Model architecture autoencoder.summary() date_name = '2023' architecture_fname = 'CAE_Model_{}.png'.format(date_name) plot_model(autoencoder, to_file=architecture_fname, show_shapes=True) # Model training parameter LR = 0.001 # Learning rate n_epochs = 50 # Number of epochs batch_sz = 1024 # Batch size # create log file to record training & validation loss logger_fname = 'HistoryLog_LearningCurve.csv'.format(date_name) csv_logger = CSVLogger(logger_fname) checkpoint = ModelCheckpoint("model.h5", monitor="val_loss", save_best_only=True) # Early stopping halts training after validation loss stops decreasing for 10 consectutive epochs early_stop = EarlyStopping(monitor='val_loss', min_delta=0, patience=10, verbose=1, mode='min', restore_best_weights=True) optim = tf.keras.optimizers.Adam(lr=LR) # Adaptive learning rate optimization algorithm (Adam) loss = 'mse' # Mean Squared Error Loss function # Compile Encoder & Autoencoder(initialize random filter weights) encoder.compile(loss=loss, optimizer=optim) autoencoder.compile(loss=loss, optimizer=optim, metrics=[metrics.mae]) # Model training tic = time.time() autoencoder.fit(data, data, batch_size=batch_sz, epochs=n_epochs, callbacks=[csv_logger, early_stop, checkpoint]) toc = time.time() print('Elapsed Time : {0:4.1f} minutes'.format((toc-tic)/60))
f39abbbaa6ba4884ef15534fdb022b05
{ "intermediate": 0.31867676973342896, "beginner": 0.3622436821460724, "expert": 0.31907957792282104 }
18,787
--1.come up 2 more ways to go back to the beginning of any date (hint: format, concat, datepart) select getdate(), dateadd(month, datediff(month,0,getdate()),0), dateadd(month, datediff(month,0,'2015-04-28'),0), format(getdate(),'yyyy-MM-01'), format(cast('2015-04-28' as date),'yyyy-MM-01')
3913bbb32f8f89a7e76cade79cf243e6
{ "intermediate": 0.37611785531044006, "beginner": 0.24962098896503448, "expert": 0.37426120042800903 }
18,788
--5. split names into three seperate columns, firstname, lastname, middlename select 'Anna, Anna_lastname, Anna_middlename'
3a4ee15910a1974dfeb061166563be16
{ "intermediate": 0.3882692754268646, "beginner": 0.20974265038967133, "expert": 0.40198814868927 }
18,790
I would like report the status. Please report the status below colloquially: "1. NTAP approved workaround for [BZ#6559]&[BZ#6576] and JDS shipped partial P1B systems to NTAP on 8/23 (POR ETD: 8/21). JDS to prepare the rework instructions to NTAP for the remaining P1B systems rework at JWX."
6a57c5bdeaa3a67ae96a037e7ce34fbe
{ "intermediate": 0.33978068828582764, "beginner": 0.24957972764968872, "expert": 0.41063955426216125 }