Mengqinxue commited on
Commit
e21a093
·
verified ·
1 Parent(s): 2578657

Update ML Intern artifact metadata

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md CHANGED
@@ -1,3 +1,7 @@
 
 
 
 
1
  # Symbolic Regression for Wind Speed Forecasting (EQL)
2
 
3
  This repository contains a **TensorFlow 2.x** reproduction of the paper:
@@ -57,3 +61,23 @@ The script produces:
57
  year={2021}
58
  }
59
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - ml-intern
4
+ ---
5
  # Symbolic Regression for Wind Speed Forecasting (EQL)
6
 
7
  This repository contains a **TensorFlow 2.x** reproduction of the paper:
 
61
  year={2021}
62
  }
63
  ```
64
+
65
+ <!-- ml-intern-provenance -->
66
+ ## Generated by ML Intern
67
+
68
+ This model repository was generated by [ML Intern](https://github.com/huggingface/ml-intern), an agent for machine learning research and development on the Hugging Face Hub.
69
+
70
+ - Try ML Intern: https://smolagents-ml-intern.hf.space
71
+ - Source code: https://github.com/huggingface/ml-intern
72
+
73
+ ## Usage
74
+
75
+ ```python
76
+ from transformers import AutoModelForCausalLM, AutoTokenizer
77
+
78
+ model_id = 'Mengqinxue/eql-wind-speed-forecasting'
79
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
80
+ model = AutoModelForCausalLM.from_pretrained(model_id)
81
+ ```
82
+
83
+ For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.