avisena commited on
Commit
b2a237c
·
verified ·
1 Parent(s): dc1360a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +96 -3
README.md CHANGED
@@ -1,3 +1,96 @@
1
- ---
2
- license: unknown
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: unknown
3
+ tags:
4
+ - summarization
5
+ - PyTorch
6
+ - text2text
7
+ model-index:
8
+ - name: bart-base-finetuned-poems
9
+ results:
10
+ - task:
11
+ type: summarization
12
+ name: Summarization
13
+ metrics:
14
+ - name: ROUGE-1
15
+ type: rouge
16
+ value: 0.639237038471346
17
+ verified: true
18
+ - name: ROUGE-2
19
+ type: rouge
20
+ value: 0.45630749696717915
21
+ verified: true
22
+ - name: ROUGE-L
23
+ type: rouge
24
+ value: 0.5747263252831926
25
+ verified: true
26
+ - name: ROUGE-LSUM
27
+ type: rouge
28
+ value: 0.5747263252831925
29
+ verified: true
30
+ metrics:
31
+ - rouge
32
+ base_model: google-t5/t5-base
33
+ pipeline_tag: summarization
34
+ ---
35
+
36
+ # bart-base-job-info-summarizer
37
+
38
+ This model is a fine-tuned version of [google-t5/t5-base](https://huggingface.co/google-t5/t5-base) on the private daily log of Bangkit bootcamp in Indonesia.
39
+ - Rouge1: 0.639237038471346
40
+ - Rouge2: 0.45630749696717915
41
+ - Rougel: 0.5747263252831926
42
+ - Rougelsum: 0.5747263252831925
43
+
44
+ ## Intended use and limitations:
45
+ This model can be used to summarize daily diary log into weekly summarization
46
+
47
+ ## How to use:
48
+ ```python
49
+ !pip install transformers
50
+
51
+ from transformers import T5Tokenizer, T5ForConditionalGeneration
52
+
53
+ # Load the model and tokenizer
54
+ model_name = "outputs/best_model"
55
+ tokenizer = T5Tokenizer.from_pretrained(model_name)
56
+ model = T5ForConditionalGeneration.from_pretrained(model_name)
57
+
58
+ # Set up model arguments
59
+ model_args = {
60
+ "max_length": 512, # Increase max_length to handle longer outputs
61
+ "length_penalty": -9.7,
62
+ "num_beams":5, # Use beam search for better results
63
+ "early_stopping": True,
64
+ "temperature": 1.7
65
+ }
66
+
67
+ # Tokenize input text
68
+ input_text = """summarize:
69
+ - I organized a large-scale professional conference and managed all logistical details, including venue selection, scheduling, and coordination with speakers. I ensured all necessary permits and insurance were in place to cover the event.
70
+ - I conducted a detailed review of the conference objectives to ensure they aligned with the industry’s standards and goals. This involved working with the conference committee to define the agenda, target audience, and key outcomes.
71
+ - I coordinated with a diverse group of speakers and panelists, reviewing their presentations and ensuring they were aligned with the conference themes. I also worked with suppliers to arrange audiovisual equipment, catering, and other event essentials.
72
+ - The conference was structured into three main segments, starting with the most intensive one, which required meticulous planning due to its complexity and the need for precise timing and coordination.
73
+ - In our final planning session, we reviewed the conference layout, assigned roles to team members, and established backup plans for potential issues such as speaker cancellations or technical failures.
74
+ - We developed extensive contingency plans, including alternative session formats and additional technical support, to address any potential disruptions.
75
+ - To ensure the conference ran smoothly, I organized several rehearsals and pre-event briefings to test all aspects of the event and make necessary adjustments. We also coordinated with volunteers to ensure everyone was prepared for their roles.
76
+ - I managed the marketing and promotion of the conference, including designing promotional materials, managing social media outreach, and engaging with industry publications to boost attendance and interest.
77
+ - On the day of the conference, I oversaw all activities, ensured that the schedule was adhered to, and addressed any issues that arose promptly. I worked closely with speakers, staff, and attendees to ensure a successful and productive event.
78
+ - The setup for the first segment was particularly challenging due to its complexity and the need for precise execution. Despite facing several hurdles, I implemented effective solutions and worked closely with the team to ensure a successful start to the conference.
79
+ - After the conference, I conducted a thorough review to evaluate its success and gather feedback from attendees, speakers, and staff. This feedback provided valuable insights for future conferences and highlighted areas for improvement.
80
+ """
81
+ input_ids = tokenizer.encode(input_text, return_tensors="pt", max_length=250, truncation=True)
82
+
83
+ # Generate summary
84
+ summary_ids = model.generate(
85
+ input_ids,
86
+ max_length=model_args["max_length"],
87
+ length_penalty=model_args["length_penalty"],
88
+ num_beams=model_args["num_beams"],
89
+ early_stopping=model_args["early_stopping"],
90
+ temperature=model_args["temperature"]
91
+ )
92
+
93
+ # Decode summary
94
+ summary = tokenizer.decode(summary_ids[0], skip_special_tokens=True, max_length=512)
95
+ print(summary)
96
+ ```