Al Johri
Al Johri
@danhper they don't break anaconda, they break the rest of the system. for example, in that list of shims, you'll notice `clear`. When the shim exists, it returns something like:...
To replicate, run: `asdf install python anaconda3-2018.12`. I keep this installed side by side by regular python as a place to quickly test things without creating a virtualenv. To activate...
And to answer your question to where they come from: ``` $ asdf which clear /Users/johria/.asdf/installs/python/anaconda3-2018.12/bin/clear ``` It's a binary that anaconda packages. It works fine if anaconda is your...
@danhper I adopted your advice and things are a bit smoother. >I suppose anaconda expects you to be using the binaries it provides. How is this handled if those are...
Thanks @EWouters! If you the bandwidth you can make a PR to updated the vendored `blib2to3` as described in the conversation here: https://github.com/psf/black/pull/1224 I haven't gotten the chance.
@VasuBhog As a work around, use the black CLI at least once locally or run: `python -c "import logging; logging.basicConfig(level='INFO'); import black"` once in your python environment (see https://github.com/psf/black/issues/1223 for...
+1 for this PR
@Oscar860601 The original data is from here: https://github.com/danqi/rc-cnn-dailymail - CNN: http://cs.stanford.edu/~danqi/data/cnn.tar.gz (546M) - Daily Mail: http://cs.stanford.edu/~danqi/data/dailymail.tar.gz (1.4G) The code to download them is here: https://github.com/deepmind/rc-data
The same dataset for QA was repurposed for summarization. If you look at generate_questions.py it should get you most of the way there. https://github.com/deepmind/rc-data/blob/d305ea5de230e519a4d358232819c9291e286d66/generate_questions.py#L144-L156 https://github.com/deepmind/rc-data/blob/d305ea5de230e519a4d358232819c9291e286d66/generate_questions.py#L199-L210 https://github.com/deepmind/rc-data/blob/d305ea5de230e519a4d358232819c9291e286d66/generate_questions.py#L250-L259 https://github.com/deepmind/rc-data/blob/d305ea5de230e519a4d358232819c9291e286d66/generate_questions.py#L330-L338 https://github.com/deepmind/rc-data/blob/d305ea5de230e519a4d358232819c9291e286d66/generate_questions.py#L469-L478