All Questions
23,548,301
questions
0
votes
0
answers
2
views
Upsampling 4d tensor in pytorch
I created a 4D tensor of the following size. (B, C, H, W)
And I want to reshape this tensor to the following size. (B, C, 2H, 2W)
Each value expands into 4 values, but only the elements in the ...
-1
votes
0
answers
3
views
Exception in thread "main" org.openqa.selenium.UnhandledAlertException: unexpected alert open: {Alert text : Invalid Credentials}
`import java.awt.AWTException; import java.io.File; import java.io.IOException; import java.util.concurrent.TimeUnit; import org.apache.poi.openxml4j.exceptions.InvalidFormatException; import org....
0
votes
0
answers
9
views
How can I combine three identical tables and store it in new tables using SQL SERVER?
I want to combine three tables with same header and same numbers of columns in one table,
i have tied to store it in "VIEW" but it excludes "2019" column I don't know why
**I have ...
0
votes
0
answers
5
views
Github conflict
I created two branch 2 days back on github
i merged. the first branch yesterday doing some code changes
today when i raised the pr for second branch doing the same changes and some additional changes,
...
0
votes
0
answers
4
views
How to reset session on same batch script to update the date and time?
I met a problem here, when I try to log date and time into a text file by a batch script and the script need to log date and time not only one time, but the text file I got was with all the same date ...
0
votes
0
answers
5
views
How to get all component's names in Nuxt 3?
My project has several levels of component folders:
`
/components
/foo
File.vue
File2.vue
/fooTwo
Anotherfile.vue
/bar
File1.vue
File10.vue
`
This ...
0
votes
1
answer
6
views
Not able to build my app in unity. FAILURE: Build failed with an exception
enter image description here
I tried changing different jdk version but no use. The same projects build an apk in different computer
0
votes
0
answers
3
views
Google TV Toast Notification is displayed reappears /seen twice
`Hello,
I'm facing this strange issue, I'm using Google Notification Manager to Post Popup notification on TV,
The Problem is Like this.
1.Post Notification X which is seen properly [has a timeout of ...
0
votes
0
answers
4
views
Chainlink UpKeep function error , unable to execute automation
I have been trying to learn smart contract automation with Chainlink . Even with the code from official documentation , I've been unable to run the automation . The contracts cannot be verified on ...
0
votes
0
answers
4
views
Unity scroll working perfectly fine in the Unity Editor, but not functioning at all on my iPhone device
I am developing a Unity game that includes a scrollable list of items, and I have encountered an issue where the scroll works perfectly fine in the Unity Editor, but it does not work on my iPhone ...
0
votes
0
answers
4
views
removing trailing zeros in ssrs but keeping the other decimal values
How to remove the zeros in decimal places if whole number in ssrs expression but would like to retain 2 decimal places if not zero?
Sample data Value -> Value displayed in SSRS
59.00 -> 59
65....
0
votes
0
answers
5
views
Kombu producer pool error only comes on the next send attempt
I am trying to publish messages to rabbit using kombu's producer pool and by mistake I tried to publish to an in-existing exchange (I know I'm supposed to declare it first). What I see is, I only get ...
0
votes
0
answers
5
views
Drawflow drawing without using custom paint
I try to create word matching game as a small part of my app. My web team-mate already do this feature using Drawflow package. On flutter i didnot found any package similar this.
I already do this ...
0
votes
1
answer
10
views
MySQL SELECT one row plus another one column of another row in the same table
I have a table looking like this
Table: Stores
| Group | ID | Name | Link |
| 1 | 1 | Store A | |
| 1 | 2 | Store B | 3 |
| 1 | 3 | Store C | ...
0
votes
0
answers
5
views
Scan QR code and get particular key from an object
I am storing the data in a QR code with the below structure, I am facing the issue and want to achieve the output when I scan the QR it will only catch the User ID value as ABC123 only through jQuery ...