Code Monkey home page Code Monkey logo

Comments (16)

turkalpmd avatar turkalpmd commented on July 17, 2024 1

Hi @turkalpmd : There is a simple way to install auto-ts without dependencies 👍

pip install auto-ts --ignore-installed --no-deps

Then you can install FB prophet independently using the following command:

conda install -c conda-forge fbprophet

Hope this helps, AutoVimal

I will try this weekend

from auto_ts.

AutoViML avatar AutoViML commented on July 17, 2024

Hi @KarateKat95 👍
This is a very good idea. Can you please create the changes in your forked version and submit a pull request with all the necessary changes? You have to test it first that your changes work!

Thanks
AutoViML

from auto_ts.

KarateKat94 avatar KarateKat94 commented on July 17, 2024

I have completed that. Thanks!

from auto_ts.

turkalpmd avatar turkalpmd commented on July 17, 2024

But doesn't work yet. I opened new pull request.

from auto_ts.

 avatar commented on July 17, 2024

But doesn't work yet. I opened new pull request.

@turkalpmd See #82, where I already made this pull request a few months ago. It just needs to be merged by @AutoViML.

from auto_ts.

turkalpmd avatar turkalpmd commented on July 17, 2024

But doesn't work yet. I opened new pull request.

@turkalpmd See #82, where I already made this pull request a few months ago. It just needs to be merged by @AutoViML.

Yes, I want to trying this today but it didnt work properly, after that. To be honest, I created a new pull request without checking the issue section. Then I saw you did something similar. I can delete it of course, but maybe a new notification will go away to @AutoViML . It is very easy changing. Thank you.

from auto_ts.

AutoViML avatar AutoViML commented on July 17, 2024

Hi @KarateKat95 and @turkalpmd
Thank you so much for filing the pull requests. I am very concerned about changing from FBProphet to Prophet without testing it - can you guys please test it with a few datasets before I approve it? 👍

I am sure it will work fine but just want to be sure.
Thanks
AutoVimal

from auto_ts.

turkalpmd avatar turkalpmd commented on July 17, 2024

Hi @KarateKat95 and @turkalpmd Thank you so much for filing the pull requests. I am very concerned about changing from FBProphet to Prophet without testing it - can you guys please test it with a few datasets before I approve it? +1

I am sure it will work fine but just want to be sure. Thanks AutoVimal

I will testing this. But I didn't change any architecture, I changed just library name.

from auto_ts.

 avatar commented on July 17, 2024

Hi @KarateKat95 and @turkalpmd Thank you so much for filing the pull requests. I am very concerned about changing from FBProphet to Prophet without testing it - can you guys please test it with a few datasets before I approve it? +1
I am sure it will work fine but just want to be sure. Thanks AutoVimal

I will testing this. But I didn't change any architecture, I changed just library name.

Thanks @turkalpmd; I will run a few tests with some datasets on my end as well this weekend.

from auto_ts.

AutoViML avatar AutoViML commented on July 17, 2024

Hi @KarateKat94 @turkalpmd

Any updates? Is the upgrade and change from one version to another smooth? Can you please update the code everywhere there is an import statement of FB prophet to Prophet?

I'd like you to test it on a few datasets after installing and importing auto-ts with the new version of prophet in your computers.

You can use pypi-test.org by uploading and testing your new versions of auto-ts. Hope that helps,

Thank you in advance 👍
AutoVimal

from auto_ts.

turkalpmd avatar turkalpmd commented on July 17, 2024

I was on-call this week. I can be doing some updates tomorrow. I don't know if I haven't tested the codes on GitHub before, but I'll learn. I'll fix all other import commands today. Thank you for your patience.
Kind regards.

from auto_ts.

turkalpmd avatar turkalpmd commented on July 17, 2024

Hi @KarateKat94 @turkalpmd

Any updates? Is the upgrade and change from one version to another smooth? Can you please update the code everywhere there is an import statement of FB prophet to Prophet?

I'd like you to test it on a few datasets after installing and importing auto-ts with the new version of prophet in your computers.

You can use pypi-test.org by uploading and testing your new versions of auto-ts. Hope that helps,

Thank you in advance +1 AutoVimal

$ pip install git+git://github.com/AutoViML/Auto_TS

Collecting git+git://github.com/AutoViML/Auto_TS
Cloning git://github.com/AutoViML/Auto_TS to /tmp/pip-req-build-0xdvyn41
Running command git clone --filter=blob:none --quiet git://github.com/AutoViML/Auto_TS /tmp/pip-req-build-0xdvyn41
fatal: unable to connect to github.com:
github.com[0: 140.82.121.4]: errno=Connection timed out

error: subprocess-exited-with-error

× git clone --filter=blob:none --quiet git://github.com/AutoViML/Auto_TS /tmp/pip-req-build-0xdvyn41 did not run successfully.
│ exit code: 128
╰─> See above for output.

note: This error originates from a subprocess, and is likely not a problem with pip.
error: subprocess-exited-with-error

× git clone --filter=blob:none --quiet git://github.com/AutoViML/Auto_TS /tmp/pip-req-build-0xdvyn41 did not run successfully.
│ exit code: 128
╰─> See above for output.

note: This error originates from a subprocess, and is likely not a problem with pip.

fbprophet contain just test/test_auto_ts.py line 18 and auto_ts/build_prophet.py line 19-22 32 and 545

this changing is very simple. unfortunately Git command and pip command doesnt work.

from auto_ts.

AutoViML avatar AutoViML commented on July 17, 2024

Hi @turkalpmd :
There is a simple way to install auto-ts without dependencies 👍

pip install auto-ts --ignore-installed --no-deps

Then you can install FB prophet independently using the following command:

conda install -c conda-forge fbprophet

Hope this helps,
AutoVimal

from auto_ts.

AutoViML avatar AutoViML commented on July 17, 2024

Hi @turkalpmd @KarateKat94
I have updated Auto_TS with the latest version of prophet 1.0 - please double check if this works and let me know
Thank you for all you pull requests and commitment!
AutoVimal

from auto_ts.

turkalpmd avatar turkalpmd commented on July 17, 2024

I will try in next 24 hour :D. Thank you.

from auto_ts.

turkalpmd avatar turkalpmd commented on July 17, 2024

Yes It is works perfect. But I found another bug from univariable notebook, and you must change pypi release, pypi installed old .68 version;

---------------------------------------------------------------------------
UnboundLocalError                         Traceback (most recent call last)
/tmp/ipykernel_7312/3941123415.py in <module>
      4                 model_type=['best'],dask_xgboost_flag=False,
      5                 verbose=2)
----> 6 model.fit(traindata, ts_column,target)

~/.local/lib/python3.9/site-packages/auto_ts/__init__.py in fit(self, traindata, ts_column, target, sep, cv)
    573 
    574             self.ml_dict[name]['model'] = model
--> 575             self.ml_dict[name]['forecast'] = forecast_df_folds
    576             self.ml_dict[name][self.score_type] = score_val
    577             self.ml_dict[name]['model_build'] = model_build

UnboundLocalError: local variable 'forecast_df_folds' referenced before assignment

from auto_ts.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.