もう少し複雑なnltkパッケージの方がより一般的に答えが出るかどうかをテストしますが、ストップワードは本当に単なるリスト(あるいはリストのセットです)あなたはカットしてスクリプトに貼り付けることができ、複数の言語を)必要がある場合:
>>> from nltk.corpus import stopwords
>>> stopwordlist = stopwords.words('english')
>>> print(stopwordlist)
['i', 'me', 'my', 'myself', 'we', 'our', 'ours', 'ourselves', 'you', 'your', 'yours', 'yourself', 'yourselves', 'he', 'him', 'his', 'himself', 'she', 'her', 'hers', 'herself', 'it', 'its', 'itself', 'they', 'them', 'their', 'theirs', 'themselves', 'what', 'which', 'who', 'whom', 'this', 'that', 'these', 'those', 'am', 'is', 'are', 'was', 'were', 'be', 'been', 'being', 'have', 'has', 'had', 'having', 'do', 'does', 'did', 'doing', 'a', 'an', 'the', 'and', 'but', 'if', 'or', 'because', 'as', 'until', 'while', 'of', 'at', 'by', 'for', 'with', 'about', 'against', 'between', 'into', 'through', 'during', 'before', 'after', 'above', 'below', 'to', 'from', 'up', 'down', 'in', 'out', 'on', 'off', 'over', 'under', 'again', 'further', 'then', 'once', 'here', 'there', 'when', 'where', 'why', 'how', 'all', 'any', 'both', 'each', 'few', 'more', 'most', 'other', 'some', 'such', 'no', 'nor', 'not', 'only', 'own', 'same', 'so', 'than', 'too', 'very', 's', 't', 'can', 'will', 'just', 'don', 'should', 'now']
だから私はちょうどちょうど直接何もインポートせずに私のスクリプトでそれを定義した:
stopwordlist = ['i', 'me', 'my', 'myself', 'we', 'our', 'ours', 'ourselves', 'you', 'your', 'yours', 'yourself', 'yourselves', 'he', 'him', 'his', 'himself', 'she', 'her', 'hers', 'herself', 'it', 'its', 'itself', 'they', 'them', 'their', 'theirs', 'themselves', 'what', 'which', 'who', 'whom', 'this', 'that', 'these', 'those', 'am', 'is', 'are', 'was', 'were', 'be', 'been', 'being', 'have', 'has', 'had', 'having', 'do', 'does', 'did', 'doing', 'a', 'an', 'the', 'and', 'but', 'if', 'or', 'because', 'as', 'until', 'while', 'of', 'at', 'by', 'for', 'with', 'about', 'against', 'between', 'into', 'through', 'during', 'before', 'after', 'above', 'below', 'to', 'from', 'up', 'down', 'in', 'out', 'on', 'off', 'over', 'under', 'again', 'further', 'then', 'once', 'here', 'there', 'when', 'where', 'why', 'how', 'all', 'any', 'both', 'each', 'few', 'more', 'most', 'other', 'some', 'such', 'no', 'nor', 'not', 'only', 'own', 'same', 'so', 'than', 'too', 'very', 's', 't', 'can', 'will', 'just', 'don', 'should', 'now']
やあ、どうもありがとうございました、これは役に立ちます。幸いにまに弾力のあるbeanstalkは、自動的にS3バケットと、各インスタンスがそれに書き込むことを可能にするIAMロールとインスタンスプロファイル(ログ、アプリケーションのバージョンなど)を作成します。だから、私はあなたの最初の指示に従って、私のS3バケットに自分の 'nltk_data'を持っています。しかし、awscliをインストールし、s3からインスタンスに同期を呼び出す.ebextensionsで自分のconfigにどの設定パラメータを追加するのか分かりません。あなたは正しい方向に私を向けることができますか?私はそれが 'container_commands'キーの中に入ると思いますか?再度、感謝します! – ministry
私はこの質問をここに掲載しました:http://stackoverflow.com/questions/40560053/how-to-copy-folder-from-s3-to-elastic-beanstalk-instance-on-instance-creation – ministry