Newest Questions
24,231,921 questions
0
votes
0
answers
8
views
memory leak in prediction tensorflow
Recently I trained two MLP model and saved weights for future work. I develop one module for loading model and use these model in another module.
Load model module contain this code to load models:
...
0
votes
0
answers
3
views
import { useSyncExternalStoreWithSelector } from "use-sync-external-store/with-selector.js"; import failed when build the app
Today when I build the project seems have a compatible issue:
error during build:
node_modules/.pnpm/[email protected]_@[email protected][email protected][email protected]/node_modules/react-redux/dist/react-...
0
votes
0
answers
7
views
Awful lldb Command Indentation
I edited the .lldbinit file with only one setting:
settings set prompt "\x1b[0;33m(lldb) \x1b[0m"
I hoped to change the color, but lldb became like this:
enter image description here
So how ...
0
votes
0
answers
11
views
React Native iOS build fails: no such module 'OneSignalExtension' in OneSignalNotificationServiceExtension
I'm working on a React Native app with an iOS target, and I'm getting a build error related to a OneSignal Notification Service Extension. The build fails with the following error:
SwiftEmitModule ...
0
votes
0
answers
12
views
app.use(express.json()) is not working in express version [email protected] , but works fine in [email protected]
import express from "express";
const app = express();
import dotenv from "dotenv";
import path from "path";
let _dirname = path.resolve();
import cors from "cors&...
0
votes
0
answers
11
views
how to make a floating copy text that slowly disspear for my website
so my current website https://asmophacy.github.io/website/
does this ()
then it go and copy it to clipboard this is my current js code for my email
function copyText() {
/* Copy text into ...
0
votes
0
answers
14
views
I'm learning VS Code, I'm trying to run without debugging my project, but it fails, how can I fix this issue?
enter image description here
I'm trying to run without debugging at VS Code, how can I fix it?
Launching lib\main.dart on sdk gphone16k x86 64 in debug mode...
05-03 13:35:02.054 9716 14040 W zipro ...
0
votes
0
answers
8
views
Module '"redux"' has no exported member 'CombinedState'.ts(2305)
when I upgrade the redux version from 4.2.1 to 5.0.0, shows error:
Module '"redux"' has no exported member 'CombinedState'.ts(2305)
I have read the official release notes: https://github....
0
votes
0
answers
10
views
pandas' apply function gives indexing error
When I use transform for the same task, there is no problem, but when I use apply function, I get indexing error. Why is this?
df.loc[
df.groupby(df.index.date)['TotalHour'].transform(lambda x: x =...
0
votes
0
answers
3
views
Fabric User Data Function throws error while attempting call from data pipeline
Requirement:
Using REST API, we need to connect to Fabric Workspace to get data from delta table.
Solution Approach
The user data function in Fabric supports REST API to query data from delta table ...
0
votes
0
answers
7
views
Data transformation in AWS
I have two years of IOT telemetry data in a S3 bucket (json format). I want to transform with Glue in the as mentioned below to another S3 in the data lake.
Structure is : year, month, day, hour, ...
0
votes
0
answers
9
views
Could not determine the dependencies of task ':wakelock_plus:generateReleaseLintModel'?
Could not determine the dependencies of task ':wakelock_plus:generateReleaseLintModel'. > Could not resolve all dependencies for configuration ':wakelock_plus:releaseUnitTestRuntimeClasspath'. > ...
-2
votes
0
answers
15
views
How to restore default NTFS permissions on dual-boot partitions after using takeown and icacls? [closed]
How can I restore default permissions on NTFS partitions that belong to different operating systems (Windows/Linux) on the same laptop, after accidentally modifying access with takeown and icacls, ...
0
votes
0
answers
11
views
How does one get Cocos2dx to work in a web browser?
So I am on the task of trying to get a very popular game that uses Cocos as it's engine (yes, that one) working in a web browser. But I can not figure out how to get Cocos2dx or Cocos2dx in Emscripten ...
0
votes
0
answers
21
views
TypeVar with UnionType to express lambda parameter type to Pyright
I have a collection of objects which all inherit from Component. I'm writing a function that allows one to select a subset of objects, based on type, and pass them to a lambda. The simple case shown ...