Work with reader in Machine learning

hi,
i am doing work on azure machine learning, and i found one doubt, suppose i have 100 records right now and i create experiment. it gives me some result.
now suppose after 2-3 days i have 2000 records so do i have to run the experiment again to use large scale of data or azure machine learning experiment will get those newly added records when i call web service using RRS.
Please provide some guidance.

When you train the service on the new 2000 records the model will be re-trained from scratch. That is, the knowledge obtained from the old 100 records will be lost.
The feature you're talking about is called
incremental/online learning, which is something we don't support yet.
-Y-

Similar Messages

  • Embedded PDF object .postMessage doesn't work with Reader DC on IE

    In our application, we have PDFs embedded in the browser with an object tag such as this:
    <object id="pdfObject" width="100%" height="100%" type="application/pdf" data="#{url}"></object>
    There are HTML/Javascript controls on the page which communicate with the PDF via this syntax:
    document.getElementById("pdfObject").postMessage([arg])
    This has been working great with Adobe Reader versions 10+.  It actually still works with Reader DC on Firefox.  However, there is a problem with Adobe Reader DC on Internet Explorer version 11.
    All I can tell so far is the "postMessage" function isn't appearing.  Using IE dev tools:
    document.getElementById("pdfObject").postMessage
    Object doesn't support this property or method
    Any help with this would be amazing.  It is a critical part of our application here.

    My application has two-way communication between browser and embedded PDF.  Basically a user clicks a button on the browser and via Javascript the embedded PDF form is submitted.  Everything was working before the update to Reader DC, but now it fails in Internet Explorer, but not in Firefox (or Chrome, if the Reader plugin isn't disabled entirely by their new default disable-NPAPI plugin policy...)
    I originally was troubleshooting communication from the browser to the embedded PDF, which is done according to the Javascript for Acrobat API reference (page 358?), in the browser, as follows:  document.getElementById('pdfObject').postMessage([args])
    Whatever is happening, postMessage is not a valid property or method of the PDF object
    Then I found this other thread:
    Adobe Reader DC: hostContainer not worked on IE
    I confirmed that within the embedded PDF, when setting up communication from the PDF to the browser, it is not able to register the hostContainer (again, on IE only)
    I have this script on initialization within the PDF:
    <---
    this.disclosed = true;
    if (this.hostContainer) this.hostContainer.messageHandler.onMessage = onMessageFunc
    this.hostContainer.messageHandler.onDisclose = function() { return true; }; }
    ---->
    Problem is this.hostContainer is null.
    The main point here is all of this was definitely working before updating to Reader DC, and is still working with DC on Firefox, but not on IE.
    To complicate things further, I have now uninstalled DC and downgraded to Reader 11.0.10.32, and am having a new bug, this time hostContainer is detected and communication to and from the PDF works again, but the submitForm action is failing with "Unable to open URL to submit this form" and "External undefined: exec".  Testing the exact same version and script with Firefox works fine

  • Outlook Email script won't work with Reader 9.1

    The attached form was designed in ES 8.2 and has worked fine with Reader 8.0. The "properties defaults" tab is set for Reader 9.0 or better. However, upon recent upgrade to Reader 9.1, the Outlook Email script stopped working. I'm new to Livecycle and scripts and was hoping that someone had an easy fix?

    okay thanks. One more question. What script is used to activate the "read receipt requested" function in Outlook?
    Date: Wed, 12 Aug 2009 12:23:13 -0600
    From: [email protected]
    To: [email protected]
    Subject: Outlook Email script won't work with Reader 9.1
    Interesting .....it sounds like an issue in Reader. From a code perspective everything is good .....the code tells Reader's email service to communicate with the mail client. This could be where the issue is.
    You may want to post your question on the Acrobat forum and see if they know of anything .....or you can report the issue to Support and have them look into it. Maybe something was introduced into the 9.1 version.
    From a Designer perspective all is good.
    Paul
    >

  • Designer 7.0  form working with Reader 7.0.5 but not Reader 7.0.8

    Hello everyone,
    I was wondering if anyone has had a problem with a formed created using Designer 7.0 that was working with Reader 7.0.5 but no longer functions with Reader 7.0.8?
    The form consists of a numeric textbox N1 and 2 checkboxes C1[0] and C1[1].
    All code is done using FormCalc.
    Here is the situation: if the number in the numeric box is blank or not greater then zero, then neither check box can be checked. Both check boxes can not be checked at the same time. If the value in the numeric box is greater then zero, the checkboxes may or may not be checked (again both can not be checked at the same time).
    N1 has code the following code in its exit event:
    if (($.isNull) or ($.rawValue le 0)) then
    C1[0].rawValue = 0 //if not positive value, checkboxes must be blank
    C1[1].rawValue = 0
    endif
    C1[0] has the following code in its click and exit event
    if (C1[0].rawValue == 1) then
    C1[1].rawValue = 0 //C1[0] and C1[1] can not both be checked
    endif
    if ((N1.isNull) or (N1.rawValue le 0)) then
    $.rawValue = 0 //uncheck if N1 is not positive
    endif
    C1[1] has the following code in its click and exit event
    if (C1[1].rawValue == 1) then
    C1[0].rawValue = 0 //C1[0] and C1[1] can not both be checked
    endif
    if ((N1.isNull) or (N1.rawValue le 0)) then
    C1[1].rawValue = 0 //uncheck if N1 is not positive
    endif
    The above code worked exactly as described when the form was used in Reader 7.0.5.
    Under Reader 7.0.8 the following happens:
    if N1 is blank or less then or equal to zero, both checkboxes can be checked at the same time (this should not happen at all) but neither can be unchecked
    if N1 is positive the code (and checkboxes) function as described.
    I am not sure if this is a Designer issue or a Professional/Reader issue, so I am posting this here as well as in the other 2 spots.
    Any help is greatly appreciated,
    Ben

    Chris,
    Thank you for the sample you provided. First, I must apologize for not mentioning that there was additional code in the Click event. I thought I had removed it from my form, but apparently I had not.
    I have compare the sample you provided to my form. I noticed several differences between them. First was that you used Designer 7.1 to create your sample, whereas I used Designer 7.0. I do not believe that this will have an impact, although it is possible. Also, in your sample, then click and exit events both need to contain the same "check" code. Your sample has one IF statement in the click event and one IF statement in the exit event. To match my form code, the Click and Exit events together need to contain both IF statements. My form originally contained the code in the Change event also.
    i.e. C1[0] has the following code in both its Click, Exit and Change events
    if (C1[0].rawValue == 1) then
    C1[1].rawValue = 0 //C1[0] and C1[1] can not both be checked
    endif
    if ((N1.isNull) or (N1.rawValue le 0)) then
    $.rawValue = 0 //uncheck if N1 is not positive
    endif
    and similarly for C1[1].
    Based off your sample, I did some more digging and found that the problem is caused by the Change event for the checkboxes. I have removed the code from the Change event and now the form works as desired.
    So, if the Change event has NO code, and if the Click and Exit events for the checkboxes have both IF statements the overall behavior (as specified earlier) is identical (and what I am looking for) for both Reader 7.0.5 and 7.0.8.
    Now, if I add the IF statements to the Change event (without removing them from Click and Exit), the behavior in Reader 7.0.5 does not change (works as specified). In Reader 7.0.8, the checkboxes can not be unchecked if N1 is blank.
    So my questions now become:
    1) What has actually changed between Reader 7.0.5 and 7.0.8 (i.e. more detailed description than the generic release notes)?
    2) Which one actually exhibits the correct behavior?
    3) If this is a change to the event model, is this documented anywhere?
    Thanks again,
    Ben

  • ExportAsFDF javascript method is not working with Reader 10.1.1

    Hi,
    I have pdf document in which I have applied all Extendend Reader Rights. And now when I am trying to exports alll annotation in fdf with Reader 10.1.1 then it is faling to export. However it is working fine with Reader 10.0.0. Looks like this is broken in later version of 10.0.0.
    Please let me know if any alternative solution is there to export all annotation in fdf file thru code.
    Regards,
    Arvind

    I would open a formal support ticket with our developer support folks.
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Sun, 27 Nov 2011 22:48:35 -0800
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: exportAsFDF javascript method is not working with Reader 10.1.1
    exportAsFDF javascript method is not working with Reader 10.1.1
    created by arvindg007<http://forums.adobe.com/people/arvindg007> in Acrobat SDK - View the full discussion<http://forums.adobe.com/message/4049525#4049525

  • Have Sony reader 505, ADE doesn't recognize when attached to mac OX 10.6.8. works with reader library but not with ADE

    Have Sony reader 505, ADE doesn't recognize when attached to mac OX 10.6.8. works with reader library but not with ADE

    YEAY!
    I just got the solution (that worked for me, anyway) from a Sony support rep. No PC or VMWare needed.
    OK, you've installed Sony eBook Library v3, and Adobe Digital editions, you've set up your acocunts and authorized your computer on both of them, and you've authorized your Reader with the Sony Library application.
    You go to the public library ebook download page, either through the Sony Library or just through a bookmark.
    You check out a book, and open it in Adobe Digital Editions, which still won't recognize your Reader.
    BUT, in the Sony Library app, you can now click "File, Import.." and go find the pdf you downloaded with the Adobe app.
    On my Mac, it was in ~/Documents/Digital Editions
    Import it, and drag it to your Reader.
    The first time you do this, it will ask you to authorize the Reader with your Adobe ID.
    Worked like a charm.

  • Working with Subversion and Dreamweaver | Learn Dreamweaver CS5 & CS5.5 | Adobe TV

    Learn how to use Subversionan open-source version control systemand Dreamweaver CS5. Learn how to work with multiple versions of a web page and how to decide which version to make live at any time. An associated PDF offers troubleshooting tips.
    http://adobe.ly/yiTw93

    How do you connect to SVN? could you show a better description on that, not just your icons? I'm getting an error when trying to commit files. This video didn't really go over anything to help anyone out...

  • OS X Remote Desktop is not working with Azure Cloud Machines or Azure Pack Machines

    Hi,
    i can't connect to any Machine via Console. I'm Working with Machines in Azure Pack and in Cloud. The connection causes a Authentication Loop.
    Best Regards

    Hi,
    In addition, here are some related Azure forums below for you:
    Azure Virtual Machines Forum
    https://social.msdn.microsoft.com/Forums/en-US/home?forum=WAVirtualMachinesforWindows&filter=alllanguages
    Azure Management Portal Forum
    https://social.technet.microsoft.com/forums/azure/en-US/home?forum=windowsazuremanagement&filter=alltypes&sort=lastpostdesc
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • AcroQTP works with Reader 10.1.1, not 10.1.2 nor 10.1.3

    Hi all,
    I have a suite of AcroQTP scripts written against Reader 9 that I was keen on porting to Reader X. I've seen a lot of frustrated users complaining about AcroQTP not working with their version of Reader X.  I was going to add my voice to the frustration.  In my case, what I was seeing was:
    0. Unregister any previous AcroQTP and uninstall any previous Reader.
    1. Install Reader 10.1.3
    2. Register the AcroQTP plugin
    3. Start QTP
    4. Start Reader (manually)
    5. Open my form (manually)
    Reader crashes!  (... and it would only crash if QTP were running.)
    (6. If I could, I would run QTP's Object Spy to see if it detects AcroField objects on my form.  But when your Reader crashes, you're not off to a good start.)
    I tried many uninstalls and reinstalls to try to get this to work, with no success. Then on a whim, I downloaded the Reader 10.1.1 installer from a third-party archival website, since it was no longer available from Adobe.  I installed it, followed the same steps as above... and voila, Object Spy WORKED!
    I've tried this on Win XP SP3 and Windows 7, and Object Spy worked in both cases.  After a little tweaking, my regression suite is now ticking along against Reader X. 
    So until Adobe addresses their issue, all you have to do is find a source for the Adobe Reader 10.1.1 installer that you trust.  Something like this, from http://www.filehippo.com/download_adobe_reader/tech/10591/
    Title:
    Adobe Reader 10.1.1
    Filename:
    AdbeRdr1011_en_US.exe
    File size:
    50.24MB (52,677,528 bytes)
    MD5 Checksum:
    72E7C5531A20556AAFA5F31978FA1105
    Happy trails,
    Brent

    Hi Brent
    We have lately found that due to some of our changes in Reader 10.1.2 release, the plugins have broken.
    They still continue to work with Adobe Reader 10.1.0 and 10.1.1 ON ANY ENVIRONMENT WITH ANY QTP VERSION.
    For the time being, before Adobe roll out a fix, we would suggest you not to upgrade the Adobe Reader versions.
    Thanks and Regards

  • Reader X : Wrong Fonts (was working with Reader\Pro 9 and Pro 10)

    Hi all,
    First : this form pdf work with adobe Reader 9 and Acrobat Pro 9\X
    i did a pdf form with scribus, i embed 2 fonts : 3of9barcode and freemono bold fonts.
    (compatibility PDF 1.5 (acrobat 6) )
    My client update to Reader X and the problem is that the fonts are 'squares' and the barcode is text not barcode.
    When i do look at the properties in reader X, it founds the embedded fonts. There is no error when opening it.
    no console errors or Reader error.
    If i open the document with Pro X , there is no problem, the fonts are good. i try to save a copy, an optimized copy, or a copy with limited rights,
    but the result is the same, when i open the pdf with Reader X the fonts are bad.
    i tried ton install the fonts on Windows but it does not help...
    Do you have any clue ???

    I have exactly the same problem!!!
    I create and layout my forms in scribus and adjust them in Adobe 9 Pro. Setting the tab order and having the possibility to make fillable forms saveable are gorgeous. However, people who use ReaderX cannot work with these very forms anymore because there appears only squiggly squary rubbish in the fillable form fields instead of nice and clean Times Now Roman font. In Reader 9 everything worked fine. I cannot force everybody to go back to version 9, in order to be able to work wth the forms.
    It's so annoying, please help.

  • Does studio display CRT work with any new machine at all??

    My old G4 just died. I got a mini but can't figure out how to connect it to this 17" CRT. Is there any new machine compatible with this old CRT? Do I have to find another G4 to work with it or do I have to dump it?
    Please help

    Thanks hsurfer. The link you have provided gives a helpful insight. Those with the macbook pro are able to switch from their 9400 graphics card to the better 9600 graphics card, which resolves the issue, at least with the samsung monitor. We who have the macbook however do not have the option. The problem does seem to clearly emanate from the macbook graphic card, lets hope that a fix is still around the corner, the latest firmware update clearly did not resolve it.
    Im still looking for success stories, anyone who can say that their specific external 22'/24' monitor works fine with the new macbook?
    kind regards
    allan

  • Working with symbols more easily | Learn Illustrator CS5 | Adobe TV

    Explore ways to work with symbols in Illustrator CS5, such as how to specify and control registration points, work with smart guides, reset a symbol's instance, and work with layer structure.
    http://adobe.ly/AkBLjP

    One point Mordy did not make in this excellent video is the ability to "nest" symbols. If the "tag" was a separate symbol it could be updated without altering each label symbol.

  • Will the canon mg2100 work with an e-machines computer

    I have an Emachine computer and I was wanting to know if the canon inkjet photo all-in-one MG2100 printer will work with my computer.  Thank you.   Ben

    Hi Christmas!
    To have a better understanding of your issue, please let everyone know what operating system you are connecting your printer to. That way, community will be able to assist you with suggestions appropriate for your product.
    Thanks!

  • Created "submit" button not working with Reader

    I have created a submit button that will submit an email based off dropdown menu selection.  While it works great on my computer (Pro).  A user with Reader (9.0) can fill out everything until the (java created) submit button.  The user computer hangs...  Any ideas of what the issue could be?
    Thanks,
    Jo

    Thanks for the feedback, I figured it out.  Silly me, didn't have the form user-enabled.
    Jo

  • Add Attachment feature not working with Reader X

    Hello All,
    The script behind the "Add Attachment" button in the linked sample seems to conflict when this form is open with Reader X.  All other buttons seem to work fine. Moreover, it works seamlessly when opened in older versions of Reader and Acrobat Pro.  I have looked all over the internet to no avail.  Can anyone provide a solution?
    https://workspaces.acrobat.com/?w=CFWFyajThACIiYFq-m4JFg
    TIA,
    H.Arce

    Couldn't figure out a way to share the workspace.  I thought that by uploading the file into a shared workspace would make it a public document with a valid link.  Guess not!
    Anyhow, I've uploaded the sample to Box.  Here's a new link: https://www.box.com/s/p0mxx3l79iwjtmak1wv5
    Many thanks again.
    H.Arce

Maybe you are looking for

  • I just downloaded your update and nothing is working properly, and most pages are completely black. What to do?

    I got a popup for an update to Firefox, which I followed to the release notes. I read and downloaded the update. When I restarted Firefox, nothing is working correctly and most pages I try to open, including the Add-On manager displays completely bla

  • Intermittent problem with cross dissolve and chroma key

    It seems that in 1 out of 10 videos I produce in Final Cut Pro there is a problem with the cross dissolve effect and chroma key. What happens is that during the cross dissolve, clip A fades out with a green tint and clip B fades in with a green tint.

  • My photo album is not in order by date taken

    my photo album is not in order by date taken, how do I get it in order?

  • Strange output from permissions repair

    This not so much a problem but a question. When I did a routine permissions repair, I got the following message: Repairing permissions for "Startup HD" Warning: SUID file "usr/libexec/load_hdi" has been modified and will not be repaired. Warning: SUI

  • User Decision & Form

    With a requirement, it is required to display a lot of information in the 'User Decision' ( in the area of Task Description). This means, this description will have to be displayed to help the user know the information about the document which he wil