-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Trying to install #2161
Comments
Turi Create doesn't yet support Python 3.7. That issue is being tracked in #788. Based on the paths in your stack trace, it looks like you've figured out how to create a Python 3.6 environment using anaconda. I'm not sure what's happening with your second issue. Please share the entire stack trace. From just the part you've shared I can't tell what is happening. |
there's my error code |
@MatthewGCampbell It looks like it's failing to parse some weird characters in your CSV file: |
@znation did you recieve my email? and I got it to work on my MacBook Air with the same file just not on my MacBook Pro ill send you a Excel screenshot |
Hi @MatthewGCampbell From the screenshot, the CSV file itself looks fine. Could you share the CSV file with us (either in this thread, or over email) and we can help diagnose the issue? |
Sorry I’m fixing one issue at a time right after I took the screenshot I saved it through excel and now it seems to work fine! But my next problem it that I created the model but can’t seem to find it on my computer, yeah I’d be happy to email it’s more simple than using github my email is: [email protected] |
Is their like a default file name or place that it could be located |
@MatthewGCampbell Once you have a model in Python, you would assign it to a variable like: model = tc.classifier.create(...) Then, once it's in a model variable, you can save it to disk or export it for use with CoreML. You must explicitly determine the path in both cases. If you don't call model.save('path/to/turicreate_model') # saves in Turi Create model format
model.export_coreml('path/to/model.mlmodel') # exports in Core ML model format Hope that helps! |
Thanks I don’t remember what code I ran and don’t have access to my laptop cause I’m n my car but I ran something like model = tc.classifier.create(...) but I replaced the ... with data so after I run that command it gave me this https://share.icloud.com/photos/0fdoKoY8K3armb5jsRwqhK66A and after I run that command would I have to run the model.save command and the model export one too? |
Which email is best for you could you send me an email from that address? since I usually don’t check github and the easiest way for me is email and I respond quicker to my email. |
@MatthewGCampbell It's better to keep issues on GitHub, as that way the rest of the community can keep aware of what issues we're having, weigh in on possible fixes and workarounds, and provide more information when they are also able to reproduce the issue. If you're having trouble getting notifications from GitHub over email, see this article on how to configure notifications. I think the answer to your latest question is, yes, you would need to call |
So then could I run both? Makes since to keep it in github tho. |
@MatthewGCampbell Sure, you can run both. They will produce different file formats. The |
im a high school student and I'm going to a swift developing summer camp and the directors were asking if next year you would mind being a guest speaker? that's why I needed your email if you can't then no problem |
When you seen |
bet = be |
Please study the Introduction to SFrames and Object Detection section of the user guide. Since the original issues have been resolved I'm going to close this issue. If you have additional questions after studying our user guide, open a new issue. |
Thanks so much for your help |
Which way would you recommend installing turicreate preferably the easiest way. Tried using Jupiter Notebook like in the WWDC 2018 video, but I was having trouble importing turicreate into the environment. It always said that my python is too new and that I need v.3.6 bu ti have 3.7. does anyone know how to downgrade python using anaconda?
The text was updated successfully, but these errors were encountered: