All Questions

19771 questions


1 answers
340 views
0
Problems that arise when compliance is converted into a general for statement

# Create Dictionary loc_mapping = {val : index for index, val in enumerate(strings)} # It doesn't mean val = index, but it means to express it in the form of val : index.loc_mappingWhen you run , you ...

1 years ago

1 answers
352 views
0
loss.backward() -> Missing XLA configuration

Calculated losses from models created using pytorchWhen you run the following code during propagation:The following error message is troubling me.loss.backward()The forward propagation calculation can...

1 years ago

1 answers
342 views
0
I want to start TigerVNC as a service via systemd on Alma Linux

BackgroundI'm running Alma Linux to build a server.I would like to work remotely in a GUI environment by installing a VNC server in Alma Linux.I'm having a hard time getting in the VNC server.If you k...

1 years ago

2 answers
432 views
0
Understanding Socket Communication Buffer Size

C++ implements UDP socket communication.I don't know how to set the receive buffer size.Do you have any tools to see how much buffers you sent?The code on the page I referenced when I made it is set t...

1 years ago

1 answers
208 views
0
a function that returns a list containing all prime numbers below n

Using the Scheme language, we write a code that gives prime numbers up to n and lists them in ascending order.(You will also need to use cond and cons) Example) Print 2, 3, 5, 7 when given 10I think t...

1 years ago

1 answers
311 views
0
About the function of starting the menu bar application for macOS when logging in using SwiftUI

I am studying the menu bar application for macOS using SwiftUI.See here, but the implementation of SMLoginItemSetEnabled() is not SwiftUI, but StoryBoard.In order to start the helper application when ...

1 years ago

1 answers
385 views
0
The column name of the column that was aggregated by the pandas groupby.

import pandas as pdimport numpy as npdf1 = pd.DataFrame({'living things':['white bear', 'cat', 'rabbit', 'raccoon', 'momonga', 'seaser', 'ode', 'armor gold', 'armor silver'], 'Category': ['Fighter'...

1 years ago

1 answers
341 views
0
Windows 10 paging file configuration anomaly

After updating the driver using a software called DriverHub, the following message dialog appears when the PC boots: System PropertiesUS>A temporary paging file was created because a paging file confi...

1 years ago

3 answers
321 views
0
What language is Amazon's site created in?

I would like to create a mail order site like Amazon and a general mall.I would like to create a mail order mall site that deals with products from various companies.What programming language is used ...

1 years ago

2 answers
275 views
0
Trivial expression syntax error

I am currently studying about the expression of the trinomial.year=2000val = 'It's leap year' if ((year%40) == 0) and ((year%100)!=0) or ((year%400)==0)print(val)If you type the code like this,SyntaxE...

1 years ago
« - 94 - »

© 2024 OneMinuteCode. All rights reserved.