Questions tagged [isolation]
258 questions
0
votes
0 answers
package ‘IsolationForest’ is not available
I am trying to use the Isolation Forest package in R to run some code. I had RStudio 3.3.1 but I kept getting an error "package ‘IsolationForest’ is not available"! Looking at the description file it says it depends on R >= 2.0.0, so I got RStudio…
0
votes
2 answers
Isolation Forest gives different results when predicting one point instead of all
I am trying to detect anomalies in some data. I have normal data and data which are considered anomalous.
I use Isolation Forest from scikit-learn library in python. I have create a model from the normal data like that:
model =…

user1872329
- 321
- 3
- 15
0
votes
3 answers
Google Chrome Application Mode: Possible to isolate multiple instances?
I want to run multiple Google Chrome application windows logged into the same web site (Twitter.com, say), each with different credentials. Is this possible? If so, how?
My initial testing shows that multiple Chrome app windows are not sufficiently…

Jonathan Eunice
- 21,653
- 6
- 75
- 77
0
votes
1 answer
spring cloud sleuth: manually triggered async services
I have a service A that creates an email and sends it to a customer. The customer will receive the email and will, eventually, click on the link in the body to trigger service B.
How can I correlate two different and completely isolated services…

pgs
- 3
- 5
0
votes
1 answer
global variables on mbed uvisor
I have an aplication running on a K64F board with ARM Mbed OS. I takes advantage of the RTOS capabilities and is runnign some different threads to perform various actions. Communication between threads is done using queues defined as global…

jordi
- 1,157
- 1
- 13
- 37
0
votes
1 answer
non-repeatable read vs. phantom read
I know that
A non-repeatable read occurs, when during the course of a transaction, a row is
retrieved twice and the values within the row differ between reads.
and
A phantom read occurs when, in the course of a transaction, two identical queries…

La Carbonell
- 1,976
- 5
- 22
- 52
0
votes
1 answer
Display information about isolation forest
I want to display informations about the result of isolation forest's output, like the isolation indices (on the graphic) and the accuracy of the prediction.
I use sklearn's isolation forest function.
clf =…

Chènevis
- 513
- 1
- 9
- 22
0
votes
1 answer
Being an offline iOS developer
I am currently studying for the sake of a big company I'm working for the creation of an iOS dev team.
Long story short, we handle very sensitive informations and code, so we vould like to avoid at all cost to connect this platform to the…

X99
- 905
- 10
- 24
0
votes
1 answer
How is configuration shared/isolated in Spark SQL?
so, I have my spark context sc, from that I get my spark sql context,
val sqlContext = new SQLContext(sc)
sqlContext.sql("set spark.sql.shuffle.partitions=2")
Sometimes I want to use 2 for the shuffle partitions, but at some other moments(may be…

AlbertoAndreotti
- 478
- 4
- 13
0
votes
1 answer
Check test isolation tool
I have some tests written with mocha.
Probably something wrong with test isolation.
When I start all test it's ok.
When I pick only some describe block some test falls.
Did any knows any instruments to check test isolation. Maybe some tools that…

Stepan Loginov
- 1,667
- 4
- 22
- 49
0
votes
1 answer
SQL Server deadlock between transactional INSERTs and single SELECT
The deadlock occurs between SELECT...JOIN query that is running without any explicit transaction and a transaction with INSERTs in it.
INSERTs have the order we cannot change (insert Person, then insert Employment). It seems however the tables used…

Vlad
- 1
- 1
0
votes
3 answers
AngularJs help, trouble selecting array in object passed to isolation scope
Can anyone tell me what I'm doing wrong here? Is it possible to interpolate the image array the way I'm trying to here? I know that the object is working, because the inkObject.header property interpolates fine to the page, but the array, which…

brandon
- 1
- 1
0
votes
0 answers
How to Isolate some part of HTML code style & formatting?
I've some part of HTML code which is generated by TinyMCE and I have to embed is within another HTML page, but when I do this, sometimes it formatting affects by container page & some other times it affects container page.
I need something like a…

Ehsan Khodarahmi
- 4,772
- 10
- 60
- 87
0
votes
1 answer
C++ to C# bridge with multiple processes
I have C++ library that handles queries to documents and ASP.NET 5(.NET Core) web server that should open and query documents using that library.
I want to isolate C++ library from web server (so if library crashes it won't crash the server). So…

Roman Kolesnikov
- 11,777
- 11
- 44
- 67
0
votes
0 answers
Isolate Web Service
I have got an asmx which is a Proxy, I use it to consume a Web Service. I have got the calls to the methods of the Web Service in the app_code. I have not the control of the Web Service and when the Web Service changes the specifications(for example…

Za7pi
- 1,338
- 7
- 22
- 33