Questions tagged [custom-object]

202 questions
1
vote
2 answers

Python Multiprocessing custom manager with associated objects

I'm trying to make a class object usable for multiple processes. Unfortunarely this seems to be more of an issue than I anticipated. I have the following class object: class BusObject: inputs: IOObject outputs: IOObject def…
1
vote
2 answers

SilkTest workbench Invalid Object Handle Exception?

I'm trying silktest for the first time with an in house application. In one of the windows, I have a button that has two menu lists : New (pushbutton) ---> Option1 (list menu ) + Option2 if option1 clicked ---> subOption1, subOption2? All these…
Nancy89
  • 11
  • 2
1
vote
0 answers

Add custom objects to a keras model while building it

I would like to use a custom accuracy function. I would prefer to add the custom object to the model when creating it (not saving the model and loading it again to add the object). I first load the following libraries: import pickle import numpy as…
mdslt
  • 155
  • 1
  • 10
1
vote
0 answers

Train using images instead of tfrecords?

I am working with a huge dataset and RAM is my limitation as it gets full during creation of tfrecords. Is it possible to do tensorflow training using images and labels directly instead of first creating and then using tfrecords?
databot
  • 11
  • 1
1
vote
1 answer

How to run trained Yolov3 model with using GPU

I'm a newbie in DL/Real time object detection area and tring to learn some stuff from youtube. I watched a video https://www.youtube.com/watch?v=DLngCtsG3bk on youtube about real time custom object detection on yolov3 and I did all stepts correctly.…
1
vote
0 answers

LateInitializationError: Field '_instance@717240915' has not been initialized Error

I m using parse_server_sdk_flutter 3.0.0 to use parse server (back4app) in my app. I created custom class of ParseObject, when I m creating an instance of that custom object I m getting the above mentioned (In the title) error. I think it's because…
Naveen Avidi
  • 3,004
  • 1
  • 11
  • 23
1
vote
1 answer

RSA Archer Back Date Validation

So basically i have a requirement to Create a validation on a sub form to control user from submitting a back date in an extension request. I've used a custom object validation but there is an issue by showing the original Save, Save & Close along…
1
vote
1 answer

Powershell Splatting Object Attribute (Typeof System.Collections.Hashtable)

Going to give an example to make it clearer what I want to do $AzLogin = @{ Subscription = [string] 'SubscriptionID'; Tenant = [string] 'tenantID'; Credential = [System.Management.Automation.PSCredential] $credsServicePrincipal; …
1
vote
2 answers

How to use a custom object to concate a int and double to a string and return the value in another class

So I made three separate classes: NumberTester: where all the test cases go Number: where you concatenate the int and double into the public String myStr, and MyNumber: where you make another method called getStr() and return the value of…
vumedfsdvb
  • 11
  • 1
1
vote
0 answers

defining specific custom metric in Keras

I am trying to define a method in Python that I want to use as a Metric, especially for EarlyStopping (restore_best_weights). The Problem is that I'm trying to make a prediction in this method (using the current parameters) which doesn't seem to…
1994
  • 71
  • 8
1
vote
2 answers

how to set custom object with document id to a collection in firestore in flutter?

I defined a dart class A with some string variables and a list of objects of another class B. I don't find any method function in cloud_firestore module to set this custom object of class A, as a document to the collection, even though custom…
Durga ga
  • 13
  • 3
1
vote
1 answer

Tensorflow GPU Custom Object Detection not working

I am relatively new to object detection using tensorflow and need guidance on the below issue. I am building a custom model to detect two objects using tensorflow and Faster_Rcnn_inception_v2 model. For this I have used 600 images which contains…
Ratan
  • 65
  • 8
1
vote
2 answers

Insert to Parent and child custom object using external Id

I am trying to insert a record into a child custom object using the external id of the parent custom object. I am almost clear on how to setup the external id field in the parent object, but very confused with how to setup a foreign key in my child…
Sumchans
  • 3,088
  • 6
  • 32
  • 59
1
vote
1 answer

How to print custom objects?

This references says printable<%> should be implemented, and that it seems to be a wrapper around prop:custom-write. https://docs.racket-lang.org/reference/objectprinting.html But the docs for prop:custom-write say it's deprecated in favor of…
Eroc
  • 147
  • 1
1
vote
1 answer

Updating RDD of Objects

I have just started with learning scala and facing some issues regarding manipulation of RDD of objects. I have the same problem as stated in the below link Update the internal state of RDD elements Is there any other way to achieve the solution of…
abhi8569
  • 131
  • 1
  • 9