-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- text features dict - feat extraction - bash update (spacy models)
- Loading branch information
1 parent
9e3db92
commit d41668d
Showing
3 changed files
with
49 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# kimchi.py | ||
# For converting Python 2 pickles to Python 3 | ||
|
||
import os | ||
import dill | ||
import pickle | ||
import argparse | ||
|
||
|
||
def convert(old_pkl): | ||
""" | ||
Convert a Python 2 pickle to Python 3 | ||
""" | ||
# Make a name for the new pickle | ||
new_pkl = os.path.splitext(os.path.basename(old_pkl))[0]+"_p3.pkl" | ||
|
||
# Convert Python 2 "ObjectType" to Python 3 object | ||
dill._dill._reverse_typemap["ObjectType"] = object | ||
|
||
# Open the pickle using latin1 encoding | ||
with open(old_pkl, "rb") as f: | ||
loaded = pickle.load(f, encoding="latin1") | ||
|
||
# Re-save as Python 3 pickle | ||
with open(new_pkl, "wb") as outfile: | ||
pickle.dump(loaded, outfile) | ||
|
||
|
||
if __name__ == "__main__": | ||
#parser = argparse.ArgumentParser( | ||
# description="Convert a Python 2 pickle to Python 3" | ||
#) | ||
|
||
#parser.add_argument("infile", help="Python 2 pickle filename") | ||
|
||
#args = parser.parse_args() | ||
|
||
#convert(args.infile) | ||
convert('/Volumes/dne5ssd/horus/resources/models/tfidf-ml/text_classification_LinearSVC.pkl') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters