Questions tagged [ensembles]

Ensembles is an Objective-C synchronization framework for apps using Apple's Core Data.

Ensembles extends Apple's Core Data framework to add peer-to-peer synchronization for Mac OS and iOS. Multiple SQLite persistent stores can be coupled together via a file synchronization platform like iCloud or Dropbox. The framework can be readily extended to support any service capable of moving files between devices, including custom servers.

References

81 questions
1
vote
0 answers

Algorithm co-training machine learning, the best strategy?

I implemented the co-training to undergraduate and now need to implement an ensemble of ensemble after each iteration. For example: In the 1st iteration, we will have a classifier and the data will be labeled only by this classifier. In the 2nd…
1
vote
1 answer

Ensembles with directories in CloudKit

I'm using Ensembles in this project where I have different user-groups stored under separate directories. I've built this more or less copying the example app, Idiomatic's sync-manager. Initialising the CDECloudFileSystem i do this: newSystem =…
Mathias Åberg
  • 99
  • 1
  • 10
1
vote
1 answer

DBRestClient.h not found for CDEDropboxCloudFileSystem (ensembles framework)

I'm trying to implement Dropbox syncing to my iOS app using the ensembles framework. I'm not using pods, so I manually added the ensembles iOS and DropboxSDK Xcode projects to the frameworks section of my project, and made sure all the buildphases…
koen
  • 5,383
  • 7
  • 50
  • 89
0
votes
0 answers

How to apply Ensemble Feature Selection in Weka?

How can we apply Ensemble Feature Selection in Weka platform? Edit 01: This paper applied Ensemble Feature Selection using Weka, but I do not know how to do it. https://ieeexplore.ieee.org/abstract/document/9316747
Muneera
  • 11
  • 2
0
votes
0 answers

Amdocs Billing Clarification

Does any one knows how to prepare Amdocs Ensemble. Do you have any material or any study link about this Ensemble. What is the difference between Amdocs ensemble and Kenen Billing? Regards, Moorthy
0
votes
1 answer

Error in UseMethod("filter") : no applicable method for 'filter' applied to an object of class "NULL"

I am actually using Tidymodels package on R to study a multi-class classification problem. I have trained several models using Workflow sets, and in my recipe I added a step taken there to replace NA values with a constant. The models that I…
0
votes
1 answer

Error : No module named 'sklearn.tree.tree

import sys from os import listdir, sep import numpy as np import pickle from PIL import Image import cv2 from sklearn.ensemble import RandomForestClassifier import numpy as np from PIL import Image DEFAULT_IMAGE_SIZE = (45,45) SPLIT_POINT_COEFF =…
0
votes
1 answer

Multi Classification Ensemble Cross validation Function too many values to unpack (expected 2)

[Link to SampleFile][1] [1]: https://www.dropbox.com/s/vk0ht1bowdhz85n/StackoverFlow_Example.csv?dl=0 Code below is in 2 parts Function and main code that calls function. There are a bunch of print statements along the way to help troubleshoot. I…
Leo Torres
  • 673
  • 1
  • 6
  • 18
0
votes
1 answer

Ensembles - How to support plists with Dropbox?

We have been testing Ensembles and developing a migration strategy from our current sync method. We use plists extensively to manage app settings which work fine with iCloud, if devices are using the same iCloud Account. Question: When using…
John
  • 538
  • 4
  • 18
0
votes
1 answer

Cannot stop Zookeeper nodes from the ensemble formed in same machine

I am running a zookeeper ensemble of 3 nodes in the same machine. I unpacked zookeepers to three different locations. I can start all the 3 nodes. When I look at the status of the nodes, one node is a leader and the other two are on the follower…
Muthu Prasanth
  • 301
  • 5
  • 13
0
votes
1 answer

Ensembles 2 CloudKit

I currently use Ensembles 1 in my app to synchronise between core data and iCloud, and I am looking to upgrade to Ensembles 2 to make use of CloudKit and the push notifications it provides. My questions is, does Ensembles 2 handle many to many…
0
votes
0 answers

Zip and Encryption pods build error in Ensembles 2.6.2

I created a brand new Xcode project in Swift and integrated Ensembles 2.6.2 via Cocoapods. I also wanted to include Zip compression and Encryption and so I simply added these 2 pods in my Podfile, as suggested in the manual. Unfortunately after…
Enrico Querci
  • 543
  • 2
  • 6
  • 11
0
votes
1 answer

Does Ensembles support the new UUID entity attribute type?

In iOS 11, a new attribute type was introduced for Core Data Entities: UUID. I'd like to use that type for storing my uniqueIdentifiers for Ensembles. Is it safe to do so? Can Ensembles handle syncing the UUID attributes? Here's how I plan to…
Lukas Petr
  • 1,513
  • 16
  • 19
0
votes
0 answers

Core Data Syncing with Ensembles: Failed to merge: The operation couldn’t be completed. (CDEErrorDomain error 204.)

I am experiencing the same problems outlined outlined in this bug report. I too synced my data with an old model version, and now I cannot sync again. I completed the troubleshooting steps in that bug report: Deleeched my ensemble Deleted the Core…
user4034838
  • 121
  • 9
0
votes
1 answer

Core Data Syncing with Ensembles: Remote changes aren't pulled down until the local model changes

I have a Core Data application with which I am trying to integrate the Ensembles framework using iCloud as my backend. I have most things working except that when making a change on one device, I have to make a change and save the context on the…
user4034838
  • 121
  • 9