can anyone tell me what am I doing wrong in WEKA tool? I am trying to supply a testing set with the same attributes as the training set but when looking at instances or sum of weighs there is a "?". What I could possibly be doing wrong?
WEKA 3.8.4 : Supplied Test Set Issue
182 Views Asked by Louise At
1
There are 1 best solutions below
Related Questions in TESTING
- Using ES Modules with TS, and Jest testing(cannot use import statement outside module)
- Mocking AmazonS3 listObjects function in scala
- How to refer to the filepath of test data in test sourcecode?
- No tests found for given includes: [com.bright.TwitterAnalog.AuthenticationControllerSpec.Register user with valid request](--tests filter)
- Error WebMock::NetConnectNotAllowedError in testing with stub using minitest in rails (using Faraday)
- How to use Mockito for WebClient get call?
- Jest + JavaScript ES Modules
- How to configure api http request with load testing
- How can I make asserts on outbound HTTP requests?
- higher coefficient of determination values in the testing phase compared to the training phase
- Writing test methods with shared expensive set-up
- Slow performance when testing non-local IP services with Playwright
- uiState not updating in Tests
- Incorrect implementation of calloc() introduces division by zero and how to detect it via testing?
- How to test Creating and Cancelling Subscription in ThriveCart in Test Mode
Related Questions in INSTANCE
- Misunderstanding of classes in python, accessing and changing instance variables
- How can I determine when is more convenient to use static methods instead of instance ones? Encapsulation is the preferable choice?
- My instantiated enemies don't do anything I tell them to. (godot)
- Codesys question about using a Ladder function block into a SFC (doesn't work properly)
- Is object fix-sized in java
- How to make a comonad instance of list zipper of list zippers data type?
- Concern regarding Cloud Run server instance creation delays
- Unhealthy instances for load balancer
- Ec2 instance IP address changed to new ip address
- How to reference a var node in a script (per instance)?
- Uninstall all Visual Studio versions manually after _Instances folder was deleted
- instantiation of object in Javascript by string
- Azure Managed Database Instance - Can't modify stored procedures
- Uploading an Excel File to a SharePoint Folder or Site using Power Automate Desktop and send an e-mail
- Python Class Instance in MultiProcess giving error when it contains DB connection
Related Questions in WEKA
- I keep getting a "NoClassDefFound" error with Weka Ai using Java. I keep getting this Error?
- How to treat integer attributes in WEKA i.e. number of bedrooms (cannot be float values)
- Dataset not being accepted by Weka's J48 plugin (C 4.5 algorithm)
- weka inital heap size memory allocated
- Problem with Decision Tree Visualization in Weka: sorry there is no instances data for this node
- How can I limit the depth of a decision tree using C4.5 in Weka?
- Weka supplied test set didn't process the full dataset
- converting a csv file to arff file using weka converter, but it is not counting enough columns
- i have loaded a csv file in weka tool but J48 is not highlight
- Why am I getting these exceptions when trying to load a .csv file into Weka 3.8.6?
- converting a csv file to arff file using weka converter
- WEKA EEG data Filter creation
- How can I see the ideal range of a numerical independent variable according to its dependent variable?
- Intepreting WEKA data
- Java Weka API: Getting ROC Area values
Related Questions in ARFF
- converting a csv file to arff file using weka converter, but it is not counting enough columns
- Why is this .csv file not woking in Weka?
- Convert a Protege Ontology to Arff File for Weka
- AttributeError: 'generator' object has no attribute 'data' when manually loading MNIST arrf file
- How do I convert a Vec <&str> to Vec <String>?
- Weka unable to read arff file
- How do I upload my arff file to WEKA without seeing 'premature end of line, read Token[EOL] line 22'
- How to load from arff file data set to python using pandas?
- Missing labels in tokenized data set
- WEKA not identifying .ARFF files on M1 Mac
- How to encounter error when uploading an arff file in WEKA?
- opensmile in Python save as .arff
- Getting "ParserError" when I try to read a .txt file using pd.read_csv()
- Exception in thread "main" java.io.IOException: No source has been specified
- WEKA 3.8.4 : Supplied Test Set Issue
Related Questions in CLASSIFIER4J
- WEKA 3.8.4 : Supplied Test Set Issue
- Is there a way to get tree data as a list with the LightGBM Classifier
- How to use NB algorithm for this classifier
- sklearn decision tree classifier: How to control max number of branches of each split
- How implantation MKNN Algorithm In Matlab
- How to summarize the main content of an article in a webpage?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

If it is an ARFF dataset, then Weka will load it incrementally for testing rather than fully into memory (which can be a problem for very large test sets). Since Weka doesn't know the full extent of the dataset, it can neither display the number of instances nor sum of instance weights.