Path: blob/master/mitremap-notebook/model.sh
3250 views
#!/bin/bash1mkdir distilgpt2-5122cd distilgpt2-5123echo Downloading labels for model distilgpt2-512...4curl -L https://github.com/microsoft/msticpy-data/blob/mitre-inference/mitre-inference-models/distilgpt2-512/labels.json?raw=true -o "labels"5echo Downloaded labels for model distilgpt2-512.6echo Downloading tokenizer for model distilgpt2-512...7curl -L https://github.com/microsoft/msticpy-data/blob/mitre-inference/mitre-inference-models/distilgpt2-512/tokenizer?raw=true -o "tokenizer"8echo Downloaded tokenizer for model distilgpt2-512.9echo Downloading model dicts for model distilgpt2-512...10curl -L https://github.com/microsoft/msticpy-data/blob/mitre-inference/mitre-inference-models/distilgpt2-512/model_state_dicts?raw=true -o "model_state_dicts"11echo Downloaded model dicts for model distilgpt2-512.121314