siddhm11 commited on
Commit
d58f586
·
verified ·
1 Parent(s): 247d191

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
  # ResearchIT Phase 6 — LightGBM Reranker
2
 
3
  > **Status:** ✅ **Production model trained and evaluated on real citation data.**
@@ -389,3 +393,23 @@ tqdm>=4.65
389
  ## 📄 License
390
 
391
  This model and pipeline are part of the ResearchIT project by [@siddhm11](https://huggingface.co/siddhm11).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - ml-intern
4
+ ---
5
  # ResearchIT Phase 6 — LightGBM Reranker
6
 
7
  > **Status:** ✅ **Production model trained and evaluated on real citation data.**
 
393
  ## 📄 License
394
 
395
  This model and pipeline are part of the ResearchIT project by [@siddhm11](https://huggingface.co/siddhm11).
396
+
397
+ <!-- ml-intern-provenance -->
398
+ ## Generated by ML Intern
399
+
400
+ 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.
401
+
402
+ - Try ML Intern: https://smolagents-ml-intern.hf.space
403
+ - Source code: https://github.com/huggingface/ml-intern
404
+
405
+ ## Usage
406
+
407
+ ```python
408
+ from transformers import AutoModelForCausalLM, AutoTokenizer
409
+
410
+ model_id = 'siddhm11/researchit-reranker-phase6'
411
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
412
+ model = AutoModelForCausalLM.from_pretrained(model_id)
413
+ ```
414
+
415
+ For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.