I used CreateML to train mlmodels in the past and it has been working perfectly fine, but here is my problem: I am using training and testing data with 11 labels. When adding the files, the CreateML starts. Once it gets to the evaluation stage, it stops with an error saying: "Expected directory at URL at "testing.csv"
What directory is missing? I tried creating 11 directories at this location named after the labels, but that doesn't help. There is just 1 post about this issue at the Apple developer forum (https://developer.apple.com/forums/thread/676500), but this solution is not working for me. I also can't do it using playground, as I will get an unknown internal error.
You can see this! Apple Developer Document
I hava the same Problem. I think like this, you should organize you data in folder
I'm using VS code for Salesforce development. I've created a Aura Component and getting this error (see screenshots) every time. Every time if something wrong with variable name and If I correct it, previous error stays at the same line.
Please help me to resolve this issue.
I have recently begun designing an app extension. I mention that because all of a sudden my Siri Setup View Controller within my main app has been throwing me a "Cannot Find type 'INUIAddVoiceShortcutViewControllerDelegate' in scope" error as well as "Cannot find type 'INUIAddVoiceShortcutViewController' in scope."
I have been trying to figure this one out for a while. I am unsure what to do or even where to begin.
Any ideas?
(Yes I have tried cleaning the build folder and deleting derived data)
Forgot IntentsUI import. Dumb mistake. Will leave it up just in case anyone else wondering...
I started working in an old application for a client (hence i cannot add that much code). The application have some forms. On the main form i select a value from a dropdown list this calls a form to load. When this happens i'getting an error:
Compile error: Sub or function not defined
I started debugging and put some breakpoints and the program stops at the very:
Private Sub Form_Load()
It's a complex application with many forms and .bas files so i cannot add that much code since is not my application but in general is someone have heard about this and can give me orientation on what should be my next move please.
If i delete or comment Form_Load the program goes on but crashes later on since this sub process important data.
Regards!
I guess sometimes we have to load the solution again.
I think this was a matter of a faulty solution. I contacted the client and they sent an updated solution.
Thanks everybody for your help.
I have an MS Access 2003 database that I'm using to develop a basic little inventory app. I have added some extraneous forms along the way and I wanted to get them out of the DB. I deleted most of them just fine but one of them appears to have left behind its VBA Object. All that's in the object is Option Compare Database. Now whenever I try to work with the database, I get the following error:
The form name 'Transaction1' is misspelled or refers to a form that doesn't exist.
If the invalid form name is a macro, ...
Truncated for typings sake.
Yes, I agree, the form doesn't exist. What confuses me so much is that all of the other forms, when I deleted them, also destroyed their VBA object as well. This one, no matter what, seems to like to stick around and I have no idea how to get rid of it.
How do I get rid of it?
Things I've tried:
Compact and Repair and the DB
Create a new form named what it's expecting, verify that it gets rid of the problem, and then delete that form.
You can try the /decompile switch
Make a backup of your mdb
Open your mdb (hold the SHIFT key down to stop any code from running) via a short
cut: msaccess.exe database.mdb /decompile
Open a module and compile your app
Save and close Access
Open again (SHIFT again) without decompile
Compact and repair database
close Access
I had similar problem. I found I had named the missing form in the STARTUP menu as the default form to open when starting Access. I opened Tools>Startup and deleted the missing forms name from the "Display/Form/Page" field of the Startup. My problem solved.
The problem I was having is that the form was named ~TMPCLP8151 and would not show up in Access no matter what I tried, but I could see it in VBA in the Project Explorer. Here's how I resolved the issue. I created a new form, and created an Event Procedure for Form_Open that contained this:
DoCmd.DeleteObject acForm, "~TMPCLP8151"
Then I just opened the form, and sure enough, the VB code deleted the form that I could not delete myself.
I had a same problem. I created a form with same name and deleted the form again. That fixed the peoblem. Try. BTW try to open the new form in design mode to make sure if the VBA module is assosiated with the new form.
I had to combine both solutions to achieve the goal.
First de- and recompile
next compact and repair
then create new form with the same name and delete it
Pay attention that the form has the status Hasmodule set to Yes
I had this problem. I renamed my default form from Form Login to frmLogin which suits my naming style, but the program was still looking for it on opening. I am using 2013 so I went to File » Options » CurrentDB and in the display dropdown select the new name. The old name remains in the list until you close and restart the application.