winglian commited on
Commit
543d6ea
1 Parent(s): 93d077c

upload the epoch two model

Browse files
README.md CHANGED
@@ -59,34 +59,14 @@ Manticore was fine-tuned from the base model LlaMa 13B, please refer to its mode
59
  ## Examples
60
 
61
  ````
62
- USER: write Python code that returns the first n numbers of the Fibonacci sequence using memoization.
63
-
64
- ASSISTANT:
65
- Sure! Here’s an example implementation of the Fibonacci sequence using memoization in Python:
66
- def fibonacci(n):
67
- """Return the first n numbers of the Fibonacci sequence."""
68
- cache = {} # Memoize the previous results for faster lookups
69
- def memoized_fibonacci(*args, **kwargs):
70
- if args[0] in cache:
71
- return cache[args[0]]
72
- else:
73
- result = fibonacci(args[0])
74
- cache[args[0]] = result
75
- return result
76
- def fibonacci_recursive(n):
77
- """Recursive implementation of the Fibonacci sequence."""
78
- if n <= 1:
79
- return n
80
- else:
81
- return fibonacci_recursive(n-1) + fibonacci_recursive(n-2)
82
- return memoized_fibonacci(*[n] * len(cache))
83
-
84
- In this implementation, we define a function memoized_fibonacci that takes the same arguments as fibonacci, but also receives a cache dictionary. If an argument is found in the cache dictionary, it returns the corresponding value from the cache. Otherwise, it computes the value of fibonacci(n) and stores it
85
  ````
86
 
87
  ```
88
  ### Instruction: Finish the joke, a mechanic and a car salesman walk into a bar...
89
 
90
- ### Assistant: The mechanic turns to the salesman and says, "I don't know what you drive but I bet it never breaks down." The salesman responds, "That's because my customers buy cars like yours!"
91
  ```
92
 
 
59
  ## Examples
60
 
61
  ````
62
+ ### Instruction: write Python code that returns the first n numbers of the Fibonacci sequence using memoization.
63
+
64
+ ### Assistant:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65
  ````
66
 
67
  ```
68
  ### Instruction: Finish the joke, a mechanic and a car salesman walk into a bar...
69
 
70
+ ### Assistant:
71
  ```
72
 
pytorch_model-00001-of-00003.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c8a63771249ad268871f5674f5d1afb8701c7ddf2d144dede7b329b4c9226551
3
  size 9948733550
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c3472418146c1efcac601ec536a2b2d376ac979cc8a331dd46d8c601ad3167a5
3
  size 9948733550
pytorch_model-00002-of-00003.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:10ca89e9c8e31dff1ff53024d3715af60bef81f34bf0e51f2f82c6e53097f1e9
3
  size 9904170208
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc4af8df9cbeb372389958ac0d618450afd4d726824c351b04f0fa455b539f4d
3
  size 9904170208
pytorch_model-00003-of-00003.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:112fd25f20c2ba9a586a5ebf17a39ae72e59cb06581bd1aa3070e16a088b1318
3
  size 6178986889
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e596ef1034c74ac96ea9be6cbcd159b801c8da97bf6358fa5c65c8d70286579
3
  size 6178986889